From 7b915d65f7b65a22b21c346ebc3eb14202627dbb Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 12 May 2018 20:10:16 +0200 Subject: [PATCH 01/31] Implement https://github.com/fsharp/FAKE/issues/1926 --- help/markdown/fake-commandline.md | 6 +++ src/app/Fake.Runtime/FakeRuntime.fs | 59 +++++++++++++++++------------ src/app/Fake.Runtime/Runners.fs | 1 + src/app/Fake.netcore/Cli.fs | 6 +++ src/app/Fake.netcore/Program.fs | 5 ++- 5 files changed, 51 insertions(+), 26 deletions(-) diff --git a/help/markdown/fake-commandline.md b/help/markdown/fake-commandline.md index 075d4bcc3eb..7f17241d1c1 100644 --- a/help/markdown/fake-commandline.md +++ b/help/markdown/fake-commandline.md @@ -21,11 +21,17 @@ Fake Options [fake_opts]: Fake Run Options [run_opts]: -d, --debug Debug the script. -n, --nocache Disable fake cache for this run. + -p, --partial-restore + Only restore the required group instead of a full restore, + can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. --fsiargs [*] Arguments passed to the f# interactive. Fake Build Options [build_opts]: -d, --debug Debug the script. -n, --nocache Disable fake cache for this run. + -p, --partial-restore + Only restore the required group instead of a full restore, + can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. --fsiargs [*] Arguments passed to the f# interactive. -f, --script The script to execute (defaults to `build.fsx`). diff --git a/src/app/Fake.Runtime/FakeRuntime.fs b/src/app/Fake.Runtime/FakeRuntime.fs index 15262573de1..87c21369883 100644 --- a/src/app/Fake.Runtime/FakeRuntime.fs +++ b/src/app/Fake.Runtime/FakeRuntime.fs @@ -3,6 +3,7 @@ open System open System.IO open Fake.Runtime +open Fake.Runtime.Runners open Paket type FakeSection = @@ -134,8 +135,10 @@ type AssemblyData = { IsReferenceAssembly : bool Info : Runners.AssemblyInfo } -let paketCachingProvider (script:string) (logLevel:Trace.VerboseLevel) cacheDir (paketApi:Paket.Dependencies) (paketDependenciesFile:Lazy) group = +let paketCachingProvider (config:FakeConfig) cacheDir (paketApi:Paket.Dependencies) (paketDependenciesFile:Lazy) group = use __ = Fake.Profile.startCategory Fake.Profile.Category.Paket + let logLevel = config.VerboseLevel + let script = config.ScriptFilePath let groupStr = match group with Some g -> g | None -> "Main" let groupName = Paket.Domain.GroupName (groupStr) #if DOTNETCORE @@ -359,8 +362,10 @@ let paketCachingProvider (script:string) (logLevel:Trace.VerboseLevel) cacheDir if needLocalLock then File.Copy(lockFilePath.FullName, localLock, true) // Restore - paketApi.Restore((*false, group, [], false, true*)) - |> ignore + if config.RestoreOnlyGroup then + paketApi.Restore(false,group,[],false,false,false,None) + else + paketApi.Restore() // https://github.com/fsharp/FAKE/issues/1908 writeIntellisenseFile cacheDir // write intellisense.fsx immediately @@ -463,10 +468,10 @@ let paketCachingProvider (script:string) (logLevel:Trace.VerboseLevel) cacheDir if writeIntellisenseTask.IsValueCreated then writeIntellisenseTask.Value.Wait() } -let restoreDependencies script logLevel cacheDir section = +let restoreDependencies config cacheDir section = match section with | PaketDependencies (paketDependencies, paketDependenciesFile, group) -> - paketCachingProvider script logLevel cacheDir paketDependencies paketDependenciesFile group + paketCachingProvider config cacheDir paketDependencies paketDependenciesFile group let tryFindGroupFromDepsFile scriptDir = let depsFile = Path.Combine(scriptDir, "paket.dependencies") @@ -498,8 +503,9 @@ let tryFindGroupFromDepsFile scriptDir = | _ -> None else None -let prepareFakeScript (tokenized:Lazy) logLevel script = - // read dependencies from the top +let prepareFakeScript (config:FakeConfig) = + // read dependencies from the top + let script = config.ScriptFilePath let scriptDir = Path.GetDirectoryName (script) let cacheDir = Path.Combine(scriptDir, ".fake", Path.GetFileName(script)) Directory.CreateDirectory (cacheDir) |> ignore @@ -508,7 +514,7 @@ let prepareFakeScript (tokenized:Lazy let scriptSectionCacheFile = Path.Combine(cacheDir, "fake-section.txt") let inline getSectionUncached () = use __ = Fake.Profile.startCategory Fake.Profile.Category.Analyzing - let newSection = tryReadPaketDependenciesFromScript tokenized.Value cacheDir script + let newSection = tryReadPaketDependenciesFromScript config.ScriptTokens.Value cacheDir script match newSection with | Some s -> Some s | None -> @@ -551,7 +557,7 @@ let prepareFakeScript (tokenized:Lazy match section with | Some section -> - restoreDependencies script logLevel cacheDir section + restoreDependencies config cacheDir section | None -> let defaultPaketCode = """ source https://api.nuget.org/v3/index.json @@ -567,10 +573,10 @@ If you know what you are doing you can silence this warning by setting the envir { Header = "paket-inline" Section = defaultPaketCode } |> writeFixedPaketDependencies cacheDir - restoreDependencies script logLevel cacheDir section + restoreDependencies config cacheDir section -let prepareAndRunScriptRedirect (logLevel:Trace.VerboseLevel) (fsiOptions:string list) scriptPath scriptArgs onErrMsg onOutMsg useCache = +let createConfig (logLevel:Trace.VerboseLevel) (fsiOptions:string list) scriptPath scriptArgs onErrMsg onOutMsg useCache restoreOnlyGroup = if logLevel.PrintVerbose then Trace.log (sprintf "prepareAndRunScriptRedirect(Script: %s, fsiOptions: %A)" scriptPath (System.String.Join(" ", fsiOptions))) let fsiOptionsObj = Yaaf.FSharp.Scripting.FsiOptions.ofArgs fsiOptions let newFsiOptions = @@ -584,19 +590,22 @@ let prepareAndRunScriptRedirect (logLevel:Trace.VerboseLevel) (fsiOptions:string use out = Yaaf.FSharp.Scripting.ScriptHost.CreateForwardWriter onOutMsg use err = Yaaf.FSharp.Scripting.ScriptHost.CreateForwardWriter onErrMsg let tokenized = lazy (File.ReadLines scriptPath |> FSharpParser.getTokenized scriptPath ("FAKE_DEPENDENCIES" :: newFsiOptions.Defines)) - let config = - { Runners.FakeConfig.VerboseLevel = logLevel - Runners.FakeConfig.ScriptFilePath = scriptPath - Runners.FakeConfig.ScriptTokens = tokenized - Runners.FakeConfig.CompileOptions = - { FsiOptions = newFsiOptions; RuntimeDependencies = [] } - Runners.FakeConfig.UseCache = useCache - Runners.FakeConfig.Out = out - Runners.FakeConfig.Err = err - Runners.FakeConfig.ScriptArgs = scriptArgs } - let provider = prepareFakeScript tokenized logLevel scriptPath - CoreCache.runScriptWithCacheProvider config provider -let inline prepareAndRunScript logLevel fsiOptions scriptPath scriptArgs useCache = - prepareAndRunScriptRedirect logLevel fsiOptions scriptPath scriptArgs (printf "%s") (printf "%s") useCache + { Runners.FakeConfig.VerboseLevel = logLevel + Runners.FakeConfig.ScriptFilePath = scriptPath + Runners.FakeConfig.ScriptTokens = tokenized + Runners.FakeConfig.CompileOptions = + { FsiOptions = newFsiOptions; RuntimeDependencies = [] } + Runners.FakeConfig.UseCache = useCache + Runners.FakeConfig.RestoreOnlyGroup = restoreOnlyGroup + Runners.FakeConfig.Out = out + Runners.FakeConfig.Err = err + Runners.FakeConfig.ScriptArgs = scriptArgs } + +let createConfigSimple (logLevel:Trace.VerboseLevel) (fsiOptions:string list) scriptPath scriptArgs useCache restoreOnlyGroup = + createConfig logLevel fsiOptions scriptPath scriptArgs (printf "%s") (printf "%s") useCache restoreOnlyGroup + +let prepareAndRunScript (config:FakeConfig) = + let provider = prepareFakeScript config + CoreCache.runScriptWithCacheProvider config provider diff --git a/src/app/Fake.Runtime/Runners.fs b/src/app/Fake.Runtime/Runners.fs index 519850e0186..5da9934c278 100644 --- a/src/app/Fake.Runtime/Runners.fs +++ b/src/app/Fake.Runtime/Runners.fs @@ -43,6 +43,7 @@ type FakeConfig = ScriptTokens : Lazy CompileOptions : CompileOptions UseCache : bool + RestoreOnlyGroup : bool Out: TextWriter Err: TextWriter ScriptArgs: string list } diff --git a/src/app/Fake.netcore/Cli.fs b/src/app/Fake.netcore/Cli.fs index b5716ececea..bbcbeaa4ee9 100644 --- a/src/app/Fake.netcore/Cli.fs +++ b/src/app/Fake.netcore/Cli.fs @@ -23,11 +23,17 @@ Fake Options [fake_opts]: Fake Run Options [run_opts]: -d, --debug Debug the script. -n, --nocache Disable fake cache for this run. + -p, --partial-restore + Only restore the required group instead of a full restore, + can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. --fsiargs [*] Arguments passed to the f# interactive. Fake Build Options [build_opts]: -d, --debug Debug the script. -n, --nocache Disable fake cache for this run. + -p, --partial-restore + Only restore the required group instead of a full restore, + can be set globally by setting the environment variable FAKE_PARTIAL_RESTORE to true. --fsiargs [*] Arguments passed to the f# interactive. -f, --script The script to execute (defaults to `build.fsx`). diff --git a/src/app/Fake.netcore/Program.fs b/src/app/Fake.netcore/Program.fs index 1e5c19c5dfc..e1c01004a8b 100644 --- a/src/app/Fake.netcore/Program.fs +++ b/src/app/Fake.netcore/Program.fs @@ -74,6 +74,7 @@ type RunArguments = { Debug : bool //SingleTarget : bool NoCache : bool + RestoreOnlyGroup : bool VerboseLevel : VerboseLevel IsBuild : bool // Did the user call `fake build` or `fake run`? } @@ -149,7 +150,8 @@ let runOrBuild (args : RunArguments) = let useCache = not args.NoCache try - if not (FakeRuntime.prepareAndRunScript args.VerboseLevel additionalArgs scriptFile args.ScriptArguments useCache) then false + let config = FakeRuntime.createConfigSimple args.VerboseLevel additionalArgs scriptFile args.ScriptArguments useCache args.RestoreOnlyGroup + if not (FakeRuntime.prepareAndRunScript config) then false else if args.VerboseLevel.PrintVerbose then log "Ready." true @@ -237,6 +239,7 @@ let parseAction (results:DocoptMap) = Debug = DocoptResult.hasFlag "--debug" results NoCache = DocoptResult.hasFlag "--nocache" results + RestoreOnlyGroup = DocoptResult.hasFlag "--partial-restore" results || Environment.GetEnvironmentVariable ("FAKE_PARTIAL_RESTORE") = "true" VerboseLevel = verboseLevel IsBuild = not isRun // Did the user call `fake build` or `fake run`? } From fdb663716526db3c79c369439b52fa4e4b0af7c9 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 13 May 2018 01:50:26 +0200 Subject: [PATCH 02/31] add log --- build.fsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index 706c3389be9..75544a279e8 100644 --- a/build.fsx +++ b/build.fsx @@ -1352,7 +1352,12 @@ Target.create "PrepareArtifacts" (fun _ -> if not fromArtifacts then Trace.trace "empty artifactsDir." else - !! (artifactsDir "fake-dotnetcore-*.zip") + Trace.trace "ensure artifacts." + let files = + !! (artifactsDir "fake-dotnetcore-*.zip") + |> Seq.toList + Trace.tracefn "files: %A" files + files |> Shell.copy "nuget/dotnetcore/Fake.netcore" unzip "nuget/dotnetcore" (artifactsDir "fake-dotnetcore-packages.zip") From 5e525b9b4f9369003d2dd1dbbcad25fa1a7e8c45 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 13 May 2018 02:04:22 +0200 Subject: [PATCH 03/31] Paket update & release notes --- RELEASE_NOTES.md | 4 + paket.lock | 633 +++++++++++++++++++++++------------------------ 2 files changed, 320 insertions(+), 317 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5427149e46d..57c81891a99 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,9 @@ # Release Notes +## 5.0.0-rc013 - 2018-05-20 + +* FAKE5: Add partial restore (to improve the speed when using in a release-pipeline) - https://github.com/fsharp/FAKE/issues/1926 + ## 5.0.0-rc012 - 2018-05-12 * FAKE5: New module `Fake.Windows.Registry` - https://github.com/fsharp/FAKE/pull/1909 diff --git a/paket.lock b/paket.lock index a2384d79ca5..782e3da589b 100644 --- a/paket.lock +++ b/paket.lock @@ -2630,6 +2630,321 @@ 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.0.0-rc012.95) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.AppVeyor (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.GitLab (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamCity (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamFoundation (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.Travis (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.Core.CommandLineParsing (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FParsec (>= 1.0.3) - 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.Context (5.0.0-rc012.95) - 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.Environment (5.0.0-rc012.95) - 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.Process (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.ReleaseNotes (5.0.0-rc012.95) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.CommandLineParsing (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Tasks (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Trace (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.Xml (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.0.0-rc012.95) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.FSFormatting (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.MSBuild (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.NuGet (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) + System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + Fake.DotNet.Paket (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Testing.MSpec (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Testing.NUnit (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Fake.DotNet.Testing.XUnit2 (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.IO.FileSystem (5.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + Fake.Testing.Common (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Tools.Git (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Windows.Chocolatey (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) FParsec (1.0.3) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.0.0.1) - restriction: >= net40 FSharp.Core (>= 4.2.3) - restriction: && (< net40) (>= netstandard1.6) @@ -2737,7 +3052,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.157.0-alpha003) + Paket.Core (5.161.3) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -3402,322 +3717,6 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - remote: https://www.myget.org/F/fake-vsts/api/v3/index.json - Fake.Api.GitHub (5.0.0-rc012.85) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.AppVeyor (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.85) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.GitLab (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.85) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamCity (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.85) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamFoundation (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.85) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.Travis (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.85) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.Core.CommandLineParsing (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - FParsec (>= 1.0.3) - 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.Context (5.0.0-rc012.85) - 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.Environment (5.0.0-rc012.85) - 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.Process (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.ReleaseNotes (5.0.0-rc012.85) - Fake.Core.SemVer (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - 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.0.0-rc012.85) - Fake.Core.String (>= 5.0.0-rc012.85) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (5.0.0-rc012.85) - 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.0.0-rc012.85) - Fake.Core.CommandLineParsing (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - 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.Tasks (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.Trace (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - 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.Xml (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.0.0-rc012.85) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.FSFormatting (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.MsBuild (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.NuGet (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tasks (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.DotNet.Paket (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.Testing.MSpec (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.85) - 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.Testing.NUnit (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.85) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.DotNet.Testing.XUnit2 (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.85) - 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.IO.FileSystem (5.0.0-rc012.85) - Fake.Core.String (>= 5.0.0-rc012.85) - 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.0.0-rc012.85) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.Testing.Common (5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.Tools.Git (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - 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.Windows.Chocolatey (5.0.0-rc012.85) - Fake.Core.Context (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.NuGet (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.85) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) GROUP TestAdapter NUGET From 381f316278353b77235ff095302d624a44121595 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 13 May 2018 02:12:52 +0200 Subject: [PATCH 04/31] simplify some versions in the release-process --- build.fsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/build.fsx b/build.fsx index 75544a279e8..c3bb168695b 100644 --- a/build.fsx +++ b/build.fsx @@ -199,6 +199,9 @@ let version = Values = p.Values @ source Origin = p.Origin + toAdd }) { semVer with PreRelease = prerelease; Original = None; BuildMetaData = buildMeta } + +let simpleVersion = version.AsString + let nugetVersion = if System.String.IsNullOrEmpty version.BuildMetaData then version.AsString @@ -485,7 +488,7 @@ Target.create "GenerateDocs" (fun _ -> "page-author", String.separated ", " authors "project-author", String.separated ", " authors "github-link", githubLink - "version", nugetVersion + "version", simpleVersion "project-github", "http://github.com/fsharp/fake" "project-nuget", "https://www.nuget.org/packages/FAKE" "root", "http://fsharp.github.io/FAKE" @@ -1288,7 +1291,7 @@ Target.create "ReleaseDocs" (fun _ -> if not BuildServer.isLocalBuild then Git.CommandHelper.directRunGitCommandAndFail "gh-pages" "config user.email matthi.d@gmail.com" Git.CommandHelper.directRunGitCommandAndFail "gh-pages" "config user.name \"Matthias Dittrich\"" - Git.Commit.exec "gh-pages" (sprintf "Update generated documentation %s" nugetVersion) + Git.Commit.exec "gh-pages" (sprintf "Update generated documentation %s" simpleVersion) Git.Branches.pushBranch "gh-pages" url "gh-pages" ) @@ -1311,19 +1314,19 @@ Target.create "FastRelease" (fun _ -> Git.Branches.checkout gitDirectory false TeamFoundation.Environment.BuildSourceVersion else Git.Staging.stageAll gitDirectory - Git.Commit.exec gitDirectory (sprintf "Bump version to %s" nugetVersion) + Git.Commit.exec gitDirectory (sprintf "Bump version to %s" simpleVersion) let branch = Git.Information.getBranchName gitDirectory Git.Branches.pushBranch gitDirectory "origin" branch - Git.Branches.tag gitDirectory nugetVersion - Git.Branches.pushTag gitDirectory url nugetVersion + Git.Branches.tag gitDirectory simpleVersion + Git.Branches.pushTag gitDirectory url simpleVersion let files = runtimes @ [ "portable"; "packages" ] |> List.map (fun n -> sprintf "nuget/dotnetcore/Fake.netcore/fake-dotnetcore-%s.zip" n) GitHub.createClientWithToken token - |> GitHub.draftNewRelease gitOwner gitName nugetVersion (release.SemVer.PreRelease <> None) release.Notes + |> GitHub.draftNewRelease gitOwner gitName simpleVersion (release.SemVer.PreRelease <> None) release.Notes |> GitHub.uploadFiles files |> GitHub.publishDraft |> Async.RunSynchronously From 393de804fb728a803c57c1656c0b9045d295b779 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 13 May 2018 15:30:21 +0200 Subject: [PATCH 05/31] update paket.core --- paket.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/paket.lock b/paket.lock index 782e3da589b..c2cba2cbab9 100644 --- a/paket.lock +++ b/paket.lock @@ -313,7 +313,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.7) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.157.0-alpha003) + Paket.Core (5.162.0-alpha001) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -1936,7 +1936,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.157.0-alpha003) + Paket.Core (5.162.0-alpha001) Chessie (>= 0.6) - restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) FSharp.Compiler.Tools - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) @@ -3052,7 +3052,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.161.3) + Paket.Core (5.162.0-alpha001) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 From c2f6d7b0611d1c2d1aca28bfbda4559216e1ab93 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 13 May 2018 16:58:17 +0200 Subject: [PATCH 06/31] update paket --- paket.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/paket.lock b/paket.lock index c2cba2cbab9..928c06a5866 100644 --- a/paket.lock +++ b/paket.lock @@ -313,7 +313,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.7) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.162.0-alpha001) + Paket.Core (5.162.0-alpha002) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -1936,7 +1936,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.162.0-alpha001) + Paket.Core (5.162.0-alpha002) Chessie (>= 0.6) - restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) FSharp.Compiler.Tools - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) @@ -3052,7 +3052,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.162.0-alpha001) + Paket.Core (5.162.0-alpha002) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 From 75a71c44c15e72217dd3399cb359155975b9ef4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20B=C3=A4urle?= Date: Tue, 15 May 2018 10:24:33 +0200 Subject: [PATCH 07/31] Better deprecated message. --- src/app/Fake.Core.Process/Process.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.Core.Process/Process.fs b/src/app/Fake.Core.Process/Process.fs index 94e61322453..f48ddff8119 100644 --- a/src/app/Fake.Core.Process/Process.fs +++ b/src/app/Fake.Core.Process/Process.fs @@ -317,7 +317,7 @@ module Process = addStartedProcess(proc.Id, proc.StartTime) |> ignore /// [omit] - [] + [] let startProcess (proc : Process) = try let result = proc.Start() From aff95e5268d88780d0de108f90ebe927a8efedcf Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Wed, 16 May 2018 19:52:27 +0200 Subject: [PATCH 08/31] Add section for DSLs and XAKE --- help/templates/template.cshtml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 5bf13421a17..4cba65f7c97 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -138,6 +138,12 @@
  • Paket
  • +
  • + DSL + +
  • Installer
      From 4edbb5a1547a9d4921a7004a163ab6536c593bc3 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Wed, 16 May 2018 22:59:06 +0200 Subject: [PATCH 09/31] update paket, paket update --- .paket/Paket.Restore.targets | 31 +- .../Fake_WebSite.Tests.csproj | 2 +- paket.dependencies | 21 +- paket.lock | 1926 +++++++---------- src/legacy/FAKE/FAKE.fsproj | 420 +++- .../Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj | 466 +++- src/legacy/Fake.Deploy/Fake.Deploy.fsproj | 492 ++++- .../Fake.Experimental.fsproj | 406 +++- .../Fake.FluentMigrator.fsproj | 464 +++- src/legacy/Fake.Gallio/Fake.Gallio.fsproj | 406 +++- src/legacy/Fake.IIS/Fake.IIS.fsproj | 408 +++- src/legacy/Fake.SQL/Fake.SQL.fsproj | 406 +++- src/legacy/FakeLib/FakeLib.fsproj | 506 ++++- src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj | 448 +++- .../ProjectTestFiles/CSharpApp.csproj | 423 +++- .../ProjectTestFiles/FakeLib.fsproj | 418 +++- .../ProjectTestFiles/FakeLib2.csproj | 418 +++- .../ProjectTestFiles/FakeLib2.fsproj | 418 +++- .../ProjectTestFiles/FakeLib3.csproj | 418 +++- .../ProjectTestFiles/FakeLib3.fsproj | 418 +++- .../ProjectTestFiles/FakeLib4.fsproj | 418 +++- .../ProjectTestFiles/FakeLib5.fsproj | 418 +++- .../ProjectTestFiles/FakeLib6.fsproj | 418 +++- src/legacy/Test.FAKECore/Test.FAKECore.csproj | 433 +++- .../TestData/fake_no_template.csproj | 433 +++- .../Test.Fake.Deploy.Web.File.fsproj | 440 +++- .../Test.Fake.Deploy.Web.fsproj | 482 ++++- .../Test.Fake.Deploy/Test.Fake.Deploy.csproj | 482 ++++- src/legacy/Test.Git/Test.Git.csproj | 425 +++- .../Fake.Deploy.Web.Abstractions.fsproj | 396 +++- .../Fake.Deploy.Web.File.fsproj | 444 +++- .../Fake.Deploy.Web.RavenDb.fsproj | 408 +++- .../Fake.Deploy.Web/Fake.Deploy.Web.fsproj | 464 +++- 33 files changed, 11832 insertions(+), 2744 deletions(-) diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index 1a8920fc6e6..e77c1505618 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -43,7 +43,7 @@ true - $(NoWarn);NU1603 + $(NoWarn);NU1603;NU1604;NU1605;NU1608 @@ -69,11 +69,18 @@ true + - + + + + + + + $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).paket.references.cached @@ -82,7 +89,10 @@ $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references $(MSBuildProjectDirectory)\paket.references + $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).$(TargetFramework).paket.resolved + false + true true references-file-or-cache-not-found @@ -101,24 +111,29 @@ - + true - target-framework '$(TargetFramework)' + target-framework '$(TargetFramework)' or '$(TargetFrameworks)' - + + - + + false + true + + - + - + $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0]) $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1]) diff --git a/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj b/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj index 3287dc6d6b3..2ae6357b466 100644 --- a/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj +++ b/Samples/ContinuousDeploymentWebsite/src/test/Fake_WebSite.Tests/Fake_WebSite.Tests.csproj @@ -84,7 +84,7 @@ - + ..\..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll diff --git a/paket.dependencies b/paket.dependencies index ee20107d03c..ef07beaea73 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.156.5 +version 5.163.2 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket @@ -44,7 +44,24 @@ nuget xunit nuget Newtonsoft.Json redirects:force nuget Microsoft.AspNet.Razor 2.0.30506 nuget Microsoft.AspNet.WebPages 2.0.30506 -nuget FluentMigrator.Runner +nuget FluentMigrator ~> 2.0 +nuget FluentMigrator.Abstractions ~> 2.0 +nuget FluentMigrator.Extensions.SqlAnywhere ~> 2.0 +nuget FluentMigrator.Extensions.SqlServer ~> 2.0 +nuget FluentMigrator.Runner ~> 2.0 +nuget FluentMigrator.Runner.Core ~> 2.0 +nuget FluentMigrator.Runner.Db2 ~> 2.0 +nuget FluentMigrator.Runner.Firebird ~> 2.0 +nuget FluentMigrator.Runner.Hana ~> 2.0 +nuget FluentMigrator.Runner.Jet ~> 2.0 +nuget FluentMigrator.Runner.MySql ~> 2.0 +nuget FluentMigrator.Runner.Oracle ~> 2.0 +nuget FluentMigrator.Runner.Postgres ~> 2.0 +nuget FluentMigrator.Runner.Redshift ~> 2.0 +nuget FluentMigrator.Runner.SqlAnywhere ~> 2.0 +nuget FluentMigrator.Runner.SQLite ~> 2.0 +nuget FluentMigrator.Runner.SqlServer ~> 2.0 +nuget FluentMigrator.Runner.SqlServerCe ~> 2.0 nuget HashLib nuget FSharp.Compiler.Service content: none nuget Octokit diff --git a/paket.lock b/paket.lock index 47141f3b20c..27d98276cce 100644 --- a/paket.lock +++ b/paket.lock @@ -7,7 +7,7 @@ NUGET System.Configuration.ConfigurationManager (>= 4.4) - restriction: && (< net45) (>= netstandard2.0) AspNetMvc (4.0.20710) Microsoft.AspNet.Mvc (>= 4.0.20710 < 4.1) - bootstrap (4.1) + bootstrap (4.1.1) jQuery (>= 3.0 < 4.0) popper.js (>= 1.14 < 2.0) Chessie (0.6) - restriction: || (>= net45) (>= netstandard2.0) @@ -15,72 +15,72 @@ NUGET FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 CsQuery (1.3.4) - FluentMigrator (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Extensions.SqlAnywhere (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Extensions.SqlServer (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner (2.0.6) - FluentMigrator (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Db2 (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Firebird (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Hana (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Jet (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) - FluentMigrator.Runner.MySql (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Oracle (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Postgres (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Redshift (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlAnywhere (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SQLite (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServerCe (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Db2 (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Firebird (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Hana (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Jet (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: >= net40 - FluentMigrator.Runner.MySql (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Oracle (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Postgres (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Redshift (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlAnywhere (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Extensions.SqlAnywhere (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SQLite (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServer (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Extensions.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator (2.0.7) + FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Abstractions (2.0.7) + FluentMigrator.Extensions.SqlAnywhere (2.0.7) + FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Extensions.SqlServer (2.0.7) + FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner (2.0.7) + FluentMigrator (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Db2 (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Firebird (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Hana (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Jet (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) + FluentMigrator.Runner.MySql (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Oracle (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Postgres (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Redshift (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlAnywhere (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SQLite (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServerCe (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (2.0.7) + FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Db2 (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Firebird (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Hana (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Jet (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: >= net40 + FluentMigrator.Runner.MySql (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Oracle (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Postgres (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Redshift (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlAnywhere (2.0.7) + FluentMigrator.Extensions.SqlAnywhere (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SQLite (2.0.7) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServer (2.0.7) + FluentMigrator.Extensions.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) System.Data.SqlClient (>= 4.4.3) - restriction: && (< net40) (>= netstandard2.0) - FluentMigrator.Runner.SqlServerCe (2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServerCe (2.0.7) + FluentMigrator.Runner.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) Microsoft.SqlServer.Compact (>= 4.0.8876.1) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) System.Security.Permissions (>= 4.4.1) - restriction: && (< net40) (>= netstandard2.0) FParsec (1.0.3) 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) - FsCheck (2.10.9) + FsCheck (2.10.10) FSharp.Core (>= 4.0.0.1) - restriction: || (>= net452) (&& (< netstandard1.6) (>= portable-net45+win8+wp8) (< win8)) (&& (< netstandard1.6) (>= win8)) (&& (< portable-net45+win8+wp8) (>= portable-net45+win8+wp8+wpa81)) - FSharp.Core (>= 4.2.3) - restriction: && (< net452) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: && (< net452) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.6) System.ValueTuple (>= 4.4) - restriction: && (< net452) (>= netstandard1.6) - FsCheck.Xunit (2.10.9) - FsCheck (>= 2.10.9) - restriction: && (< net452) (>= netstandard1.6) - FsCheck (2.10.9) - restriction: >= net452 - FSharp.Core (>= 4.2.3) - restriction: && (< net452) (>= netstandard1.6) + FsCheck.Xunit (2.10.10) + FsCheck (>= 2.10.10) - restriction: && (< net452) (>= netstandard1.6) + FsCheck (2.10.10) - restriction: >= net452 + FSharp.Core (>= 4.3.4) - restriction: && (< net452) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.6) System.ValueTuple (>= 4.4) - restriction: && (< net452) (>= netstandard1.6) xunit.abstractions (>= 2.0.1) - restriction: && (< net452) (>= netstandard1.6) @@ -99,7 +99,7 @@ NUGET System.Runtime.Loader (>= 4.0) - restriction: && (< net45) (>= netstandard2.0) System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard2.0) System.ValueTuple (>= 4.4) - restriction: >= net45 - FSharp.Compiler.Tools (10.0.1) - restriction: >= net45 + FSharp.Compiler.Tools (10.0.2) - restriction: >= net45 FSharp.Core (4.3.4) - redirects: force System.Collections (>= 4.0.11) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Console (>= 4.0) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) @@ -144,7 +144,7 @@ NUGET Microsoft.AspNet.Razor (>= 2.0.20710) Microsoft.Web.Infrastructure (>= 1.0) Microsoft.CompilerServices.AsyncTargetingPack (1.0.1) - restriction: < net45 - Microsoft.CSharp (4.4.1) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + Microsoft.CSharp (4.4.1) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) System.Reflection.TypeExtensions (>= 4.4) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -179,14 +179,14 @@ NUGET Microsoft.Extensions.PlatformAbstractions (1.1) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5) NETStandard.Library (>= 1.6.1) - restriction: || (>= net451) (>= netstandard1.3) System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net451) (>= netstandard1.3) - Microsoft.Net.Compilers (2.7) - content: none, restriction: || (>= net45) (>= netstandard2.0) - Microsoft.NETCore.Platforms (2.0.2) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) - Microsoft.NETCore.Targets (2.0) - redirects: force, restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.Net.Compilers (2.8) - content: none, restriction: || (>= net45) (>= netstandard2.0) + Microsoft.NETCore.Platforms (2.0.2) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= netstandard1.6) (>= wp8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8)) + Microsoft.NETCore.Targets (2.0) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) Microsoft.SqlServer.Compact (4.0.8876.1) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) Microsoft.Web.Administration (7.0) Microsoft.Web.Infrastructure (1.0) Microsoft.Web.Xdt (2.1.2) - Microsoft.Win32.Primitives (4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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) @@ -223,51 +223,51 @@ NUGET Microsoft.AspNet.Razor - restriction: < net40 Microsoft.AspNet.Razor (>= 2.0.30506) - restriction: >= net40 Nancy (>= 1.4.3) - NETStandard.Library (2.0.2) - restriction: || (&& (< net20) (>= netstandard1.6) (< netstandard2.0)) (&& (< net20) (>= netstandard2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) + NETStandard.Library (2.0.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net461) (>= netstandard1.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net20) (>= net45)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (>= netstandard1.6)) (&& (< net20) (>= netstandard2.0)) (&& (< net35) (>= net451) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net45) (>= netstandard1.6)) (>= netstandard1.1) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Newtonsoft.Json (11.0.2) - redirects: force Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) @@ -275,7 +275,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.5.3) + NLog (4.5.4) 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) (< xamarinios)) System.Collections.NonGeneric (>= 4.0.1) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5) @@ -292,7 +292,7 @@ NUGET System.Runtime.Loader (>= 4.0) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) System.Threading.Thread (>= 4.0) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) System.Xml.XmlDocument (>= 4.0.1) - restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) - NuGet.CommandLine (4.6.2) + Nuget.CommandLine (4.6.2) Nuget.Core (2.14) Microsoft.Web.Xdt (>= 2.1) NUnit (3.10.1) @@ -313,7 +313,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.7) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.162.0-alpha002) + Paket.Core (5.163.2) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -322,13 +322,13 @@ NUGET Newtonsoft.Json (>= 10.0.3) - restriction: && (< net45) (>= netstandard2.0) System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: && (< net45) (>= netstandard2.0) popper.js (1.14.3) - RavenDB.Client (2.5.25029) + RavenDB.Client (2.5.25032) Microsoft.CompilerServices.AsyncTargetingPack (>= 1.0) - restriction: < net45 RavenDB.Server (3.5.5) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< net40) (>= netstandard2.0)) (>= netcoreapp2.0) @@ -343,7 +343,7 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: && (< net45) (>= netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -395,19 +395,19 @@ NUGET SshNet.Security.Cryptography (1.2) - restriction: || (&& (< net35) (>= netstandard1.3)) (>= sl4) (>= uap10.0) (>= wp71) System.IO (>= 4.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3) (< wp71)) (&& (< net20) (>= netstandard1.3)) (>= uap10.0) System.Security.Cryptography.Primitives (>= 4.0) - restriction: || (&& (< net20) (>= netstandard1.3)) (>= uap10.0) - System.AppContext (4.3) - restriction: && (< net45) (>= netstandard1.3) + System.AppContext (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (>= net45) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -420,7 +420,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Collections.Immutable (1.4) - content: none, restriction: || (>= net45) (>= netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Collections.NonGeneric (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) + System.Collections.NonGeneric (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -437,11 +437,11 @@ NUGET System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.ComponentModel (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< 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)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.ComponentModel.Primitives (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< xamarinios) (< xamarinmac) (< 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.Primitives (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.5) (< win8)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net20) (>= net45) (>= netstandard1.3) (< netstandard1.5)) (&& (< net20) (>= net45) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.3) (>= win8)) (&& (>= netstandard1.3) (< netstandard2.0) (>= wpa81)) (&& (< netstandard1.3) (>= wpa81)) (>= wp8) System.ComponentModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.ComponentModel.TypeConverter (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.ComponentModel.TypeConverter (4.3) - redirects: force, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8) (< wp8) (< wpa81)) System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) System.Collections.Specialized (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -459,7 +459,7 @@ NUGET 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.Configuration.ConfigurationManager (4.4.1) - restriction: && (< net45) (>= netstandard2.0) System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: || (&& (< net461) (>= netstandard2.0)) (>= netcoreapp2.0) - System.Console (4.3.1) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Console (4.3.1) - redirects: force, restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) 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) @@ -480,11 +480,11 @@ NUGET System.Diagnostics.DiagnosticSource (>= 4.4.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (< netcoreapp2.0) (>= netstandard2.0)) System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0) System.Text.Encoding.CodePages (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0) - System.Diagnostics.Debug (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Diagnostics.Debug (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (>= net45) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net40) (< netcoreapp2.0) (>= netstandard2.0)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -492,7 +492,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Threading (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) - System.Diagnostics.Process (4.3) - content: none, restriction: && (< net45) (>= netstandard2.0) + System.Diagnostics.Process (4.3) - content: none, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net45) (>= netstandard2.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -519,11 +519,11 @@ NUGET System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection.Metadata (>= 1.4.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Tools (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.TraceSource (4.3) - content: none, restriction: && (< net45) (>= netstandard2.0) + System.Diagnostics.TraceSource (4.3) - content: none, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard2.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -533,7 +533,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.Diagnostics.Tracing (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Diagnostics.Tracing (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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)) @@ -552,29 +552,29 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Globalization (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (>= net45) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Globalization.Calendars (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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.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) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.IO (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.1) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (>= net45) (>= netstandard1.3) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) + System.IO.Compression (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -590,7 +590,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) 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) @@ -600,7 +600,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) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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) @@ -609,7 +609,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: && (< net35) (>= netstandard1.3) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO.FileSystem.Watcher (4.3) - restriction: && (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -628,13 +628,13 @@ NUGET System.Threading.Overlapped (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (>= net45) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -692,7 +692,7 @@ NUGET System.Text.Encoding.Extensions (>= 4.3) - restriction: >= dnxcore50 System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) - System.Net.NameResolution (4.3) - restriction: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Net.NameResolution (4.3) - restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -707,12 +707,12 @@ NUGET System.Security.Principal.Windows (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Net.Primitives (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Net.Requests (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Net.Requests (4.3) - redirects: force, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -726,7 +726,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: && (< net35) (>= netstandard1.3) (< uap10.0) + System.Net.Sockets (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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) @@ -738,25 +738,25 @@ NUGET 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.ObjectModel (4.3) - restriction: || (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.ObjectModel (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (>= net45) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: && (< net45) (>= netstandard2.0) + System.Reflection.Emit (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard2.0)) 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) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.ILGeneration (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard2.0)) 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) @@ -765,44 +765,44 @@ NUGET 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) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.Extensions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< 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)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Metadata (1.5) - content: none, restriction: || (>= net45) (>= netstandard2.0) + System.Reflection.Metadata (1.5) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5)) (>= net45) (>= netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: && (< monoandroid) (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= portable-net45+win8)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - content: none, restriction: || (>= net45) (>= netstandard2.0) + System.Reflection.Primitives (4.3) - content: none, restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net45) (>= netcoreapp1.1) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - content: none, restriction: && (< net45) (>= netstandard2.0) - System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Reflection.TypeExtensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.0)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net45) (>= netstandard1.3)) (&& (< net45) (>= netstandard2.0)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< 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.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (>= net45) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (>= netstandard1.6) (&& (>= netstandard2.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= 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) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (>= net45) (>= netstandard1.6) (>= uap10.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Runtime.InteropServices (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (>= net45) (>= netstandard1.3) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< net20) (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3)) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -810,11 +810,11 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Loader (4.3) - content: none, restriction: && (< net45) (>= netstandard2.0) + System.Runtime.Loader (4.3) - content: none, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net45) (>= netstandard2.0)) 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) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (4.3) - redirects: force, restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) @@ -825,36 +825,28 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (>= net46) - System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) + System.Runtime.Serialization.Primitives (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.4) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (>= netstandard1.3) (< netstandard1.4)) (&& (< net20) (>= net46) (< netstandard2.0)) (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime.WindowsRuntime (4.3) - restriction: >= dnxcore50 System.Security.AccessControl (4.4.1) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Claims (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net46) (< netstandard2.0)) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3.1) - content: none, restriction: && (< net45) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (4.3.1) - content: none, restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Cng (4.4) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) @@ -867,7 +859,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: && (< net35) (>= netstandard1.3) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) 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) @@ -881,7 +873,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) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< 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) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= 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) @@ -908,7 +900,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (>= netstandard1.3)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= net46)) (&& (< net45) (>= 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) @@ -917,7 +909,7 @@ NUGET System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: && (< net45) (>= netstandard2.0) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46) + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (>= net46) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) @@ -945,38 +937,23 @@ NUGET System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Permissions (4.4.1) - restriction: && (< net40) (>= netstandard2.0) System.Security.AccessControl (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Principal (4.3) - restriction: && (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< netstandard2.0) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Principal.Windows (4.4.1) - restriction: && (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Principal.Windows (4.4.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< uap10.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net40) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Claims (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< net461) (< netstandard2.0)) - System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Text.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Text.Encoding (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard1.6) (< win8) (< wpa81)) (>= net45) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.4) - restriction: || (&& (< net40) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding.Extensions (4.3) - restriction: >= dnxcore50 - System.Text.RegularExpressions (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (>= dnxcore50) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) + System.Text.RegularExpressions (4.3) - redirects: force, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.5) (< win81) (< wpa81)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net20) (>= 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) (>= netstandard1.3) (< win8) (< wpa81)) (&& (< net20) (>= net462) (< netstandard1.3)) (&& (< net20) (>= net462) (< netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net20) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (>= net45) (>= netstandard1.6) (>= uap10.0) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -984,11 +961,11 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Threading.Tasks (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) + System.Threading.Tasks (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< 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.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) @@ -1001,19 +978,19 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Threading.Thread (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Thread (4.3) - redirects: force, restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.ThreadPool (4.3) - redirects: force, restriction: || (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) 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) - redirects: force, restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Timer (4.3) - redirects: force, restriction: || (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3) (< uap10.0)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ValueTuple (4.4) - copy_local: true, redirects: force NETStandard.Library (>= 1.6.1) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Web.Razor.Unofficial (2.0.2) - System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (>= uap10.0) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1029,7 +1006,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (< netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0)) + System.Xml.XDocument (4.3) - restriction: || (&& (< net20) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< net20) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net20) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net20) (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1042,7 +1019,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Xml.XmlDocument (4.3) - redirects: force, restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) + System.Xml.XmlDocument (4.3) - redirects: force, restriction: || (&& (< monoandroid4.4) (< net35) (>= netstandard1.5) (< netstandard2.0) (< xamarinios)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (>= uap10.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) @@ -1082,9 +1059,9 @@ NUGET xunit.analyzers (>= 0.7) xunit.assert (2.3.1) xunit.core (2.3.1) - xunit.abstractions (2.0.1) - restriction: && (< net452) (>= netstandard1.6) + xunit.abstractions (2.0.1) - restriction: || (&& (< net452) (>= netstandard1.6)) (>= netstandard1.1) NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) - xunit.analyzers (0.8) + xunit.analyzers (0.9) xunit.assert (2.3.1) NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) xunit.core (2.3.1) @@ -1093,7 +1070,7 @@ NUGET xunit.extensibility.core (2.3.1) NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) xunit.abstractions (>= 2.0.1) - restriction: >= netstandard1.1 - xunit.extensibility.execution (2.3.1) - restriction: >= net452 + xunit.extensibility.execution (2.3.1) xunit.extensibility.core (2.3.1) - restriction: >= netstandard1.1 xunit.runner.console (2.3.1) GITHUB @@ -1102,8 +1079,9 @@ GITHUB GROUP Build CONTENT: NONE NUGET + remote: https://ci.appveyor.com/nuget/fake + fake (5.0.0-rc013) remote: https://api.nuget.org/v3/index.json - FAKE (5.0.0-rc011) FSharp.Compiler.Service (22.0.3) FSharp.Core (>= 4.1.18) - restriction: || (>= net45) (>= netstandard2.0) Microsoft.DiaSymReader (>= 1.1) - restriction: || (>= net45) (>= netstandard2.0) @@ -1142,7 +1120,7 @@ NUGET System.Threading.ThreadPool (>= 4.0.10) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) System.Threading.Timer (>= 4.0.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) ILRepack (2.0.15) - Microsoft.AspNet.Razor (3.2.4) + Microsoft.AspNet.Razor (3.2.6) Microsoft.DiaSymReader (1.2) - restriction: || (>= net45) (>= netstandard2.0) Microsoft.Net.Compilers (>= 2.3) - restriction: || (>= net20) (>= netstandard1.1) NETStandard.Library (>= 1.6.1) - restriction: && (< net20) (>= netstandard1.1) @@ -1162,10 +1140,10 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard1.1 System.Text.Encoding (>= 4.3) - restriction: >= netstandard1.1 System.Threading (>= 4.3) - restriction: >= netstandard1.1 - Microsoft.Net.Compilers (2.7) - restriction: || (>= net45) (>= netstandard2.0) - Microsoft.NETCore.Platforms (2.0.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461)) (&& (< 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)) (>= netcoreapp2.0) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.1) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (>= wp8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) - Microsoft.NETCore.Targets (2.0) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + Microsoft.Net.Compilers (2.8) - restriction: || (>= net45) (>= netstandard2.0) + Microsoft.NETCore.Platforms (2.0.2) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461)) (&& (< 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)) (>= netcoreapp2.0) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.1) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.1) (>= wp8)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + Microsoft.Win32.Primitives (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1173,69 +1151,69 @@ NUGET Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.AccessControl (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - NETStandard.Library (2.0.2) - content: none, restriction: && (< net45) (>= netstandard1.1) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1)) - NuGet.CommandLine (4.6.2) + NETStandard.Library (2.0.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net20) (>= net45)) (&& (< net20) (>= netstandard2.0)) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Nuget.CommandLine (4.6.2) Octokit (0.29) - content: none NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.native.System (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.IO.Compression (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.IO.Compression (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1.1) - runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.Net.Http (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1246,28 +1224,28 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (>= netstandard1.6) (>= uap10.0)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) SourceLink.Fake (1.1) - System.AppContext (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.AppContext (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Buffers (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Collections.Concurrent (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1280,17 +1258,17 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Collections.Immutable (1.4) - restriction: || (>= net45) (>= netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) - System.Console (4.3.1) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Console (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Debug (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + System.Diagnostics.DiagnosticSource (4.4.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard1.3) (< xamarinmac)) (&& (< net45) (>= netstandard1.1) (< netstandard1.3)) @@ -1320,7 +1298,7 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1334,33 +1312,33 @@ 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) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Diagnostics.Tracing (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.Globalization (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Globalization.Calendars (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + System.Globalization.Extensions (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (>= net45) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression (4.3) - content: none, restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1376,7 +1354,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.Compression.ZipFile (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.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) @@ -1386,7 +1364,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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1395,15 +1373,15 @@ 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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.IO.FileSystem.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq (4.3) - restriction: || (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (>= netstandard1.6) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< 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)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1430,7 +1408,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Net.Http (4.3.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Http (4.3.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1459,7 +1437,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) - System.Net.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< 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) (< netstandard1.1) (>= netstandard1.6) (< win8)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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)) @@ -1478,7 +1456,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) - System.Net.Sockets (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Net.Sockets (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) 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) @@ -1490,25 +1468,25 @@ NUGET 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.ObjectModel (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.ObjectModel (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (>= net45) (&& (>= netcoreapp1.1) (< netstandard1.2)) (&& (>= netcoreapp1.1) (< netstandard1.3)) (&& (>= netcoreapp1.1) (< netstandard1.4)) (&& (>= netcoreapp1.1) (< netstandard1.5)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: && (< net45) (>= netstandard2.0) + System.Reflection.Emit (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0)) 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: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0)) 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) @@ -1517,7 +1495,7 @@ NUGET 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1525,36 +1503,36 @@ NUGET System.Reflection.Metadata (1.5) - restriction: || (>= net45) (>= netstandard2.0) NETStandard.Library (>= 1.6.1) - restriction: && (< monoandroid) (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= portable-net45+win8)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Reflection.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.4) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.5) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (>= net45) (>= netcoreapp1.1) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< netstandard1.2) (>= uap10.0) (< win8)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< win8) (< wpa81)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.TypeExtensions (4.4) - restriction: && (< net45) (>= netstandard2.0) - System.Resources.ResourceManager (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.TypeExtensions (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0)) + System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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) (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< net45) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (>= net45) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.Handles (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< 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) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< win8) (< wpa81)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.1) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.1) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1566,7 +1544,7 @@ NUGET 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Numerics (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) @@ -1574,22 +1552,22 @@ NUGET System.Security.AccessControl (4.4.1) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Algorithms (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< 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)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Cng (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) @@ -1600,7 +1578,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Csp (4.3) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= 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) @@ -1614,7 +1592,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) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net463) (< netstandard1.4)) (&& (< net45) (>= net463) (< netstandard1.5)) (&& (< net45) (>= net463) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net463) (< netstandard1.6)) (&& (< 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)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (>= net463) (< netstandard1.5) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< 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) @@ -1627,7 +1605,7 @@ 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.4) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) + System.Security.Cryptography.OpenSsl (4.4) - content: none, restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< 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)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1640,7 +1618,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.Primitives (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net463) (< netstandard1.4)) (&& (< net45) (>= net463) (< netstandard1.5)) (&& (< net45) (>= net463) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net463) (< netstandard1.6)) (&& (< 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)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (>= net463) (< netstandard1.5) (>= uap10.0)) (&& (< netstandard1.4) (>= uap10.0)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -1648,7 +1626,7 @@ NUGET System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.X509Certificates (4.3.2) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Security.Cryptography.X509Certificates (4.3.2) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< 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)) (&& (< net45) (>= net46) (< netstandard1.2)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net46) (>= netstandard1.6) (< netstandard2.0)) (&& (< 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.5) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) @@ -1676,30 +1654,30 @@ NUGET System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Principal.Windows (4.4.1) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (>= net45) (&& (>= net46) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (&& (>= netstandard1.6) (< win8) (< wpa81)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Text.Encoding.Extensions (4.3) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.RegularExpressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= uap10.0)) (&& (>= dnxcore50) (>= wpa81)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard1.1) (< win8)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard1.3) (< win8)) (>= net45) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= netstandard1.1) (< portable-net45+win8)) (&& (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netstandard1.5) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) (>= netstandard1.6) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.6) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< 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)) (&& (< net45) (>= netstandard2.0)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< win8) (< wpa81)) + System.Threading.Tasks.Extensions (4.4) - content: none, restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Threading.Tasks (>= 4.3) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) @@ -1712,18 +1690,18 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Thread (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) 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.6) (< netstandard2.0) + System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.ValueTuple (4.4) NETStandard.Library (>= 1.6.1) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.0) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Xml.ReaderWriter (4.3.1) - content: none, restriction: || (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.ReaderWriter (4.3.1) - content: none, restriction: || (&& (>= dnxcore50) (>= netstandard1.1)) (&& (>= dnxcore50) (>= netstandard1.2)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.4)) (&& (>= dnxcore50) (>= netstandard1.5)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (>= dnxcore50) (>= uap10.0)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.4) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.3) (< portable-net45+win8+wpa81)) (&& (< netstandard1.3) (>= uap10.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) (&& (< netstandard1.5) (>= uap10.0) (< win8) (< wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1739,7 +1717,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (>= uap10.0) (< uap10.1)) + System.Xml.XDocument (4.3) - content: none, restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.1) (< portable-net45+win8+wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -1762,12 +1740,12 @@ NUGET RoslynTools.ReferenceAssemblies (0.1.3) GITHUB remote: fsharp/FAKE - modules/Octokit/Octokit.fsx (38b77b8d3ed67f0b9b0402f5c79774cb477c1c8d) + modules/Octokit/Octokit.fsx (d099facbe19ed1676e66c74fef295baa43a73c66) Octokit (>= 0.20) GROUP Docs NUGET remote: https://api.nuget.org/v3/index.json - FAKE (4.64.12) + FAKE (4.64.13) GROUP netcore STORAGE: NONE @@ -1805,33 +1783,33 @@ NUGET System.ValueTuple (>= 4.4) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Compiler.Tools (10.0.2) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core (4.3.4) - System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Console (>= 4.0) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.IO (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Linq (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Reflection (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Collections (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Console (>= 4.0) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Diagnostics.Tools (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Globalization (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.IO (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Linq (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Linq.Expressions (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Linq.Queryable (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Net.Requests (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Reflection (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Reflection.Extensions (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Numerics (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Text.RegularExpressions (>= 4.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Tasks (>= 4.0.11) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Tasks.Parallel (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Thread (>= 4.0) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.ThreadPool (>= 4.0.10) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Threading.Timer (>= 4.0.1) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) Microsoft.CSharp (4.4.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Reflection.TypeExtensions (>= 4.4) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.TypeExtensions (>= 4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) Microsoft.DiaSymReader (1.2) - storage: packages, content: none, restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) Microsoft.Net.Compilers (>= 2.3) NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1863,14 +1841,14 @@ NUGET Microsoft.Net.Compilers (2.8) - storage: packages, content: none, restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) Microsoft.NETCore.App (2.0.7) - restriction: || (&& (== net46) (== netcoreapp1.1)) (&& (== net462) (== netcoreapp1.1)) (&& (== netcoreapp1.1) (== netcoreapp2.0)) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (2.0.2) - Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (== net462) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< net46) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - Microsoft.Win32.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + Microsoft.NETCore.Targets (2.0) - restriction: || (&& (== net46) (== net462) (>= uap10.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< net46) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + Microsoft.Win32.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.Win32.Registry (4.4) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Security.AccessControl (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netcoreapp2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) System.Security.Principal.Windows (>= 4.4) - restriction: || (&& (== net46) (>= monoandroid)) (&& (== net46) (>= monotouch)) (&& (== net46) (>= net461)) (&& (== net46) (>= netcoreapp2.0)) (&& (== net46) (>= xamarinios)) (&& (== net46) (>= xamarinmac)) (&& (== net46) (>= xamarintvos)) (&& (== net46) (>= xamarinwatchos)) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Mono.Cecil (0.10) @@ -1884,59 +1862,59 @@ NUGET System.Threading (>= 4.0.11) - restriction: || (&& (== net46) (< net35)) (&& (== net462) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) NETStandard.Library (2.0.3) Microsoft.NETCore.Platforms (>= 1.1) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Console (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Linq (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.0)) (&& (== net462) (< netstandard1.3)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.AppContext (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Console (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Globalization.Calendars (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.IO.Compression (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO.Compression.ZipFile (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO.FileSystem (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Linq (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Net.Http (>= 4.3.2) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Net.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Net.Sockets (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.ObjectModel (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.0)) (&& (== net462) (< netstandard1.3)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Threading.Timer (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Xml.ReaderWriter (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) Newtonsoft.Json (11.0.2) - Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) - System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) - System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + Microsoft.CSharp (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) + NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) + System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) + System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.162.0-alpha002) + Paket.Core (5.163.2) Chessie (>= 0.6) - restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) FSharp.Compiler.Tools - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) @@ -1947,7 +1925,7 @@ NUGET runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - runtime.native.System (4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + runtime.native.System (4.3) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -1958,7 +1936,7 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.Security.Cryptography.Apple (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -1977,7 +1955,7 @@ NUGET runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.AppContext (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.AppContext (4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Buffers (4.4) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) @@ -1985,11 +1963,11 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Runtime (>= 4.3) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Threading (>= 4.3) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Collections (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Collections (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Collections.Concurrent (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2047,18 +2025,18 @@ NUGET System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Diagnostics.Debug (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.DiagnosticSource (4.4.1) - restriction: || (&& (== net46) (== net462) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (< net45)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (&& (== netcoreapp2.0) (< netstandard1.3)) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.FileVersionInfo (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2105,7 +2083,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2124,11 +2102,11 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Globalization (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Globalization.Calendars (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Globalization.Calendars (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2140,7 +2118,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.IO (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2172,7 +2150,7 @@ NUGET System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO.FileSystem (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO.FileSystem (4.3) - restriction: || (== net46) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2181,7 +2159,7 @@ NUGET System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.IO.FileSystem.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.IO.FileSystem.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO.FileSystem.Watcher (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2200,7 +2178,7 @@ NUGET System.Threading.Overlapped (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Thread (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Linq (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Linq (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2244,7 +2222,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Net.Http (4.3.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Net.Http (4.3.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50) (>= netstandard1.6)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2308,19 +2286,19 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) + System.Reflection.Emit (4.3) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net46) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (== net46) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard2.0)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== net462) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2334,39 +2312,39 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Metadata (1.5) - storage: packages, content: none, restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) + System.Reflection.Metadata (1.5) - storage: packages, content: none NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) System.Collections.Immutable (>= 1.4) - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= monoandroid)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard1.6) (== netstandard2.0) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Reflection.TypeExtensions (4.4) - storage: packages, content: none, restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net20)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net20)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime.Extensions (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Handles (4.3) - restriction: || (&& (== net46) (>= dnxcore50) (>= netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (>= dnxcore50) (>= netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= net462)) (&& (== net46) (>= netcoreapp1.1)) (== net462) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.0)) (&& (== net462) (< netstandard1.3)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.0)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (== net46) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.0)) (&& (== net462) (< netstandard1.3)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2375,9 +2353,9 @@ NUGET System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Loader (4.3) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== net462)) (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net46) (== net462)) (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== net462)) (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Reflection (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.5)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Numerics (4.3) System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2395,7 +2373,7 @@ NUGET System.Security.AccessControl (4.4.1) - restriction: || (&& (== net462) (== netstandard1.6)) (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) System.Security.Principal.Windows (>= 4.4) - System.Security.Cryptography.Algorithms (4.3.1) - storage: packages, content: none, restriction: || (&& (== net46) (< net45) (>= netstandard2.0)) (&& (== net462) (< net45) (>= netstandard2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) + System.Security.Cryptography.Algorithms (4.3.1) - storage: packages, content: none, restriction: || (== net46) (&& (== net462) (< net35)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2411,17 +2389,17 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.Cng (4.4) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (>= dnxcore50)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (< net35)) (&& (== net462) (< net35)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== net46) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (< net35)) (&& (== net462) (< net35)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Reflection (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2435,7 +2413,7 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Security.Cryptography.Encoding (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (== net46) (&& (== net462) (>= dnxcore50) (>= netstandard2.0)) (&& (== net462) (< net35)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2449,19 +2427,19 @@ NUGET System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Cryptography.OpenSsl (4.4) - restriction: || (&& (== net46) (== net462) (>= netstandard1.6) (>= uap10.0)) (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.IO (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Security.Cryptography.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.IO (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= netstandard1.6)) (&& (== net462) (< net461) (>= netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Security.Cryptography.Primitives (4.3) - restriction: || (== net46) (&& (== net462) (>= dnxcore50) (>= netstandard2.0)) (&& (== net462) (< net35)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.IO (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2498,23 +2476,23 @@ NUGET System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Security.Principal.Windows (4.4.1) - restriction: || (&& (== net462) (== netstandard1.6)) (&& (== net462) (>= monoandroid)) (&& (== net462) (>= monotouch)) (&& (== net462) (< net46)) (&& (== net462) (>= netcoreapp2.0)) (&& (== net462) (>= xamarinios)) (&& (== net462) (>= xamarinmac)) (&& (== net462) (>= xamarintvos)) (&& (== net462) (>= xamarinwatchos)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= monoandroid)) (&& (== netstandard1.6) (>= monotouch)) (&& (== netstandard1.6) (>= net461)) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard1.6) (>= netstandard2.0)) (&& (== netstandard1.6) (>= xamarinios)) (&& (== netstandard1.6) (>= xamarinmac)) (&& (== netstandard1.6) (>= xamarintvos)) (&& (== netstandard1.6) (>= xamarinwatchos)) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net46) (>= netcoreapp2.0)) (&& (== net462) (>= netcoreapp2.0)) (== netcoreapp2.0) (&& (== netstandard1.6) (>= netcoreapp2.0)) (&& (== netstandard2.0) (>= netcoreapp2.0)) - System.Text.Encoding (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Text.Encoding (4.3) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Text.RegularExpressions (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) - System.Collections (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (>= netcoreapp1.1)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (>= netcoreapp1.1)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) - System.Threading (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== netcoreapp2.0) (>= dnxcore50)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard1.6) (== netstandard2.0) + System.Threading (4.3) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Overlapped (4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2522,7 +2500,7 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Threading.Tasks (4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2539,9 +2517,9 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.Thread (4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.Thread (4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Threading.ThreadPool (4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (== net46) (< net45) (>= netstandard1.6)) (&& (== net462) (< net45) (>= netstandard1.6)) (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Timer (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) @@ -2549,8 +2527,8 @@ NUGET Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Runtime (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net451)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net451)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.ValueTuple (4.4) - storage: packages, content: none, restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) - NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net461)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) - System.Xml.ReaderWriter (4.3.1) - restriction: || (== net46) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + NETStandard.Library (>= 1.6.1) - restriction: || (== net46) (&& (== net462) (< net461)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Xml.ReaderWriter (4.3.1) - restriction: || (== net46) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.3) (>= uap10.0)) (&& (== net462) (< netstandard1.4)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2566,7 +2544,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Xml.XDocument (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net45)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard1.4)) (&& (== netcoreapp2.0) (< netstandard1.5)) (&& (== netcoreapp2.0) (< netstandard1.6)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+win8+wpa81)) (== netstandard1.6) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (== netstandard2.0) (< netstandard1.4)) (&& (== netstandard2.0) (< netstandard1.5)) (&& (== netstandard2.0) (< netstandard1.6)) (&& (== netstandard2.0) (< portable-net45+win8+wpa81)) + System.Xml.XDocument (4.3) - restriction: || (&& (== net46) (< net45)) (&& (== net46) (< portable-net45+win8+wpa81)) (&& (== net46) (>= uap10.0)) (&& (== net462) (< net45)) (&& (== net462) (< net46)) (&& (== net462) (< netstandard1.5) (>= uap10.0)) (&& (== net462) (< portable-net45+win8+wpa81)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Collections (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2579,7 +2557,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Threading (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net46) (>= dnxcore50)) (&& (== net46) (< net45)) (&& (== net462) (>= dnxcore50)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - System.Xml.XmlDocument (4.3) - restriction: || (&& (== net46) (== netcoreapp2.0)) (&& (== net46) (== netstandard2.0)) (&& (== net46) (< net20)) (&& (== net462) (== netcoreapp2.0)) (&& (== net462) (== netstandard2.0)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) + System.Xml.XmlDocument (4.3) System.Collections (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) System.Globalization (>= 4.3) - restriction: || (&& (== net462) (< net46)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) @@ -2630,321 +2608,6 @@ 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.0.0-rc012.95) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.AppVeyor (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.GitLab (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamCity (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamFoundation (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.Travis (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.Core.CommandLineParsing (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - FParsec (>= 1.0.3) - 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.Context (5.0.0-rc012.95) - 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.Environment (5.0.0-rc012.95) - 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.Process (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.ReleaseNotes (5.0.0-rc012.95) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (5.0.0-rc012.95) - 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.0.0-rc012.95) - Fake.Core.CommandLineParsing (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Tasks (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Trace (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - 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.Xml (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.0.0-rc012.95) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.FSFormatting (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.MSBuild (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.NuGet (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tasks (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.DotNet.Paket (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Testing.MSpec (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Testing.NUnit (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.DotNet.Testing.XUnit2 (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.IO.FileSystem (5.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.Testing.Common (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Tools.Git (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Windows.Chocolatey (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.NuGet (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) FParsec (1.0.3) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.0.0.1) - restriction: >= net40 FSharp.Core (>= 4.2.3) - restriction: && (< net40) (>= netstandard1.6) @@ -2978,9 +2641,9 @@ NUGET NETStandard.Library (>= 1.6.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) System.Dynamic.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) System.Reflection.TypeExtensions (>= 4.4) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (2.0.2) - 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)) (&& (< net46) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (>= netcoreapp2.0) (< netstandard2.0)) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= netstandard1.6) (>= wp8)) - Microsoft.NETCore.Targets (2.0) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - Microsoft.Win32.Primitives (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.5) (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (2.0.2) - restriction: || (>= dnxcore50) (&& (< 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.2) (>= netstandard1.3) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (>= 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) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (>= netcoreapp2.0) (&& (< netstandard1.0) (>= netstandard1.6) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard1.6) (>= win8)) (&& (< netstandard1.0) (>= netstandard1.6) (< win8)) (&& (< netstandard1.3) (>= netstandard1.6) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= netstandard1.6) (>= uap10.1)) (&& (>= netstandard1.6) (>= wp8)) + Microsoft.NETCore.Targets (2.0) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< 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.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)) (&& (< net45) (>= net46)) + Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= 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) @@ -2998,7 +2661,7 @@ NUGET System.Security.Cryptography.Algorithms (>= 4.2) - restriction: && (< net35) (>= netstandard1.3) System.Security.Cryptography.Csp (>= 4.0) - restriction: && (< net35) (>= netstandard1.3) System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.3) - NETStandard.Library (2.0.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + NETStandard.Library (2.0.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net20) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net20) (< netstandard1.3) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net20) (>= net46)) (&& (< net20) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (< net40) (>= netstandard1.6)) (&& (>= net45) (>= netstandard1.6)) (&& (< net45) (>= netstandard1.1)) (&& (< net46) (>= netstandard1.6)) (>= netstandard2.0) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) @@ -3043,7 +2706,7 @@ NUGET System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (< netstandard1.5) (>= uap10.0) (< uap10.1)) - Newtonsoft.Json (11.0.2) - restriction: || (>= net46) (>= netstandard1.6) + Newtonsoft.Json (11.0.2) - restriction: || (>= net45) (>= netstandard1.6) Microsoft.CSharp (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (< net20) (>= netstandard1.0) (< netstandard1.3)) (&& (< net20) (>= netstandard1.3) (< netstandard2.0)) @@ -3052,7 +2715,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.162.0-alpha002) + Paket.Core (5.163.2) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -3063,7 +2726,7 @@ NUGET runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.native.System (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + runtime.native.System (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) runtime.native.System.IO.Compression (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) @@ -3072,9 +2735,9 @@ NUGET runtime.native.System.Net.Http (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) Microsoft.NETCore.Platforms (>= 1.1) Microsoft.NETCore.Targets (>= 1.1) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + 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.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) @@ -3087,7 +2750,7 @@ NUGET runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + 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.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.2) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46) (>= netstandard1.6)) @@ -3100,14 +2763,14 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: >= dnxcore50 System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: >= dnxcore50 - System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) + System.Buffers (4.4) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net46)) System.Diagnostics.Debug (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Diagnostics.Tracing (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Resources.ResourceManager (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Runtime (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) System.Threading (>= 4.3) - restriction: && (>= netstandard1.1) (< netstandard2.0) (< xamarinmac) - System.Collections (4.3) - restriction: >= dnxcore50 - System.Collections.Concurrent (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Collections (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections.Concurrent (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3157,13 +2820,13 @@ 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.6) (< netstandard2.0) + 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.5) (>= netstandard1.6) (>= uap10.0)) 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) @@ -3207,11 +2870,11 @@ NUGET System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.ThreadPool (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Diagnostics.Tools (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Diagnostics.Tools (4.3) - restriction: || (&& (>= dnxcore50) (>= 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Tracing (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Diagnostics.Tracing (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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)) @@ -3230,11 +2893,11 @@ NUGET System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) + System.Globalization.Calendars (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= 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.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3246,7 +2909,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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.3)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< 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.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< net35) (>= net463)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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)) @@ -3278,7 +2941,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: && (< net35) (>= netstandard1.3) + System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= netstandard1.3)) (&& (< 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.5) (>= 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) @@ -3287,7 +2950,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: && (< net35) (>= netstandard1.3) + System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= 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: || (>= net46) (>= netstandard1.6) Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3306,13 +2969,13 @@ NUGET System.Threading.Overlapped (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Linq (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Linq.Expressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Linq.Expressions (4.3) - restriction: || (&& (>= dnxcore50) (>= 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3350,7 +3013,7 @@ NUGET System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Net.Http (4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Net.Http (4.3.3) - restriction: || (&& (>= dnxcore50) (>= 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)) (>= net46) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) @@ -3377,7 +3040,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) - System.Net.Primitives (4.3) - 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Net.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< 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)) @@ -3408,13 +3071,13 @@ NUGET 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.ObjectModel (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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)) @@ -3435,7 +3098,7 @@ NUGET 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3443,7 +3106,7 @@ NUGET System.Reflection.Metadata (1.5) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) NETStandard.Library (>= 1.6.1) - restriction: && (< monoandroid) (< monotouch) (>= netstandard1.1) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Collections.Immutable (>= 1.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.1) (< netstandard2.0)) (&& (< netstandard1.1) (>= portable-net45+win8)) (&& (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Reflection.Primitives (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3451,19 +3114,19 @@ NUGET System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.5) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.5)) - System.Resources.ResourceManager (4.3) - restriction: >= dnxcore50 - System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (4.3) - restriction: || (>= dnxcore50) (&& (< 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)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Runtime (4.3) - restriction: || (>= dnxcore50) (&& (< 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.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net463)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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.Extensions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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) (< net46) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net46)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= 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: || (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) + System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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) @@ -3489,27 +3152,27 @@ NUGET System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.4)) (>= net46) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard2.0)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0)) + System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net20) (< netstandard1.4) (>= netstandard1.6)) (&& (< net20) (>= net46) (< netstandard1.3)) (&& (< net20) (>= net46) (< netstandard1.4)) (&& (< net20) (>= net46) (< netstandard2.0)) (&& (< net20) (< netstandard1.3) (>= netstandard1.6)) (&& (< net20) (>= netstandard1.6) (< netstandard2.0)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Security.AccessControl (4.4.1) - restriction: || (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 System.Security.Principal.Windows (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: && (< net35) (>= netstandard1.3) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net35) (>= net46)) (&& (< net35) (>= netstandard1.3)) (&& (< 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.5) (>= netstandard1.6) (>= uap10.0)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463) + System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463) + System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Cryptography.Cng (4.4) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) @@ -3521,7 +3184,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: && (< net35) (>= netstandard1.3) + System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net35) (>= netstandard1.3)) (&& (< netstandard1.5) (>= netstandard1.6) (>= 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) @@ -3535,7 +3198,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: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net35) (>= net463)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< 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.5) (>= 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) @@ -3561,7 +3224,7 @@ NUGET System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net461) (>= netstandard1.6) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Cryptography.Primitives (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.5) (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= netstandard1.3)) (&& (< monoandroid) (< monotouch) (< net35) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net35) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net35) (>= netstandard1.4) (< netstandard1.6)) (&& (< 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.5) (>= netstandard1.6) (>= 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) @@ -3570,7 +3233,7 @@ NUGET System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Security.Cryptography.ProtectedData (4.4) - restriction: && (< net45) (>= netstandard2.0) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) + System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< net45) (< netstandard1.4) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (>= net46) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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) @@ -3598,29 +3261,29 @@ NUGET System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Security.Principal.Windows (4.4.1) - restriction: || (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= netstandard2.0)) (>= netcoreapp2.0) Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0 - System.Text.Encoding (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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) (< net46) (< netstandard1.4) (>= 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.Encoding.Extensions (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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Text.RegularExpressions (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) - System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp1.1) - System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: >= dnxcore50 + System.Text.RegularExpressions (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) + System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading (4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) System.Threading.Overlapped (4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< net46) (>= netstandard1.3)) - System.Threading.Tasks (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net46)) (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< 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)) (&& (< 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)) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< 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: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) @@ -3637,16 +3300,16 @@ NUGET System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< 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: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.Thread (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Threading.ThreadPool (4.3) - restriction: && (< net45) (>= netstandard1.6) (< netstandard2.0) + System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0)) 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.6) (< netstandard2.0) + 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.5) (>= netstandard1.6) (>= uap10.0)) Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.2) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= netstandard1.6)) (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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)) (>= net46) (&& (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard1.6) (< netstandard2.0)) (&& (>= netstandard1.6) (< portable-net45+win8+wpa81)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3662,7 +3325,7 @@ NUGET System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Xml.XDocument (4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard1.6) (< netstandard2.0)) System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) @@ -3675,7 +3338,7 @@ NUGET System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) - System.Xml.XmlDocument (4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (>= netstandard1.6) (< 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) @@ -3717,19 +3380,20 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - Fake.Api.GitHub (5.0.0-rc012.95) + remote: https://www.myget.org/F/fake-vsts/api/v3/index.json + Fake.Api.GitHub (5.0.0-rc013.113) FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.AppVeyor (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.AppVeyor (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc013.111) - 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) @@ -3742,15 +3406,15 @@ NUGET 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.GitLab (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.GitLab (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc013.111) - 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) @@ -3763,15 +3427,15 @@ NUGET 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.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.TeamCity (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc013.111) - 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) @@ -3784,15 +3448,15 @@ NUGET 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.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.TeamFoundation (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc013.111) - 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) @@ -3805,15 +3469,15 @@ NUGET 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.Travis (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.Travis (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc013.111) - 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) @@ -3826,68 +3490,68 @@ NUGET 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.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.CommandLineParsing (5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) FParsec (>= 1.0.3) - 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.Context (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (5.0.0-rc013.113) - 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.Environment (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (5.0.0-rc013.113) - 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.Process (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.ReleaseNotes (5.0.0-rc012.95) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.ReleaseNotes (5.0.0-rc013.113) + Fake.Core.SemVer (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.113) - 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.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (5.0.0-rc013.113) + Fake.Core.String (>= 5.0.0-rc013.113) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (5.0.0-rc013.113) - 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.0.0-rc012.95) - Fake.Core.CommandLineParsing (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Target (5.0.0-rc013.113) + Fake.Core.CommandLineParsing (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.113) - 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.Tasks (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Trace (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.113) - 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.Xml (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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) (< netstandard2.0)) @@ -3895,141 +3559,141 @@ NUGET 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.0.0-rc012.95) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.AssemblyInfoFile (5.0.0-rc013.111) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Cli (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.FSFormatting (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.MsBuild (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.NuGet (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tasks (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.FSFormatting (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.MsBuild (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.NuGet (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.DotNet.Paket (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Testing.MSpec (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Testing.NUnit (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Paket (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Testing.MSpec (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.Testing.NUnit (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.DotNet.Testing.XUnit2 (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.Testing.XUnit2 (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.IO.FileSystem (5.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (5.0.0-rc013.111) + Fake.Core.String (>= 5.0.0-rc013.111) - 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.0.0-rc012.95) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.Zip (5.0.0-rc013.111) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.Testing.Common (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Tools.Git (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Windows.Chocolatey (5.0.0-rc012.95) - Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.NuGet (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Tools.Git (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Windows.Chocolatey (5.0.0-rc013.111) + Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) @@ -4038,24 +3702,24 @@ NUGET remote: https://api.nuget.org/v3/index.json Argu (5.1.0) - version_in_path: true, restriction: >= net461 FSharp.Core (>= 4.0.0.1) - restriction: >= net45 - Expecto (7.0.1) - version_in_path: true, restriction: >= net461 + Expecto (8.0.0) - version_in_path: true, restriction: >= net461 Argu (>= 5.1) - restriction: || (>= net461) (>= netstandard2.0) Mono.Cecil (>= 0.10) - restriction: || (>= net461) (>= netstandard2.0) - Expecto.VisualStudio.TestAdapter (8.0.0) - version_in_path: true - Expecto (>= 7.0 < 8.0) - restriction: >= net461 - FSharp.Core (>= 4.1.18) - restriction: >= net461 - Microsoft.TestPlatform.ObjectModel (>= 15.5) - restriction: >= net461 - Mono.Cecil (>= 0.10.0-beta7) - restriction: >= net461 - Newtonsoft.Json (>= 10.0.3) - restriction: >= net461 + Expecto.VisualStudio.TestAdapter (9.0.0) - version_in_path: true + Expecto (>= 8.0 < 9.0) - restriction: >= net461 + FSharp.Core (>= 4.0 < 5.0) - restriction: >= net461 + Microsoft.TestPlatform.ObjectModel (>= 15.0 < 16.0) - restriction: >= net461 + Mono.Cecil (>= 0.10 < 0.11) - restriction: >= net461 + Newtonsoft.Json (>= 10.0 < 11.0) - restriction: >= net461 FSharp.Core (4.3.4) - version_in_path: true, restriction: >= net461 - Microsoft.NETCore.Platforms (2.0.2) - version_in_path: true, restriction: || (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< netstandard1.0)) (&& (>= net461) (< netstandard1.3)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (< netstandard2.0)) (&& (>= net461) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= wp8)) - Microsoft.TestPlatform.ObjectModel (15.7.0) - version_in_path: true, restriction: >= net461 + Microsoft.NETCore.Platforms (2.0.2) - version_in_path: true, restriction: || (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< netstandard1.0)) (&& (>= net461) (< netstandard1.3)) (&& (>= net461) (< netstandard1.4)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (>= net461) (< netstandard2.0)) (&& (>= net461) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= wp8)) + Microsoft.TestPlatform.ObjectModel (15.7.2) - version_in_path: true, restriction: >= net461 System.Reflection.Metadata (>= 1.3) - restriction: || (>= net451) (>= netstandard1.5) System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: >= net451 Mono.Cecil (0.10.0) - version_in_path: true, restriction: >= net461 - NETStandard.Library (2.0.2) - version_in_path: true, restriction: && (>= net461) (< 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) - Newtonsoft.Json (11.0.2) - version_in_path: true, restriction: >= net461 + NETStandard.Library (2.0.3) - version_in_path: true, restriction: && (>= net461) (< netstandard2.0) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8) + Newtonsoft.Json (10.0.3) - version_in_path: true, restriction: >= net461 System.Collections.Immutable (1.4.0) - version_in_path: true, restriction: || (&& (>= monoandroid) (>= net461)) (&& (>= monotouch) (>= net461)) (&& (>= net461) (< netstandard1.1)) (&& (>= net461) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (&& (>= net461) (< portable-net45+win8)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) NETStandard.Library (>= 1.6.1) - restriction: && (>= netstandard1.0) (< netstandard2.0) (< xamarinmac) System.Reflection.Metadata (1.5.0) - version_in_path: true, restriction: >= net461 diff --git a/src/legacy/FAKE/FAKE.fsproj b/src/legacy/FAKE/FAKE.fsproj index 12c1aec9a24..72757c5cb6f 100644 --- a/src/legacy/FAKE/FAKE.fsproj +++ b/src/legacy/FAKE/FAKE.fsproj @@ -49,7 +49,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -93,7 +93,7 @@ --> - + ..\..\..\packages\Argu\lib\net45\Argu.dll @@ -113,7 +113,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -173,7 +173,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -182,7 +182,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -193,6 +193,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -204,7 +213,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -213,7 +222,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -266,7 +275,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -277,7 +286,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -308,6 +317,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -319,7 +337,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -330,7 +348,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -341,6 +359,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -370,7 +397,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -379,9 +420,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -401,7 +470,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -432,7 +501,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -441,7 +528,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -452,6 +539,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -520,7 +625,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -590,7 +695,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -632,7 +737,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -641,7 +755,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -652,7 +766,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -663,7 +804,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -672,7 +813,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -683,7 +824,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -692,7 +833,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -723,7 +864,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -734,7 +875,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -745,6 +886,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -765,7 +951,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -776,7 +962,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -814,6 +1019,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -845,6 +1068,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -903,7 +1144,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -912,7 +1153,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -923,7 +1164,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -992,6 +1278,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1050,7 +1345,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1059,7 +1354,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1099,7 +1394,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1148,7 +1443,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1157,7 +1463,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1166,7 +1481,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1177,6 +1492,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1248,7 +1572,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1257,7 +1581,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1268,7 +1592,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1277,7 +1601,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1288,7 +1612,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1308,7 +1632,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\net47\System.ValueTuple.dll @@ -1326,7 +1650,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll @@ -1346,7 +1670,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1355,7 +1679,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll diff --git a/src/legacy/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj b/src/legacy/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj index 802a3854fe0..d616015bdaa 100644 --- a/src/legacy/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj +++ b/src/legacy/Fake.Deploy.Lib/Fake.Deploy.Lib.fsproj @@ -42,7 +42,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -81,7 +81,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -133,6 +133,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -163,7 +181,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -201,7 +219,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -237,7 +255,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -266,7 +284,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -416,7 +434,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -425,7 +443,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -436,6 +454,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -447,7 +474,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -456,7 +483,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -467,7 +494,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -476,7 +503,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -607,7 +634,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -618,7 +645,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -629,7 +656,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -689,6 +716,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -700,7 +736,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -711,7 +747,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -722,6 +758,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -751,7 +796,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -760,9 +819,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -782,7 +869,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -813,7 +900,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -822,7 +927,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -833,6 +938,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -901,7 +1024,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -982,7 +1105,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1024,7 +1147,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1033,7 +1165,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1044,7 +1176,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1055,7 +1214,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1064,7 +1223,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1075,7 +1234,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1084,7 +1243,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1115,7 +1274,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1126,7 +1285,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1137,6 +1296,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1157,7 +1361,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1168,7 +1372,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1206,6 +1429,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1237,6 +1478,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1295,7 +1554,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1304,7 +1563,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1364,27 +1623,52 @@ - + - - ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll True True - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + - - ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll False True - - - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1453,6 +1737,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1511,7 +1804,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1520,7 +1813,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1540,7 +1833,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1568,26 +1861,6 @@ - - - - - ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll - False - True - - - - @@ -1607,7 +1880,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -1647,7 +1920,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1656,7 +1940,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1665,7 +1958,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1676,6 +1969,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1747,7 +2049,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1756,7 +2058,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1767,7 +2069,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1776,7 +2078,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1787,7 +2089,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1798,7 +2100,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1807,7 +2109,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1838,7 +2140,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -1847,7 +2149,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/legacy/Fake.Deploy/Fake.Deploy.fsproj b/src/legacy/Fake.Deploy/Fake.Deploy.fsproj index f213216fbe0..32de3f593b2 100644 --- a/src/legacy/Fake.Deploy/Fake.Deploy.fsproj +++ b/src/legacy/Fake.Deploy/Fake.Deploy.fsproj @@ -81,14 +81,14 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -140,6 +140,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -181,7 +199,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -212,7 +230,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -223,7 +241,7 @@ - + ..\..\..\packages\Nancy.Authentication.Stateless\lib\net40\Nancy.Authentication.Stateless.dll @@ -234,7 +252,7 @@ - + ..\..\..\packages\Nancy.Hosting.Self\lib\net40\Nancy.Hosting.Self.dll @@ -245,7 +263,7 @@ - + ..\..\..\packages\Nancy.Serialization.JsonNet\lib\net40\Nancy.Serialization.JsonNet.dll @@ -283,7 +301,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -319,7 +337,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -414,7 +432,7 @@ - + True @@ -574,7 +592,7 @@ - + ..\..\..\packages\Serilog\lib\net45\Serilog.dll @@ -599,7 +617,7 @@ - + ..\..\..\packages\serilog.sinks.nlog\lib\net45\Serilog.Sinks.NLog.dll @@ -619,7 +637,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -769,7 +787,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -778,7 +796,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -789,6 +807,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -800,7 +827,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -809,7 +836,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -829,7 +856,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard2.0\System.Collections.Immutable.dll @@ -840,7 +867,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -849,7 +876,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -1000,7 +1027,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -1011,7 +1038,7 @@ - + ..\..\..\packages\System.Diagnostics.Process\ref\netstandard1.4\System.Diagnostics.Process.dll @@ -1042,7 +1069,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -1053,7 +1080,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -1113,6 +1140,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -1124,7 +1160,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -1135,7 +1171,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1146,6 +1182,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1175,7 +1220,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1184,9 +1243,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1206,7 +1293,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1248,7 +1335,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1257,7 +1362,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1268,6 +1373,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -1336,7 +1459,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1417,7 +1540,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1459,7 +1582,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1468,7 +1600,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1479,7 +1611,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1490,7 +1649,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1499,7 +1658,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1510,7 +1669,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1519,7 +1678,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1550,7 +1709,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1561,7 +1720,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll @@ -1570,7 +1729,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard2.0\System.Reflection.Metadata.dll @@ -1581,7 +1740,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1592,6 +1751,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1612,7 +1816,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1623,7 +1827,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1661,6 +1884,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1692,6 +1933,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1750,7 +2009,7 @@ - + ..\..\..\packages\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll @@ -1759,7 +2018,7 @@ - + ..\..\..\packages\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll @@ -1770,7 +2029,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1779,7 +2038,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1859,27 +2118,52 @@ - + - - ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll True True - + - - ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll False True - - - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1948,6 +2232,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -2006,7 +2299,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2015,7 +2308,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2035,7 +2328,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2063,26 +2356,6 @@ - - - - - ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll - False - True - - - - @@ -2102,7 +2375,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2142,7 +2415,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -2151,7 +2435,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2160,7 +2453,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2171,6 +2464,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -2253,7 +2555,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2262,7 +2564,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2273,7 +2575,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2282,7 +2584,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2293,7 +2595,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2304,7 +2606,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2313,7 +2615,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2344,7 +2646,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2353,7 +2655,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/legacy/Fake.Experimental/Fake.Experimental.fsproj b/src/legacy/Fake.Experimental/Fake.Experimental.fsproj index f6dbf2a6dbc..85d7a49e56e 100644 --- a/src/legacy/Fake.Experimental/Fake.Experimental.fsproj +++ b/src/legacy/Fake.Experimental/Fake.Experimental.fsproj @@ -66,7 +66,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -86,7 +86,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -97,7 +97,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -106,7 +106,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -117,6 +117,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -128,7 +137,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -137,7 +146,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -170,7 +179,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -181,7 +190,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -212,6 +221,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -223,7 +241,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -234,7 +252,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -245,6 +263,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -274,7 +301,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -283,9 +324,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -316,7 +385,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -325,7 +412,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -336,6 +423,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -404,7 +509,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -474,7 +579,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -505,7 +610,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -514,7 +628,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -525,7 +639,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -536,7 +677,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -545,7 +686,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -556,7 +697,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -565,7 +706,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -596,7 +737,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -607,7 +748,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -618,6 +759,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -638,7 +824,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -649,7 +835,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -687,6 +892,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -718,6 +941,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -747,7 +988,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -756,7 +997,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -767,7 +1008,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -836,6 +1122,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -894,7 +1189,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -903,7 +1198,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -923,7 +1218,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -972,7 +1267,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -981,7 +1287,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -990,7 +1305,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1001,6 +1316,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1061,7 +1385,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1070,7 +1394,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1081,7 +1405,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1090,7 +1414,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1101,7 +1425,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Fake.FluentMigrator/Fake.FluentMigrator.fsproj b/src/legacy/Fake.FluentMigrator/Fake.FluentMigrator.fsproj index 66d5630797a..f4f94522eba 100644 --- a/src/legacy/Fake.FluentMigrator/Fake.FluentMigrator.fsproj +++ b/src/legacy/Fake.FluentMigrator/Fake.FluentMigrator.fsproj @@ -41,7 +41,7 @@ - + <__paket__FluentMigrator_Runner_SqlServerCe_targets>netstandard2.0\FluentMigrator.Runner.SqlServerCe @@ -82,7 +82,7 @@ - + ..\..\..\packages\FluentMigrator\lib\net45\FluentMigrator.dll @@ -111,7 +111,7 @@ - + ..\..\..\packages\FluentMigrator.Abstractions\lib\net45\FluentMigrator.Abstractions.dll @@ -140,7 +140,7 @@ - + ..\..\..\packages\FluentMigrator.Extensions.SqlAnywhere\lib\net45\FluentMigrator.Extensions.SqlAnywhere.dll @@ -169,7 +169,7 @@ - + ..\..\..\packages\FluentMigrator.Extensions.SqlServer\lib\net45\FluentMigrator.Extensions.SqlServer.dll @@ -201,7 +201,7 @@ - + True @@ -233,7 +233,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Core\lib\net45\FluentMigrator.Runner.Core.dll @@ -262,7 +262,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Db2\lib\net45\FluentMigrator.Runner.Db2.dll @@ -291,7 +291,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Firebird\lib\net45\FluentMigrator.Runner.Firebird.dll @@ -320,7 +320,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Hana\lib\net45\FluentMigrator.Runner.Hana.dll @@ -349,7 +349,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Jet\lib\net45\FluentMigrator.Runner.Jet.dll @@ -369,7 +369,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.MySql\lib\net45\FluentMigrator.Runner.MySql.dll @@ -398,7 +398,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Oracle\lib\net45\FluentMigrator.Runner.Oracle.dll @@ -427,7 +427,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Postgres\lib\net45\FluentMigrator.Runner.Postgres.dll @@ -456,7 +456,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.Redshift\lib\net45\FluentMigrator.Runner.Redshift.dll @@ -485,7 +485,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.SqlAnywhere\lib\net45\FluentMigrator.Runner.SqlAnywhere.dll @@ -514,7 +514,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.SQLite\lib\net45\FluentMigrator.Runner.SQLite.dll @@ -543,7 +543,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.SqlServer\lib\net45\FluentMigrator.Runner.SqlServer.dll @@ -572,7 +572,7 @@ - + ..\..\..\packages\FluentMigrator.Runner.SqlServerCe\lib\net45\FluentMigrator.Runner.SqlServerCe.dll @@ -597,7 +597,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -617,7 +617,7 @@ - + ..\..\..\packages\Microsoft.SqlServer.Compact\lib\net40\System.Data.SqlServerCe.dll @@ -628,7 +628,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -659,7 +659,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -668,7 +668,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -679,6 +679,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -690,7 +699,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -699,7 +708,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -752,7 +761,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -763,7 +772,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -794,6 +803,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -805,7 +823,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -816,7 +834,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -827,6 +845,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -856,7 +883,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -865,9 +906,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -898,7 +967,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -907,7 +994,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -918,6 +1005,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -986,7 +1091,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1056,7 +1161,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1087,7 +1192,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1096,7 +1210,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1107,7 +1221,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1118,7 +1259,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1127,7 +1268,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1138,7 +1279,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1147,7 +1288,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1178,7 +1319,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1189,7 +1330,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1200,6 +1341,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1220,7 +1406,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1231,7 +1417,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1269,6 +1474,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1300,6 +1523,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1329,7 +1570,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1338,7 +1579,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1369,27 +1610,52 @@ - + - - ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll True True - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + - - ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll False True - - - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1458,6 +1724,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1516,7 +1791,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1525,7 +1800,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1545,7 +1820,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1593,26 +1868,6 @@ - - - - - ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll - False - True - - - - @@ -1632,7 +1887,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -1692,7 +1947,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1701,7 +1967,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1710,7 +1985,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1721,6 +1996,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1781,7 +2065,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1790,7 +2074,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1801,7 +2085,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1810,7 +2094,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1821,7 +2105,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Fake.Gallio/Fake.Gallio.fsproj b/src/legacy/Fake.Gallio/Fake.Gallio.fsproj index 9722a67a909..80a56a2d3c7 100644 --- a/src/legacy/Fake.Gallio/Fake.Gallio.fsproj +++ b/src/legacy/Fake.Gallio/Fake.Gallio.fsproj @@ -77,7 +77,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -97,7 +97,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -108,7 +108,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -117,7 +117,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -128,6 +128,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -139,7 +148,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -148,7 +157,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -181,7 +190,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -192,7 +201,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -223,6 +232,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -234,7 +252,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -245,7 +263,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -256,6 +274,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -285,7 +312,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -294,9 +335,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -327,7 +396,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -336,7 +423,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -347,6 +434,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -415,7 +520,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -485,7 +590,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -516,7 +621,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -525,7 +639,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -536,7 +650,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -547,7 +688,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -556,7 +697,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -567,7 +708,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -576,7 +717,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -607,7 +748,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -618,7 +759,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -629,6 +770,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -649,7 +835,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -660,7 +846,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -698,6 +903,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -729,6 +952,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -758,7 +999,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -767,7 +1008,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -778,7 +1019,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -847,6 +1133,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -905,7 +1200,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -914,7 +1209,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -934,7 +1229,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -983,7 +1278,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -992,7 +1298,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1001,7 +1316,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1012,6 +1327,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1072,7 +1396,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1081,7 +1405,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1092,7 +1416,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1101,7 +1425,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1112,7 +1436,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Fake.IIS/Fake.IIS.fsproj b/src/legacy/Fake.IIS/Fake.IIS.fsproj index efa27e26368..1d3c3689b81 100644 --- a/src/legacy/Fake.IIS/Fake.IIS.fsproj +++ b/src/legacy/Fake.IIS/Fake.IIS.fsproj @@ -72,7 +72,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -92,7 +92,7 @@ - + ..\..\..\packages\Microsoft.Web.Administration\lib\net20\Microsoft.Web.Administration.dll @@ -103,7 +103,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -114,7 +114,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -123,7 +123,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -134,6 +134,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -145,7 +154,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -154,7 +163,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -187,7 +196,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -198,7 +207,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -229,6 +238,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -240,7 +258,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -251,7 +269,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -262,6 +280,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -291,7 +318,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -300,9 +341,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -333,7 +402,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -342,7 +429,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -353,6 +440,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -421,7 +526,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -491,7 +596,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -522,7 +627,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -531,7 +645,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -542,7 +656,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -553,7 +694,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -562,7 +703,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -573,7 +714,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -582,7 +723,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -613,7 +754,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -624,7 +765,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -635,6 +776,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -655,7 +841,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -666,7 +852,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -704,6 +909,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -735,6 +958,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -764,7 +1005,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -773,7 +1014,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -784,7 +1025,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -853,6 +1139,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -911,7 +1206,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -920,7 +1215,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -940,7 +1235,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -989,7 +1284,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -998,7 +1304,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1007,7 +1322,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1018,6 +1333,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1078,7 +1402,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1087,7 +1411,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1098,7 +1422,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1107,7 +1431,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1118,7 +1442,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Fake.SQL/Fake.SQL.fsproj b/src/legacy/Fake.SQL/Fake.SQL.fsproj index 17241e8f933..172119d3e4c 100644 --- a/src/legacy/Fake.SQL/Fake.SQL.fsproj +++ b/src/legacy/Fake.SQL/Fake.SQL.fsproj @@ -90,7 +90,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -110,7 +110,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -121,7 +121,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -130,7 +130,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -141,6 +141,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -152,7 +161,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -161,7 +170,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -194,7 +203,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -205,7 +214,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -236,6 +245,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -247,7 +265,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -258,7 +276,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -269,6 +287,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -298,7 +325,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -307,9 +348,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -340,7 +409,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -349,7 +436,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -360,6 +447,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -428,7 +533,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -498,7 +603,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -529,7 +634,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -538,7 +652,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -549,7 +663,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -560,7 +701,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -569,7 +710,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -580,7 +721,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -589,7 +730,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -620,7 +761,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -631,7 +772,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -642,6 +783,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -662,7 +848,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -673,7 +859,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -711,6 +916,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -742,6 +965,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -771,7 +1012,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -780,7 +1021,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -791,7 +1032,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -860,6 +1146,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -918,7 +1213,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -927,7 +1222,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -947,7 +1242,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -996,7 +1291,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1005,7 +1311,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1014,7 +1329,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1025,6 +1340,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1085,7 +1409,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1094,7 +1418,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1105,7 +1429,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1114,7 +1438,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1125,7 +1449,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/FakeLib/FakeLib.fsproj b/src/legacy/FakeLib/FakeLib.fsproj index d2d8375a7a5..e8053fd06c3 100644 --- a/src/legacy/FakeLib/FakeLib.fsproj +++ b/src/legacy/FakeLib/FakeLib.fsproj @@ -577,7 +577,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -606,7 +606,7 @@ - + ..\..\..\packages\Chessie\lib\net40\Chessie.dll @@ -626,7 +626,7 @@ - + ..\..\..\packages\FParsec\lib\net40-client\FParsec.dll @@ -670,7 +670,7 @@ - + True @@ -699,7 +699,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -719,7 +719,7 @@ - + ..\..\..\packages\HashLib\lib\net40\HashLib.dll @@ -762,6 +762,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -792,7 +810,7 @@ - + ..\..\..\packages\Microsoft.DiaSymReader\lib\net20\Microsoft.DiaSymReader.dll @@ -812,7 +830,7 @@ - + ..\..\..\packages\Microsoft.DiaSymReader.PortablePdb\lib\net45\Microsoft.DiaSymReader.PortablePdb.dll @@ -832,7 +850,7 @@ - + ..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -843,7 +861,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -898,7 +916,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -948,7 +966,7 @@ - + ..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -986,7 +1004,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -1022,7 +1040,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -1042,7 +1060,7 @@ - + ..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -1053,7 +1071,7 @@ - + ..\..\..\packages\Octokit\lib\net45\Octokit.dll @@ -1073,7 +1091,7 @@ - + ..\..\..\packages\Paket.Core\lib\net45\Paket.Core.dll @@ -1122,7 +1140,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -1131,7 +1149,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -1142,6 +1160,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -1153,7 +1180,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -1162,7 +1189,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -1182,7 +1209,7 @@ - + ..\..\..\packages\System.Collections.Immutable\lib\netstandard2.0\System.Collections.Immutable.dll @@ -1193,7 +1220,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -1202,7 +1229,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -1333,7 +1360,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -1344,7 +1371,7 @@ - + ..\..\..\packages\System.Diagnostics.Process\ref\netstandard1.4\System.Diagnostics.Process.dll @@ -1355,7 +1382,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -1366,7 +1393,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -1426,6 +1453,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -1437,7 +1473,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -1448,7 +1484,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -1459,6 +1495,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -1488,7 +1533,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -1497,9 +1556,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -1519,7 +1606,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -1550,7 +1637,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -1559,7 +1664,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -1570,6 +1675,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -1638,7 +1761,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -1708,7 +1831,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1750,7 +1873,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1759,7 +1891,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1770,7 +1902,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1781,7 +1940,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1790,7 +1949,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1801,7 +1960,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1810,7 +1969,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1841,7 +2000,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1852,7 +2011,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard1.1\System.Reflection.Metadata.dll @@ -1861,7 +2020,7 @@ - + ..\..\..\packages\System.Reflection.Metadata\lib\netstandard2.0\System.Reflection.Metadata.dll @@ -1872,7 +2031,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1883,6 +2042,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1903,7 +2107,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1914,7 +2118,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1952,6 +2175,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1983,6 +2224,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -2041,7 +2300,7 @@ - + ..\..\..\packages\System.Runtime.Loader\lib\netstandard1.5\System.Runtime.Loader.dll @@ -2050,7 +2309,7 @@ - + ..\..\..\packages\System.Runtime.Loader\ref\netstandard1.5\System.Runtime.Loader.dll @@ -2061,7 +2320,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -2070,7 +2329,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -2150,27 +2409,52 @@ - + - - ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll True True - + - - ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll False True - - - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -2239,6 +2523,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -2297,7 +2590,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2306,7 +2599,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -2346,7 +2639,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -2374,26 +2667,6 @@ - - - - - ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll - False - True - - - - @@ -2413,7 +2686,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -2453,7 +2726,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -2462,7 +2746,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -2471,7 +2764,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -2482,6 +2775,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -2553,7 +2855,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -2562,7 +2864,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -2573,7 +2875,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -2582,7 +2884,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -2593,7 +2895,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -2613,7 +2915,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\net47\System.ValueTuple.dll @@ -2631,7 +2933,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll @@ -2651,7 +2953,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2660,7 +2962,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -2691,7 +2993,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -2700,7 +3002,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -2711,4 +3013,4 @@ - + \ No newline at end of file diff --git a/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj b/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj index 31bc7d3762c..212f04c2653 100644 --- a/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj +++ b/src/legacy/FsCheck.Fake/FsCheck.Fake.fsproj @@ -56,7 +56,7 @@ --> - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -81,7 +81,7 @@ - + ..\..\..\packages\FsCheck\lib\net452\FsCheck.dll @@ -128,7 +128,7 @@ - + ..\..\..\packages\FsCheck.Xunit\lib\net452\FsCheck.Xunit.dll @@ -148,7 +148,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -168,7 +168,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -208,7 +208,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -217,7 +217,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -228,6 +228,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -239,7 +248,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -248,7 +257,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -281,7 +290,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -292,7 +301,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -323,6 +332,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -334,7 +352,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -345,7 +363,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -356,6 +374,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -385,7 +412,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -394,9 +435,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -416,7 +485,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -447,7 +516,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -456,7 +543,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -467,6 +554,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -535,7 +640,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -605,7 +710,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -647,7 +752,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -656,7 +770,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -667,7 +781,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -678,7 +819,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -687,7 +828,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -698,7 +839,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -707,7 +848,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -738,7 +879,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -749,7 +890,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -760,6 +901,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -780,7 +966,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -791,7 +977,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -829,6 +1034,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -860,6 +1083,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -918,7 +1159,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -927,7 +1168,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -938,7 +1179,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1007,6 +1293,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1065,7 +1360,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1074,7 +1369,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1094,7 +1389,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1143,7 +1438,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1152,7 +1458,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1161,7 +1476,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1172,6 +1487,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1243,7 +1567,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1252,7 +1576,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1263,7 +1587,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1272,7 +1596,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1283,7 +1607,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1303,7 +1627,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\net47\System.ValueTuple.dll @@ -1321,7 +1645,7 @@ - + ..\..\..\packages\System.ValueTuple\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll @@ -1341,7 +1665,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1350,7 +1674,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1381,7 +1705,16 @@ - + + + + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll + True + True + + + + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -1392,7 +1725,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1403,7 +1736,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1414,7 +1747,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll @@ -1423,6 +1756,15 @@ + + + + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll + True + True + + + diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj index a4cb1bdd5e7..31e19c729b3 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/CSharpApp.csproj @@ -60,7 +60,7 @@ --> - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -103,7 +103,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -137,7 +137,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -148,7 +148,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -159,7 +159,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -194,7 +194,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -244,7 +244,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -255,7 +255,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -266,7 +266,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -275,7 +275,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -286,6 +286,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -297,7 +306,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -306,7 +315,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -339,7 +348,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -350,7 +359,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -381,6 +390,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -392,7 +410,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -403,7 +421,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -414,6 +432,18 @@ + + + + True + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -443,7 +473,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -452,9 +496,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -485,7 +557,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -494,7 +584,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -505,6 +595,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -545,13 +653,15 @@ - + True + + @@ -592,7 +702,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -623,7 +733,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -632,7 +751,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -643,7 +762,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -654,7 +800,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -663,7 +809,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -674,7 +820,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -683,7 +829,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -714,7 +860,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -725,7 +871,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -736,6 +882,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -756,7 +947,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -767,7 +958,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -805,6 +1015,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -836,6 +1064,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -865,7 +1111,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -874,7 +1120,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -885,7 +1131,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -954,6 +1245,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1012,7 +1312,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1021,7 +1321,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1041,7 +1341,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1090,7 +1390,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1099,7 +1410,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1108,7 +1428,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1119,6 +1439,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1179,7 +1508,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1188,7 +1517,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1199,7 +1528,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1208,7 +1537,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1219,7 +1548,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj index 3e355a6cb50..a3bcbb52ed5 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib.fsproj @@ -145,7 +145,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -222,7 +222,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -233,7 +233,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -244,7 +244,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -279,7 +279,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -329,7 +329,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -340,7 +340,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -360,7 +360,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -371,6 +371,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -382,7 +391,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -391,7 +400,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -424,7 +433,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -435,7 +444,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -466,6 +475,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -477,7 +495,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -488,7 +506,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -499,6 +517,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -528,7 +555,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -537,9 +578,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -570,7 +639,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -579,7 +666,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -590,6 +677,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -658,7 +763,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -728,7 +833,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -759,7 +864,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -768,7 +882,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -779,7 +893,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -790,7 +931,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -799,7 +940,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -810,7 +951,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -819,7 +960,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -850,7 +991,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -861,7 +1002,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -872,6 +1013,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -892,7 +1078,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -903,7 +1089,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -941,6 +1146,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -972,6 +1195,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1001,7 +1242,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1010,7 +1251,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1021,7 +1262,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1090,6 +1376,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1148,7 +1443,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1157,7 +1452,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1177,7 +1472,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1226,7 +1521,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1235,7 +1541,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1244,7 +1559,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1255,6 +1570,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1315,7 +1639,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1324,7 +1648,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1335,7 +1659,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1344,7 +1668,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1355,7 +1679,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj index 6351af6b431..6abbce5a9d8 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.csproj @@ -144,7 +144,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -187,7 +187,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -221,7 +221,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -232,7 +232,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -278,7 +278,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -328,7 +328,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +370,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -423,7 +432,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -434,7 +443,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -465,6 +474,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -476,7 +494,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -487,7 +505,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -498,6 +516,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -527,7 +554,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -536,9 +577,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -569,7 +638,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -578,7 +665,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -589,6 +676,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -657,7 +762,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -727,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -758,7 +863,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -767,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -778,7 +892,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -789,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -798,7 +939,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -809,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -818,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -849,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -860,7 +1001,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -871,6 +1012,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -891,7 +1077,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -902,7 +1088,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -940,6 +1145,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -971,6 +1194,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1000,7 +1241,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1009,7 +1250,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1020,7 +1261,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1089,6 +1375,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1147,7 +1442,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1156,7 +1451,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1176,7 +1471,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1225,7 +1520,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1234,7 +1540,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1243,7 +1558,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1254,6 +1569,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1314,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1323,7 +1647,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1334,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1343,7 +1667,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1354,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj index 6351af6b431..6abbce5a9d8 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib2.fsproj @@ -144,7 +144,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -187,7 +187,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -221,7 +221,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -232,7 +232,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -278,7 +278,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -328,7 +328,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +370,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -423,7 +432,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -434,7 +443,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -465,6 +474,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -476,7 +494,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -487,7 +505,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -498,6 +516,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -527,7 +554,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -536,9 +577,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -569,7 +638,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -578,7 +665,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -589,6 +676,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -657,7 +762,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -727,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -758,7 +863,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -767,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -778,7 +892,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -789,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -798,7 +939,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -809,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -818,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -849,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -860,7 +1001,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -871,6 +1012,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -891,7 +1077,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -902,7 +1088,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -940,6 +1145,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -971,6 +1194,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1000,7 +1241,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1009,7 +1250,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1020,7 +1261,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1089,6 +1375,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1147,7 +1442,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1156,7 +1451,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1176,7 +1471,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1225,7 +1520,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1234,7 +1540,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1243,7 +1558,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1254,6 +1569,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1314,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1323,7 +1647,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1334,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1343,7 +1667,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1354,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj index 87a401002c9..317e5fc7591 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.csproj @@ -144,7 +144,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -187,7 +187,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -221,7 +221,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -232,7 +232,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -278,7 +278,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -328,7 +328,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +370,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -423,7 +432,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -434,7 +443,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -465,6 +474,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -476,7 +494,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -487,7 +505,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -498,6 +516,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -527,7 +554,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -536,9 +577,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -569,7 +638,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -578,7 +665,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -589,6 +676,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -657,7 +762,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -727,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -758,7 +863,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -767,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -778,7 +892,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -789,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -798,7 +939,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -809,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -818,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -849,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -860,7 +1001,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -871,6 +1012,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -891,7 +1077,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -902,7 +1088,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -940,6 +1145,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -971,6 +1194,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1000,7 +1241,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1009,7 +1250,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1020,7 +1261,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1089,6 +1375,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1147,7 +1442,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1156,7 +1451,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1176,7 +1471,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1225,7 +1520,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1234,7 +1540,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1243,7 +1558,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1254,6 +1569,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1314,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1323,7 +1647,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1334,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1343,7 +1667,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1354,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj index 87a401002c9..317e5fc7591 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib3.fsproj @@ -144,7 +144,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -187,7 +187,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -221,7 +221,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -232,7 +232,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -278,7 +278,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -328,7 +328,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +370,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -423,7 +432,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -434,7 +443,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -465,6 +474,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -476,7 +494,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -487,7 +505,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -498,6 +516,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -527,7 +554,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -536,9 +577,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -569,7 +638,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -578,7 +665,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -589,6 +676,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -657,7 +762,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -727,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -758,7 +863,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -767,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -778,7 +892,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -789,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -798,7 +939,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -809,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -818,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -849,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -860,7 +1001,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -871,6 +1012,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -891,7 +1077,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -902,7 +1088,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -940,6 +1145,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -971,6 +1194,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1000,7 +1241,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1009,7 +1250,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1020,7 +1261,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1089,6 +1375,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1147,7 +1442,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1156,7 +1451,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1176,7 +1471,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1225,7 +1520,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1234,7 +1540,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1243,7 +1558,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1254,6 +1569,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1314,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1323,7 +1647,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1334,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1343,7 +1667,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1354,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj index 6351af6b431..6abbce5a9d8 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib4.fsproj @@ -144,7 +144,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -187,7 +187,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -221,7 +221,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -232,7 +232,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -243,7 +243,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -278,7 +278,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -328,7 +328,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -339,7 +339,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -350,7 +350,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +359,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +370,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +390,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +399,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -423,7 +432,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -434,7 +443,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -465,6 +474,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -476,7 +494,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -487,7 +505,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -498,6 +516,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -527,7 +554,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -536,9 +577,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -569,7 +638,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -578,7 +665,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -589,6 +676,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -657,7 +762,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -727,7 +832,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -758,7 +863,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -767,7 +881,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -778,7 +892,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -789,7 +930,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -798,7 +939,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -809,7 +950,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -818,7 +959,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -849,7 +990,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -860,7 +1001,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -871,6 +1012,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -891,7 +1077,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -902,7 +1088,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -940,6 +1145,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -971,6 +1194,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1000,7 +1241,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1009,7 +1250,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1020,7 +1261,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1089,6 +1375,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1147,7 +1442,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1156,7 +1451,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1176,7 +1471,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1225,7 +1520,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1234,7 +1540,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1243,7 +1558,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1254,6 +1569,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1314,7 +1638,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1323,7 +1647,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1334,7 +1658,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1343,7 +1667,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1354,7 +1678,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj index 087e01bf462..6000404ccd2 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib5.fsproj @@ -145,7 +145,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -222,7 +222,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -233,7 +233,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -244,7 +244,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -279,7 +279,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -329,7 +329,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -340,7 +340,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -360,7 +360,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -371,6 +371,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -382,7 +391,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -391,7 +400,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -424,7 +433,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -435,7 +444,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -466,6 +475,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -477,7 +495,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -488,7 +506,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -499,6 +517,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -528,7 +555,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -537,9 +578,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -570,7 +639,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -579,7 +666,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -590,6 +677,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -658,7 +763,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -728,7 +833,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -759,7 +864,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -768,7 +882,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -779,7 +893,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -790,7 +931,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -799,7 +940,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -810,7 +951,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -819,7 +960,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -850,7 +991,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -861,7 +1002,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -872,6 +1013,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -892,7 +1078,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -903,7 +1089,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -941,6 +1146,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -972,6 +1195,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1001,7 +1242,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1010,7 +1251,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1021,7 +1262,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1090,6 +1376,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1148,7 +1443,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1157,7 +1452,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1177,7 +1472,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1226,7 +1521,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1235,7 +1541,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1244,7 +1559,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1255,6 +1570,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1315,7 +1639,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1324,7 +1648,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1335,7 +1659,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1344,7 +1668,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1355,7 +1679,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj index 087e01bf462..6000404ccd2 100644 --- a/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj +++ b/src/legacy/Test.FAKECore/ProjectTestFiles/FakeLib6.fsproj @@ -145,7 +145,7 @@ - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -188,7 +188,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -222,7 +222,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -233,7 +233,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -244,7 +244,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -279,7 +279,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -329,7 +329,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -340,7 +340,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -351,7 +351,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -360,7 +360,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -371,6 +371,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -382,7 +391,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -391,7 +400,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -424,7 +433,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -435,7 +444,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -466,6 +475,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -477,7 +495,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -488,7 +506,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -499,6 +517,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -528,7 +555,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -537,9 +578,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -570,7 +639,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -579,7 +666,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -590,6 +677,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -658,7 +763,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -728,7 +833,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -759,7 +864,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -768,7 +882,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -779,7 +893,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -790,7 +931,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -799,7 +940,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -810,7 +951,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -819,7 +960,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -850,7 +991,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -861,7 +1002,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -872,6 +1013,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -892,7 +1078,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -903,7 +1089,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -941,6 +1146,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -972,6 +1195,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1001,7 +1242,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1010,7 +1251,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1021,7 +1262,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1090,6 +1376,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1148,7 +1443,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1157,7 +1452,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1177,7 +1472,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1226,7 +1521,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1235,7 +1541,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1244,7 +1559,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1255,6 +1570,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1315,7 +1639,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1324,7 +1648,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1335,7 +1659,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1344,7 +1668,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1355,7 +1679,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/Test.FAKECore.csproj b/src/legacy/Test.FAKECore/Test.FAKECore.csproj index 22a2ca939f9..9422b540df3 100644 --- a/src/legacy/Test.FAKECore/Test.FAKECore.csproj +++ b/src/legacy/Test.FAKECore/Test.FAKECore.csproj @@ -415,7 +415,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -458,7 +458,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -492,7 +492,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -503,7 +503,7 @@ - + ..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -514,7 +514,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -549,7 +549,7 @@ - + ..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -599,7 +599,7 @@ - + ..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -610,7 +610,7 @@ - + ..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -621,7 +621,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -630,7 +630,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -641,6 +641,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -652,7 +661,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -661,7 +670,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -694,7 +703,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -705,7 +714,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -736,6 +745,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -747,7 +765,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -758,7 +776,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -769,6 +787,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -798,7 +828,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -807,9 +851,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -840,7 +912,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -849,7 +939,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -860,6 +950,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -899,6 +1007,15 @@ + + + + + True + + + + @@ -928,11 +1045,8 @@ - + - - True - ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -1001,7 +1115,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1032,7 +1146,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1041,7 +1164,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1052,7 +1175,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1063,7 +1213,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1072,7 +1222,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1083,7 +1233,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1092,7 +1242,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1123,7 +1273,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1134,7 +1284,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1145,6 +1295,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1165,7 +1360,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1176,7 +1371,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1214,6 +1428,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1245,6 +1477,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1274,7 +1524,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1283,7 +1533,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1294,7 +1544,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1363,6 +1658,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1421,7 +1725,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1430,7 +1734,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1450,7 +1754,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1499,7 +1803,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1508,7 +1823,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1517,7 +1841,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1528,6 +1852,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1588,7 +1921,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1597,7 +1930,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1608,7 +1941,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1617,7 +1950,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1628,7 +1961,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj b/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj index d864f782d84..4a96ed022b6 100644 --- a/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj +++ b/src/legacy/Test.FAKECore/TestData/fake_no_template.csproj @@ -51,7 +51,7 @@ --> - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -94,7 +94,7 @@ - + ..\..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -128,7 +128,7 @@ - + ..\..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -139,7 +139,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Xdt\lib\net40\Microsoft.Web.XmlTransform.dll @@ -150,7 +150,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -185,7 +185,7 @@ - + ..\..\..\..\packages\Mono.Cecil\lib\net40\Mono.Cecil.dll @@ -235,7 +235,7 @@ - + ..\..\..\..\packages\Mono.Web.Xdt\lib\Net40\Microsoft.Web.XmlTransform.dll @@ -246,7 +246,7 @@ - + ..\..\..\..\packages\Nuget.Core\lib\net40-Client\NuGet.Core.dll @@ -257,7 +257,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -266,7 +266,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -277,6 +277,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -288,7 +297,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -297,7 +306,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -330,7 +339,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -341,7 +350,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -372,6 +381,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -383,7 +401,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -394,7 +412,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -405,6 +423,18 @@ + + + + True + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -434,7 +464,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -443,9 +487,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -476,7 +548,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -485,7 +575,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -496,6 +586,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -535,6 +643,15 @@ + + + + + True + + + + @@ -564,11 +681,8 @@ - + - - True - ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -637,7 +751,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -668,7 +782,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -677,7 +800,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -688,7 +811,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -699,7 +849,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -708,7 +858,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -719,7 +869,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -728,7 +878,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -759,7 +909,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -770,7 +920,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -781,6 +931,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -801,7 +996,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -812,7 +1007,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -850,6 +1064,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -881,6 +1113,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -910,7 +1160,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -919,7 +1169,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -930,7 +1180,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -999,6 +1294,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1057,7 +1361,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1066,7 +1370,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1086,7 +1390,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1135,7 +1439,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1144,7 +1459,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1153,7 +1477,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1164,6 +1488,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1224,7 +1557,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1233,7 +1566,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1244,7 +1577,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1253,7 +1586,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1264,7 +1597,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj b/src/legacy/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj index 1e5450f99ba..9cbc4d9bd86 100644 --- a/src/legacy/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj +++ b/src/legacy/Test.Fake.Deploy.Web.File/Test.Fake.Deploy.Web.File.fsproj @@ -66,14 +66,14 @@ --> - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -93,7 +93,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -133,7 +133,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -142,7 +142,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -153,6 +153,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -164,7 +173,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -173,7 +182,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -206,7 +215,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -217,7 +226,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -248,6 +257,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -259,7 +277,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -270,7 +288,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -281,6 +299,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -310,7 +337,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -319,9 +360,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -341,7 +410,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -372,7 +441,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -381,7 +468,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -392,6 +479,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -460,7 +565,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -530,7 +635,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -572,7 +677,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -581,7 +695,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -592,7 +706,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -603,7 +744,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -612,7 +753,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -623,7 +764,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -632,7 +773,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -663,7 +804,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -674,7 +815,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -685,6 +826,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -705,7 +891,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -716,7 +902,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -754,6 +959,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -785,6 +1008,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -843,7 +1084,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -852,7 +1093,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -863,7 +1104,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -932,6 +1218,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -990,7 +1285,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -999,7 +1294,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1019,7 +1314,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1068,7 +1363,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1077,7 +1383,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1086,7 +1401,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1097,6 +1412,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1168,7 +1492,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1177,7 +1501,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1188,7 +1512,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1197,7 +1521,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1208,7 +1532,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1219,7 +1543,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1228,7 +1552,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1259,7 +1583,16 @@ - + + + + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll + True + True + + + + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -1270,7 +1603,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1281,7 +1614,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1292,7 +1625,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll @@ -1301,6 +1634,15 @@ + + + + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll + True + True + + + diff --git a/src/legacy/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj b/src/legacy/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj index 0f84897901f..057650af53f 100644 --- a/src/legacy/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj +++ b/src/legacy/Test.Fake.Deploy.Web/Test.Fake.Deploy.Web.fsproj @@ -83,14 +83,14 @@ --> - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library - + ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll @@ -101,7 +101,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -121,7 +121,7 @@ - + ..\..\..\packages\Microsoft.AspNet.Razor\lib\net40\System.Web.Razor.dll @@ -164,6 +164,24 @@ + + + + ..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -194,7 +212,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -205,7 +223,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -216,7 +234,7 @@ - + ..\..\..\packages\Nancy.Testing\lib\net40\Nancy.Testing.dll @@ -227,7 +245,7 @@ - + ..\..\..\packages\Nancy.Viewengines.Razor\lib\net40\Nancy.ViewEngines.Razor.dll @@ -265,7 +283,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -301,7 +319,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -350,7 +368,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -359,7 +377,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -370,6 +388,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -381,7 +408,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -390,7 +417,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -401,7 +428,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -410,7 +437,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -541,7 +568,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -552,7 +579,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -612,6 +639,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -623,7 +659,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -634,7 +670,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -645,6 +681,15 @@ + + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -674,7 +719,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -683,9 +742,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -705,7 +792,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -736,7 +823,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -745,7 +850,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -756,6 +861,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -824,7 +947,7 @@ - + ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -894,7 +1017,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -936,7 +1059,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -945,7 +1077,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -956,7 +1088,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -967,7 +1126,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -976,7 +1135,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -987,7 +1146,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -996,7 +1155,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1027,7 +1186,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1038,7 +1197,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1049,6 +1208,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1069,7 +1273,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1080,7 +1284,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1118,6 +1341,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1149,6 +1390,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1207,7 +1466,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1216,7 +1475,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1276,7 +1535,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1345,6 +1649,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1403,7 +1716,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1412,7 +1725,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1432,7 +1745,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1481,7 +1794,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1490,7 +1814,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1499,7 +1832,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1510,6 +1843,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1581,7 +1923,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1590,7 +1932,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1601,7 +1943,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1610,7 +1952,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1621,7 +1963,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1632,7 +1974,7 @@ - + ..\..\..\packages\System.Web.Razor.Unofficial\lib\net40\System.Web.Razor.Unofficial.dll @@ -1643,7 +1985,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1652,7 +1994,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1683,7 +2025,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -1692,7 +2034,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll @@ -1703,7 +2045,16 @@ - + + + + ..\..\..\packages\xunit.abstractions\lib\net35\xunit.abstractions.dll + True + True + + + + ..\..\..\packages\xunit.abstractions\lib\netstandard1.0\xunit.abstractions.dll @@ -1714,7 +2065,7 @@ - + ..\..\..\packages\xunit.assert\lib\netstandard1.1\xunit.assert.dll @@ -1725,7 +2076,7 @@ - + ..\..\..\packages\xunit.extensibility.core\lib\netstandard1.1\xunit.core.dll @@ -1736,7 +2087,7 @@ - + ..\..\..\packages\xunit.extensibility.execution\lib\net452\xunit.execution.desktop.dll @@ -1745,6 +2096,15 @@ + + + + ..\..\..\packages\xunit.extensibility.execution\lib\netstandard1.1\xunit.execution.dotnet.dll + True + True + + + diff --git a/src/legacy/Test.Fake.Deploy/Test.Fake.Deploy.csproj b/src/legacy/Test.Fake.Deploy/Test.Fake.Deploy.csproj index e80e0a9a584..801484115da 100644 --- a/src/legacy/Test.Fake.Deploy/Test.Fake.Deploy.csproj +++ b/src/legacy/Test.Fake.Deploy/Test.Fake.Deploy.csproj @@ -129,7 +129,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -143,7 +143,7 @@ --> - + ..\..\..\packages\CsQuery\lib\net40\CsQuery.dll @@ -154,7 +154,7 @@ - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -197,7 +197,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -231,7 +231,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -251,9 +251,18 @@ + + + + ..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -264,7 +273,7 @@ - + ..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -275,7 +284,7 @@ - + ..\..\..\packages\Nancy.Testing\lib\net40\Nancy.Testing.dll @@ -313,7 +322,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -349,7 +358,7 @@ - + ..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -378,7 +387,7 @@ - + ..\..\..\packages\SSH.NET\lib\net40\Renci.SshNet.dll @@ -528,7 +537,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -537,7 +546,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -548,6 +557,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -559,7 +577,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -568,7 +586,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -579,7 +597,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -588,7 +606,7 @@ - + ..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -719,7 +737,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -730,7 +748,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -741,7 +759,7 @@ - + ..\..\..\packages\System.Diagnostics.TraceSource\ref\netstandard1.3\System.Diagnostics.TraceSource.dll @@ -801,6 +819,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -812,7 +839,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -823,7 +850,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -834,6 +861,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -863,7 +902,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -872,9 +925,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -894,7 +975,7 @@ - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -925,7 +1006,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -934,7 +1033,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -945,6 +1044,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -984,6 +1101,15 @@ + + + + + True + + + + @@ -1013,11 +1139,8 @@ - + - - True - ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -1097,7 +1220,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1139,7 +1262,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1148,7 +1280,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1159,7 +1291,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1170,7 +1329,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1179,7 +1338,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1190,7 +1349,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1199,7 +1358,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1230,7 +1389,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1241,7 +1400,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1252,6 +1411,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1272,7 +1476,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1283,7 +1487,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1321,6 +1544,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1352,6 +1593,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1410,7 +1669,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1419,7 +1678,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1479,27 +1738,52 @@ - + - - ..\..\..\packages\System.Security.Claims\lib\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll True True - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + - - ..\..\..\packages\System.Security.Claims\ref\netstandard1.3\System.Security.Claims.dll + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll False True - - - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1568,6 +1852,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1626,7 +1919,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1635,7 +1928,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1655,7 +1948,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1683,26 +1976,6 @@ - - - - - ..\..\..\packages\System.Security.Principal\lib\netstandard1.0\System.Security.Principal.dll - True - True - - - - - - - ..\..\..\packages\System.Security.Principal\ref\netstandard1.0\System.Security.Principal.dll - False - True - - - - @@ -1722,7 +1995,7 @@ - + ..\..\..\packages\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll @@ -1762,7 +2035,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1771,7 +2055,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1780,7 +2073,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1791,6 +2084,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1862,7 +2164,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1871,7 +2173,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1882,7 +2184,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1891,7 +2193,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1902,7 +2204,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1913,7 +2215,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1922,7 +2224,7 @@ - + ..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1953,7 +2255,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -1962,7 +2264,7 @@ - + ..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/legacy/Test.Git/Test.Git.csproj b/src/legacy/Test.Git/Test.Git.csproj index bff8fc0d02f..6af1a7f6c72 100644 --- a/src/legacy/Test.Git/Test.Git.csproj +++ b/src/legacy/Test.Git/Test.Git.csproj @@ -84,7 +84,7 @@ --> - + ..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -127,7 +127,7 @@ - + ..\..\..\packages\Machine.Specifications\lib\net45\Machine.Specifications.dll @@ -161,7 +161,7 @@ - + ..\..\..\packages\Machine.Specifications.Should\lib\net45\Machine.Specifications.Should.dll @@ -172,7 +172,7 @@ - + ..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -183,7 +183,7 @@ - + ..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -192,7 +192,7 @@ - + ..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -203,6 +203,15 @@ + + + + ..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -214,7 +223,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -223,7 +232,7 @@ - + ..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -256,7 +265,7 @@ - + ..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -267,7 +276,7 @@ - + ..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -298,6 +307,15 @@ + + + + ..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -309,7 +327,7 @@ - + ..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -320,7 +338,7 @@ - + ..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -331,6 +349,18 @@ + + + + True + + + ..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -360,7 +390,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -369,9 +413,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -402,7 +474,25 @@ - + + + + ..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -411,7 +501,7 @@ - + ..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -422,6 +512,24 @@ + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -461,6 +569,15 @@ + + + + + True + + + + @@ -490,11 +607,8 @@ - + - - True - ..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -563,7 +677,7 @@ - + ..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -594,7 +708,16 @@ - + + + + ..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -603,7 +726,7 @@ - + ..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -614,7 +737,34 @@ - + + + + ..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -625,7 +775,7 @@ - + ..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -634,7 +784,7 @@ - + ..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -645,7 +795,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -654,7 +804,7 @@ - + ..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -685,7 +835,7 @@ - + ..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -696,7 +846,7 @@ - + ..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -707,6 +857,51 @@ + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -727,7 +922,7 @@ - + ..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -738,7 +933,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -776,6 +990,24 @@ + + + + ..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -807,6 +1039,24 @@ + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -836,7 +1086,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -845,7 +1095,7 @@ - + ..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -856,7 +1106,52 @@ - + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -925,6 +1220,15 @@ + + + + ..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -983,7 +1287,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -992,7 +1296,7 @@ - + ..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1012,7 +1316,7 @@ - + ..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1061,7 +1365,18 @@ - + + + + ..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1070,7 +1385,16 @@ - + + + + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1079,7 +1403,7 @@ - + ..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1090,6 +1414,15 @@ + + + + ..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1150,7 +1483,7 @@ - + ..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1159,7 +1492,7 @@ - + ..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1170,7 +1503,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1179,7 +1512,7 @@ - + ..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1190,7 +1523,7 @@ - + ..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj b/src/legacy/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj index 41bd7f6ecf6..6bc5d0b8f94 100644 --- a/src/legacy/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj +++ b/src/legacy/deploy.web/Fake.Deploy.Web.Abstractions/Fake.Deploy.Web.Abstractions.fsproj @@ -59,7 +59,7 @@ --> - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -79,7 +79,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -90,7 +90,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -99,7 +99,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -110,6 +110,15 @@ + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -121,7 +130,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -130,7 +139,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -163,7 +172,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -174,7 +183,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -205,6 +214,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -216,7 +234,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -227,7 +245,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -238,6 +256,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -267,7 +294,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -276,9 +317,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -309,7 +378,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -318,7 +405,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -329,6 +416,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -397,7 +502,7 @@ - + ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -467,7 +572,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -498,7 +603,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -507,7 +621,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -518,7 +632,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -529,7 +670,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -538,7 +679,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -549,7 +690,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -558,7 +699,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -589,7 +730,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -600,7 +741,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -611,6 +752,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -631,7 +817,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -642,7 +828,16 @@ - + + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -680,6 +875,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -711,6 +924,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -740,7 +971,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -749,7 +980,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -760,7 +991,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -829,6 +1105,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -887,7 +1172,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -896,7 +1181,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -916,7 +1201,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -965,7 +1250,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -974,7 +1270,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -983,7 +1288,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -994,6 +1299,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1054,7 +1368,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1063,7 +1377,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1074,7 +1388,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1083,7 +1397,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1094,7 +1408,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj b/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj index 9e844c64e64..a57b8cdbfa9 100644 --- a/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj +++ b/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.File/Fake.Deploy.Web.File.fsproj @@ -37,7 +37,7 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library @@ -72,7 +72,7 @@ --> - + ..\..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -124,6 +124,24 @@ + + + + ..\..\..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -154,7 +172,7 @@ - + ..\..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -192,7 +210,7 @@ - + ..\..\..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -228,7 +246,7 @@ - + ..\..\..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -277,7 +295,7 @@ - + ..\..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -286,7 +304,7 @@ - + ..\..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -297,6 +315,15 @@ + + + + ..\..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -308,7 +335,7 @@ - + ..\..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -317,7 +344,7 @@ - + ..\..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -328,7 +355,7 @@ - + ..\..\..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -337,7 +364,7 @@ - + ..\..\..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -468,7 +495,7 @@ - + ..\..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -479,7 +506,7 @@ - + ..\..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -539,6 +566,15 @@ + + + + ..\..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -550,7 +586,7 @@ - + ..\..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -561,7 +597,7 @@ - + ..\..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -572,6 +608,15 @@ + + + + ..\..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -601,7 +646,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -610,9 +669,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -632,7 +719,7 @@ - + ..\..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -663,7 +750,25 @@ - + + + + ..\..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -672,7 +777,7 @@ - + ..\..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -683,6 +788,24 @@ + + + + ..\..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -751,7 +874,7 @@ - + ..\..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -821,7 +944,7 @@ - + ..\..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -863,7 +986,16 @@ - + + + + ..\..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -872,7 +1004,7 @@ - + ..\..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -883,7 +1015,34 @@ - + + + + ..\..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -894,7 +1053,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -903,7 +1062,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -914,7 +1073,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -923,7 +1082,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -954,7 +1113,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -965,7 +1124,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -976,6 +1135,51 @@ + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -996,7 +1200,7 @@ - + ..\..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1007,7 +1211,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1045,6 +1268,24 @@ + + + + ..\..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1076,6 +1317,24 @@ + + + + ..\..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1134,7 +1393,7 @@ - + ..\..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1143,7 +1402,7 @@ - + ..\..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1203,7 +1462,52 @@ - + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1272,6 +1576,15 @@ + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1330,7 +1643,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1339,7 +1652,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1359,7 +1672,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1408,7 +1721,18 @@ - + + + + ..\..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1417,7 +1741,16 @@ - + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1426,7 +1759,7 @@ - + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1437,6 +1770,15 @@ + + + + ..\..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1508,7 +1850,7 @@ - + ..\..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1517,7 +1859,7 @@ - + ..\..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1528,7 +1870,7 @@ - + ..\..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1537,7 +1879,7 @@ - + ..\..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1548,7 +1890,7 @@ - + ..\..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1559,7 +1901,7 @@ - + ..\..\..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1568,7 +1910,7 @@ - + ..\..\..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1599,7 +1941,7 @@ - + ..\..\..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -1608,7 +1950,7 @@ - + ..\..\..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll diff --git a/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj b/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj index 9fe3a547a92..e5e3178e613 100644 --- a/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj +++ b/src/legacy/deploy.web/Fake.Deploy.Web.DataProviders/Fake.Deploy.Web.RavenDb/Fake.Deploy.Web.RavenDb.fsproj @@ -70,7 +70,7 @@ --> - + ..\..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -110,7 +110,7 @@ - + ..\..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -138,7 +138,7 @@ - + ..\..\..\..\..\packages\RavenDB.Client\lib\net45\Raven.Abstractions.dll @@ -163,7 +163,7 @@ - + ..\..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -172,7 +172,7 @@ - + ..\..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -183,6 +183,15 @@ + + + + ..\..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -194,7 +203,7 @@ - + ..\..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -203,7 +212,7 @@ - + ..\..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -236,7 +245,7 @@ - + ..\..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -247,7 +256,7 @@ - + ..\..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -278,6 +287,15 @@ + + + + ..\..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -289,7 +307,7 @@ - + ..\..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -300,7 +318,7 @@ - + ..\..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -311,6 +329,15 @@ + + + + ..\..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -340,7 +367,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -349,9 +390,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -382,7 +451,25 @@ - + + + + ..\..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -391,7 +478,7 @@ - + ..\..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -402,6 +489,24 @@ + + + + ..\..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -470,7 +575,7 @@ - + ..\..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll @@ -540,7 +645,7 @@ - + ..\..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -571,7 +676,16 @@ - + + + + ..\..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -580,7 +694,7 @@ - + ..\..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -591,7 +705,34 @@ - + + + + ..\..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -602,7 +743,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -611,7 +752,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -622,7 +763,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -631,7 +772,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -662,7 +803,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -673,7 +814,7 @@ - + ..\..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -684,6 +825,51 @@ + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -704,7 +890,7 @@ - + ..\..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -715,7 +901,26 @@ - + + + + True + + + + + + + True + + + ..\..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -753,6 +958,24 @@ + + + + ..\..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -784,6 +1007,24 @@ + + + + ..\..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -813,7 +1054,7 @@ - + ..\..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -822,7 +1063,7 @@ - + ..\..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -833,7 +1074,52 @@ - + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -902,6 +1188,15 @@ + + + + ..\..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -960,7 +1255,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -969,7 +1264,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -989,7 +1284,7 @@ - + ..\..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1038,7 +1333,18 @@ - + + + + ..\..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1047,7 +1353,16 @@ - + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1056,7 +1371,7 @@ - + ..\..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1067,6 +1382,15 @@ + + + + ..\..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1127,7 +1451,7 @@ - + ..\..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1136,7 +1460,7 @@ - + ..\..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1147,7 +1471,7 @@ - + ..\..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1156,7 +1480,7 @@ - + ..\..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1167,7 +1491,7 @@ - + ..\..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll diff --git a/src/legacy/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj b/src/legacy/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj index 7915e0ec25a..bc32ff65946 100644 --- a/src/legacy/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj +++ b/src/legacy/deploy.web/Fake.Deploy.Web/Fake.Deploy.Web.fsproj @@ -202,14 +202,14 @@ - + <__paket__NETStandard_Library_targets>netstandard2.0\NETStandard.Library - + ..\..\..\..\packages\FSharp.Core\lib\net45\FSharp.Core.dll @@ -274,7 +274,7 @@ - + ..\..\..\..\packages\log4net\lib\net45-full\log4net.dll @@ -285,7 +285,7 @@ - + ..\..\..\..\packages\Microsoft.AspNet.Mvc\lib\net40\System.Web.Mvc.dll @@ -296,7 +296,7 @@ - + ..\..\..\..\packages\Microsoft.AspNet.Razor\lib\net40\System.Web.Razor.dll @@ -307,7 +307,7 @@ - + ..\..\..\..\packages\Microsoft.AspNet.WebPages\lib\net40\System.Web.Helpers.dll @@ -365,6 +365,24 @@ + + + + ..\..\..\..\packages\Microsoft.CSharp\lib\netstandard2.0\Microsoft.CSharp.dll + True + True + + + + + + + ..\..\..\..\packages\Microsoft.CSharp\ref\netstandard2.0\Microsoft.CSharp.dll + False + True + + + @@ -395,7 +413,7 @@ - + ..\..\..\..\packages\Microsoft.Web.Infrastructure\lib\net40\Microsoft.Web.Infrastructure.dll @@ -406,7 +424,7 @@ - + ..\..\..\..\packages\Microsoft.Win32.Primitives\ref\netstandard1.3\Microsoft.Win32.Primitives.dll @@ -417,7 +435,7 @@ - + ..\..\..\..\packages\Nancy\lib\net40\Nancy.dll @@ -428,7 +446,7 @@ - + ..\..\..\..\packages\Nancy.Authentication.Forms\lib\net40\Nancy.Authentication.Forms.dll @@ -439,7 +457,7 @@ - + ..\..\..\..\packages\Nancy.Hosting.Aspnet\lib\net40\Nancy.Hosting.Aspnet.dll @@ -450,7 +468,7 @@ - + ..\..\..\..\packages\Nancy.Viewengines.Razor\lib\net40\Nancy.ViewEngines.Razor.dll @@ -488,7 +506,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll @@ -524,7 +542,7 @@ - + ..\..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll @@ -573,7 +591,7 @@ - + ..\..\..\..\packages\System.Buffers\lib\netstandard1.1\System.Buffers.dll @@ -582,7 +600,7 @@ - + ..\..\..\..\packages\System.Buffers\ref\netstandard1.1\System.Buffers.dll @@ -593,6 +611,22 @@ + + + + True + + + + + + + ..\..\..\..\packages\System.Collections\ref\netstandard1.0\System.Collections.dll + False + True + + + @@ -604,7 +638,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\lib\netstandard1.3\System.Collections.Concurrent.dll @@ -613,7 +647,7 @@ - + ..\..\..\..\packages\System.Collections.Concurrent\ref\netstandard1.3\System.Collections.Concurrent.dll @@ -624,7 +658,7 @@ - + ..\..\..\..\packages\System.Collections.NonGeneric\lib\netstandard1.3\System.Collections.NonGeneric.dll @@ -633,7 +667,7 @@ - + ..\..\..\..\packages\System.Collections.NonGeneric\ref\netstandard1.3\System.Collections.NonGeneric.dll @@ -764,7 +798,7 @@ - + ..\..\..\..\packages\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll @@ -775,7 +809,7 @@ - + ..\..\..\..\packages\System.Diagnostics.Tools\ref\netstandard1.0\System.Diagnostics.Tools.dll @@ -835,6 +869,15 @@ + + + + ..\..\..\..\packages\System.Globalization\ref\netstandard1.0\System.Globalization.dll + False + True + + + @@ -846,7 +889,7 @@ - + ..\..\..\..\packages\System.Globalization.Calendars\ref\netstandard1.3\System.Globalization.Calendars.dll @@ -857,7 +900,7 @@ - + ..\..\..\..\packages\System.Globalization.Extensions\ref\netstandard1.3\System.Globalization.Extensions.dll @@ -868,6 +911,15 @@ + + + + ..\..\..\..\packages\System.IO\lib\net462\System.IO.dll + True + True + + + @@ -897,7 +949,21 @@ - + + + + True + + + + + + + True + + + + ..\..\..\..\packages\System.IO.Compression\ref\netstandard1.3\System.IO.Compression.dll @@ -906,9 +972,37 @@ + + + + True + + + + + + + True + + + + + + + True + + + + + + + True + + + - + ..\..\..\..\packages\System.IO.Compression.ZipFile\lib\netstandard1.3\System.IO.Compression.ZipFile.dll @@ -928,7 +1022,7 @@ - + ..\..\..\..\packages\System.IO.FileSystem\ref\netstandard1.3\System.IO.FileSystem.dll @@ -959,7 +1053,25 @@ - + + + + ..\..\..\..\packages\System.Linq\lib\net463\System.Linq.dll + True + True + + + + + + + ..\..\..\..\packages\System.Linq\ref\netstandard1.0\System.Linq.dll + False + True + + + + ..\..\..\..\packages\System.Linq\lib\netstandard1.6\System.Linq.dll @@ -968,7 +1080,7 @@ - + ..\..\..\..\packages\System.Linq\ref\netstandard1.6\System.Linq.dll @@ -979,6 +1091,24 @@ + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.0\System.Linq.Expressions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Linq.Expressions\ref\netstandard1.3\System.Linq.Expressions.dll + False + True + + + @@ -1047,11 +1177,8 @@ - + - - True - ..\..\..\..\packages\System.Net.Http\lib\net46\System.Net.Http.dll True @@ -1120,7 +1247,7 @@ - + ..\..\..\..\packages\System.Net.Requests\ref\netstandard1.3\System.Net.Requests.dll @@ -1162,7 +1289,16 @@ - + + + + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.0\System.ObjectModel.dll + False + True + + + + ..\..\..\..\packages\System.ObjectModel\lib\netstandard1.3\System.ObjectModel.dll @@ -1171,7 +1307,7 @@ - + ..\..\..\..\packages\System.ObjectModel\ref\netstandard1.3\System.ObjectModel.dll @@ -1182,7 +1318,34 @@ - + + + + ..\..\..\..\packages\System.Reflection\lib\net462\System.Reflection.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.0\System.Reflection.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.3\System.Reflection.dll + False + True + + + + ..\..\..\..\packages\System.Reflection\ref\netstandard1.5\System.Reflection.dll @@ -1193,7 +1356,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\ref\netstandard1.1\System.Reflection.Emit.dll @@ -1202,7 +1365,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit\lib\netstandard1.3\System.Reflection.Emit.dll @@ -1213,7 +1376,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll @@ -1222,7 +1385,7 @@ - + ..\..\..\..\packages\System.Reflection.Emit.ILGeneration\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll @@ -1253,7 +1416,7 @@ - + ..\..\..\..\packages\System.Reflection.Extensions\ref\netstandard1.0\System.Reflection.Extensions.dll @@ -1264,7 +1427,7 @@ - + ..\..\..\..\packages\System.Reflection.Primitives\ref\netstandard1.0\System.Reflection.Primitives.dll @@ -1275,6 +1438,51 @@ + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netcoreapp1.0\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.3\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.3\System.Reflection.TypeExtensions.dll + False + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\lib\netstandard1.5\System.Reflection.TypeExtensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Reflection.TypeExtensions\ref\netstandard1.5\System.Reflection.TypeExtensions.dll + False + True + + + @@ -1295,7 +1503,7 @@ - + ..\..\..\..\packages\System.Resources.ResourceManager\ref\netstandard1.0\System.Resources.ResourceManager.dll @@ -1306,7 +1514,16 @@ - + + + + ..\..\..\..\packages\System.Runtime\lib\net462\System.Runtime.dll + True + True + + + + ..\..\..\..\packages\System.Runtime\ref\netstandard1.0\System.Runtime.dll @@ -1344,6 +1561,24 @@ + + + + ..\..\..\..\packages\System.Runtime.Extensions\lib\net462\System.Runtime.Extensions.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.Extensions\ref\netstandard1.0\System.Runtime.Extensions.dll + False + True + + + @@ -1375,6 +1610,24 @@ + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net462\System.Runtime.InteropServices.dll + True + True + + + + + + + ..\..\..\..\packages\System.Runtime.InteropServices\lib\net463\System.Runtime.InteropServices.dll + True + True + + + @@ -1433,7 +1686,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\ref\netstandard1.1\System.Runtime.Numerics.dll @@ -1442,7 +1695,7 @@ - + ..\..\..\..\packages\System.Runtime.Numerics\lib\netstandard1.3\System.Runtime.Numerics.dll @@ -1502,7 +1755,52 @@ - + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net46\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net461\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\lib\net463\System.Security.Cryptography.Algorithms.dll + True + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll + False + True + + + + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll + False + True + + + + ..\..\..\..\packages\System.Security.Cryptography.Algorithms\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll @@ -1571,6 +1869,15 @@ + + + + ..\..\..\..\packages\System.Security.Cryptography.Encoding\lib\net46\System.Security.Cryptography.Encoding.dll + True + True + + + @@ -1629,7 +1936,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1638,7 +1945,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.Primitives\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll @@ -1658,7 +1965,7 @@ - + ..\..\..\..\packages\System.Security.Cryptography.X509Certificates\lib\net461\System.Security.Cryptography.X509Certificates.dll @@ -1707,7 +2014,18 @@ - + + + + ..\..\..\..\packages\System.Text.Encoding.Extensions\ref\netstandard1.3\System.Text.Encoding.Extensions.dll + False + True + + + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netcoreapp1.1\System.Text.RegularExpressions.dll @@ -1716,7 +2034,16 @@ - + + + + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.3\System.Text.RegularExpressions.dll + False + True + + + + ..\..\..\..\packages\System.Text.RegularExpressions\lib\netstandard1.6\System.Text.RegularExpressions.dll @@ -1725,7 +2052,7 @@ - + ..\..\..\..\packages\System.Text.RegularExpressions\ref\netstandard1.6\System.Text.RegularExpressions.dll @@ -1736,6 +2063,15 @@ + + + + ..\..\..\..\packages\System.Threading\ref\netstandard1.0\System.Threading.dll + False + True + + + @@ -1807,7 +2143,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\lib\netstandard1.3\System.Threading.Thread.dll @@ -1816,7 +2152,7 @@ - + ..\..\..\..\packages\System.Threading.Thread\ref\netstandard1.3\System.Threading.Thread.dll @@ -1827,7 +2163,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\lib\netstandard1.3\System.Threading.ThreadPool.dll @@ -1836,7 +2172,7 @@ - + ..\..\..\..\packages\System.Threading.ThreadPool\ref\netstandard1.3\System.Threading.ThreadPool.dll @@ -1847,7 +2183,7 @@ - + ..\..\..\..\packages\System.Threading.Timer\ref\netstandard1.2\System.Threading.Timer.dll @@ -1858,7 +2194,7 @@ - + ..\..\..\..\packages\System.Web.Razor.Unofficial\lib\net40\System.Web.Razor.Unofficial.dll @@ -1869,7 +2205,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\lib\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1878,7 +2214,7 @@ - + ..\..\..\..\packages\System.Xml.ReaderWriter\ref\netstandard1.3\System.Xml.ReaderWriter.dll @@ -1909,7 +2245,7 @@ - + ..\..\..\..\packages\System.Xml.XmlDocument\lib\netstandard1.3\System.Xml.XmlDocument.dll @@ -1918,7 +2254,7 @@ - + ..\..\..\..\packages\System.Xml.XmlDocument\ref\netstandard1.3\System.Xml.XmlDocument.dll From 1225b629d4d885f1b634739167761432b8b1adfb Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 00:14:58 +0200 Subject: [PATCH 10/31] downgrade fluentmigrator? --- paket.dependencies | 38 +-- paket.lock | 731 ++++++++++++++++++++++----------------------- 2 files changed, 384 insertions(+), 385 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index ef07beaea73..518919a0172 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -44,24 +44,24 @@ nuget xunit nuget Newtonsoft.Json redirects:force nuget Microsoft.AspNet.Razor 2.0.30506 nuget Microsoft.AspNet.WebPages 2.0.30506 -nuget FluentMigrator ~> 2.0 -nuget FluentMigrator.Abstractions ~> 2.0 -nuget FluentMigrator.Extensions.SqlAnywhere ~> 2.0 -nuget FluentMigrator.Extensions.SqlServer ~> 2.0 -nuget FluentMigrator.Runner ~> 2.0 -nuget FluentMigrator.Runner.Core ~> 2.0 -nuget FluentMigrator.Runner.Db2 ~> 2.0 -nuget FluentMigrator.Runner.Firebird ~> 2.0 -nuget FluentMigrator.Runner.Hana ~> 2.0 -nuget FluentMigrator.Runner.Jet ~> 2.0 -nuget FluentMigrator.Runner.MySql ~> 2.0 -nuget FluentMigrator.Runner.Oracle ~> 2.0 -nuget FluentMigrator.Runner.Postgres ~> 2.0 -nuget FluentMigrator.Runner.Redshift ~> 2.0 -nuget FluentMigrator.Runner.SqlAnywhere ~> 2.0 -nuget FluentMigrator.Runner.SQLite ~> 2.0 -nuget FluentMigrator.Runner.SqlServer ~> 2.0 -nuget FluentMigrator.Runner.SqlServerCe ~> 2.0 +nuget FluentMigrator 2.0.6 +nuget FluentMigrator.Abstractions 2.0.6 +nuget FluentMigrator.Extensions.SqlAnywhere 2.0.6 +nuget FluentMigrator.Extensions.SqlServer 2.0.6 +nuget FluentMigrator.Runner 2.0.6 +nuget FluentMigrator.Runner.Core 2.0.6 +nuget FluentMigrator.Runner.Db2 2.0.6 +nuget FluentMigrator.Runner.Firebird 2.0.6 +nuget FluentMigrator.Runner.Hana 2.0.6 +nuget FluentMigrator.Runner.Jet 2.0.6 +nuget FluentMigrator.Runner.MySql 2.0.6 +nuget FluentMigrator.Runner.Oracle 2.0.6 +nuget FluentMigrator.Runner.Postgres 2.0.6 +nuget FluentMigrator.Runner.Redshift 2.0.6 +nuget FluentMigrator.Runner.SqlAnywhere 2.0.6 +nuget FluentMigrator.Runner.SQLite 2.0.6 +nuget FluentMigrator.Runner.SqlServer 2.0.6 +nuget FluentMigrator.Runner.SqlServerCe 2.0.6 nuget HashLib nuget FSharp.Compiler.Service content: none nuget Octokit @@ -101,7 +101,7 @@ group Build // [ FAKE GROUP ] group NetcoreBuild source https://api.nuget.org/v3/index.json - source https://www.myget.org/F/fake-vsts/api/v3/index.json + //source https://www.myget.org/F/fake-vsts/api/v3/index.json storage: none //source https://ci.appveyor.com/nuget/fake diff --git a/paket.lock b/paket.lock index 27d98276cce..8ba7cd8443b 100644 --- a/paket.lock +++ b/paket.lock @@ -15,57 +15,57 @@ NUGET FSharp.Core (>= 4.0.1.7-alpha) - restriction: >= netstandard1.6 NETStandard.Library (>= 1.6) - restriction: >= netstandard1.6 CsQuery (1.3.4) - FluentMigrator (2.0.7) - FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Abstractions (2.0.7) - FluentMigrator.Extensions.SqlAnywhere (2.0.7) - FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Extensions.SqlServer (2.0.7) - FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner (2.0.7) - FluentMigrator (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Db2 (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Firebird (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Hana (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Jet (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) - FluentMigrator.Runner.MySql (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Oracle (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Postgres (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Redshift (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlAnywhere (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SQLite (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServerCe (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (2.0.7) - FluentMigrator.Abstractions (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Db2 (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Firebird (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Hana (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Jet (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: >= net40 - FluentMigrator.Runner.MySql (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Oracle (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Postgres (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Redshift (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlAnywhere (2.0.7) - FluentMigrator.Extensions.SqlAnywhere (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SQLite (2.0.7) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.SqlServer (2.0.7) - FluentMigrator.Extensions.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) - FluentMigrator.Runner.Core (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator (2.0.6) + FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Abstractions (2.0.6) + FluentMigrator.Extensions.SqlAnywhere (2.0.6) + FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Extensions.SqlServer (2.0.6) + FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner (2.0.6) + FluentMigrator (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Db2 (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Firebird (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Hana (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Jet (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) + FluentMigrator.Runner.MySql (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Oracle (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Postgres (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Redshift (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlAnywhere (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SQLite (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServerCe (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (2.0.6) + FluentMigrator.Abstractions (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Db2 (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Firebird (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Hana (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Jet (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: >= net40 + FluentMigrator.Runner.MySql (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Oracle (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Postgres (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Redshift (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlAnywhere (2.0.6) + FluentMigrator.Extensions.SqlAnywhere (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SQLite (2.0.6) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServer (2.0.6) + FluentMigrator.Extensions.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.Core (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) System.Data.SqlClient (>= 4.4.3) - restriction: && (< net40) (>= netstandard2.0) - FluentMigrator.Runner.SqlServerCe (2.0.7) - FluentMigrator.Runner.SqlServer (>= 2.0.7) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) + FluentMigrator.Runner.SqlServerCe (2.0.6) + FluentMigrator.Runner.SqlServer (>= 2.0.6) - restriction: || (&& (>= net40) (< netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (>= net45) Microsoft.SqlServer.Compact (>= 4.0.8876.1) - restriction: || (&& (>= net40) (< netstandard2.0)) (>= net45) System.Security.Permissions (>= 4.4.1) - restriction: && (< net40) (>= netstandard2.0) FParsec (1.0.3) @@ -2608,6 +2608,321 @@ 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.0.0-rc012.95) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) + Fake.BuildServer.AppVeyor (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.GitLab (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamCity (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamFoundation (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.Travis (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Net.Http (>= 5.0.0-rc012.95) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.Core.CommandLineParsing (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FParsec (>= 1.0.3) - 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.Context (5.0.0-rc012.95) - 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.Environment (5.0.0-rc012.95) - 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.Process (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.ReleaseNotes (5.0.0-rc012.95) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.CommandLineParsing (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Tasks (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Trace (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.Xml (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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) (< netstandard2.0)) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.0.0-rc012.95) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.FSFormatting (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.MsBuild (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.NuGet (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Tasks (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Xml (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) + System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + Fake.DotNet.Paket (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Testing.MSpec (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Testing.NUnit (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) + System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) + Fake.DotNet.Testing.XUnit2 (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Testing.Common (>= 5.0.0-rc012.95) - 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.IO.FileSystem (5.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) + Fake.Testing.Common (5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Tools.Git (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.SemVer (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - 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.Windows.Chocolatey (5.0.0-rc012.95) + Fake.Core.Context (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Environment (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Process (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.String (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.Core.Trace (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.DotNet.NuGet (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + Fake.IO.FileSystem (>= 5.0.0-rc012.95) - restriction: || (>= net46) (>= netstandard1.6) + FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) + NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) FParsec (1.0.3) - restriction: || (>= net46) (>= netstandard1.6) FSharp.Core (>= 4.0.0.1) - restriction: >= net40 FSharp.Core (>= 4.2.3) - restriction: && (< net40) (>= netstandard1.6) @@ -3380,322 +3695,6 @@ NUGET System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) - remote: https://www.myget.org/F/fake-vsts/api/v3/index.json - Fake.Api.GitHub (5.0.0-rc013.113) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Octokit (>= 0.29) - restriction: || (>= net46) (>= netstandard1.6) - Fake.BuildServer.AppVeyor (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc013.111) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.GitLab (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc013.111) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamCity (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc013.111) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.TeamFoundation (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc013.111) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.BuildServer.Travis (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Net.Http (>= 5.0.0-rc013.111) - 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.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.ReaderWriter (>= 4.3.1) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.Core.CommandLineParsing (5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - FParsec (>= 1.0.3) - 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.Context (5.0.0-rc013.113) - 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.Environment (5.0.0-rc013.113) - 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.Process (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Process (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.ReleaseNotes (5.0.0-rc013.113) - Fake.Core.SemVer (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.113) - 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.0.0-rc013.113) - Fake.Core.String (>= 5.0.0-rc013.113) - 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.Runtime.Numerics (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (5.0.0-rc013.113) - 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.0.0-rc013.113) - Fake.Core.CommandLineParsing (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.113) - 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.Tasks (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Trace (5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.113) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.113) - 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.Xml (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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) (< netstandard2.0)) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< 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.0.0-rc013.111) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.FSFormatting (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.MsBuild (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.NuGet (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Tasks (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Xml (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net46) (>= netstandard1.6) - System.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.DotNet.Paket (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Testing.MSpec (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.Testing.NUnit (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.Linq.Parallel (>= 4.3) - restriction: || (>= net46) (>= netstandard1.6) - System.Xml.XDocument (>= 4.3) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) - Fake.DotNet.Testing.XUnit2 (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Testing.Common (>= 5.0.0-rc013.111) - 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.IO.FileSystem (5.0.0-rc013.111) - Fake.Core.String (>= 5.0.0-rc013.111) - 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.0.0-rc013.111) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - 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.Net.Http (>= 4.3.3) - restriction: || (>= net46) (&& (>= netstandard1.6) (< netstandard2.0)) - Fake.Testing.Common (5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Tools.Git (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.SemVer (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - 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.Windows.Chocolatey (5.0.0-rc013.111) - Fake.Core.Context (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Environment (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Process (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.String (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.Core.Trace (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.DotNet.NuGet (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - Fake.IO.FileSystem (>= 5.0.0-rc013.111) - restriction: || (>= net46) (>= netstandard1.6) - FSharp.Core (>= 4.3.4) - restriction: || (>= net46) (>= netstandard1.6) - NETStandard.Library (>= 1.6.1) - restriction: && (< net46) (>= netstandard1.6) (< netstandard2.0) GROUP TestAdapter NUGET From f38692db882c463dd0fbaf0482a70e08e0ab8cec Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 12:50:21 +0200 Subject: [PATCH 11/31] verbose? --- build.proj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.proj b/build.proj index 89b589d8add..447447e30bf 100644 --- a/build.proj +++ b/build.proj @@ -20,7 +20,7 @@ - + From 19c78226789493464d91b0f6564af25225b72cd3 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 13:31:04 +0200 Subject: [PATCH 12/31] fix endless loop. --- build.fsx | 2 +- build.proj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index c3bb168695b..1c947701771 100644 --- a/build.fsx +++ b/build.fsx @@ -901,7 +901,7 @@ Target.create "CreateNuGet" (fun _ -> Trace.tracefn "%sFile: %s" space f for sd in Directory.EnumerateDirectories d do Trace.tracefn "%sDirectory: %s" space sd - printDir (space + " ") d + printDir (space + " ") sd printDir " " (Path.GetFullPath "packages") match !! "packages/**/NuGet.exe" |> Seq.tryHead with | Some e -> diff --git a/build.proj b/build.proj index 447447e30bf..89b589d8add 100644 --- a/build.proj +++ b/build.proj @@ -20,7 +20,7 @@ - + From baec147c312a7dda9245f0b4190081e5810107ab Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 13:34:07 +0200 Subject: [PATCH 13/31] Fix find nuget. --- build.fsx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/build.fsx b/build.fsx index 1c947701771..2aedbd5c9ff 100644 --- a/build.fsx +++ b/build.fsx @@ -893,9 +893,13 @@ Target.create "CreateNuGet" (fun _ -> Project = package.Project + ".x64" } let nugetExe = - let pref = Path.GetFullPath "packages/build/NuGet.CommandLine/tools/NuGet.exe" - if File.Exists pref then pref - else + let prefs = + [ "packages/build/Nuget.CommandLine/tools/NuGet.exe" + "packages/build/NuGet.CommandLine/tools/NuGet.exe" ] + |> List.map Path.GetFullPath + match Seq.tryFind (File.Exists) prefs with + | Some pref -> pref + | None -> let rec printDir space d = for f in Directory.EnumerateFiles d do Trace.tracefn "%sFile: %s" space f @@ -908,7 +912,7 @@ Target.create "CreateNuGet" (fun _ -> Trace.tracefn "Found %s" e e | None -> - pref + prefs |> List.head for package,description in packages do let nugetDocsDir = nugetLegacyDir @@ "docs" From 0b735eb99132cddce327c5a82d1d96d2d0295187 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 12:27:28 +0200 Subject: [PATCH 14/31] make sure to start targets as early as possible when all dependencies are fullfilled --- src/app/Fake.Core.Target/Target.fs | 112 ++++++++++++++++++++++++++++- 1 file changed, 109 insertions(+), 3 deletions(-) diff --git a/src/app/Fake.Core.Target/Target.fs b/src/app/Fake.Core.Target/Target.fs index 6ce5d6c2f77..cd03741950b 100644 --- a/src/app/Fake.Core.Target/Target.fs +++ b/src/app/Fake.Core.Target/Target.fs @@ -4,6 +4,7 @@ open System open System.Collections.Generic open Fake.Core open Fake.Core.CommandLineParsing +open System.Threading.Tasks module internal TargetCli = let targetCli = @@ -484,6 +485,110 @@ module Target = else { context with PreviousTargets = context.PreviousTargets @ [{ Error = None; Time = TimeSpan.Zero; Target = target; WasSkipped = true }] } + module internal ParallelRunner = + let internal mergeContext (ctx1:TargetContext) (ctx2:TargetContext) = + let known = + ctx1.PreviousTargets + |> Seq.map (fun tres -> tres.Target.Name, tres) + |> dict + let filterKnown targets = + targets + |> List.filter (fun tres -> not (known.ContainsKey tres.Target.Name)) + { ctx1 with + PreviousTargets = + ctx1.PreviousTargets @ filterKnown ctx2.PreviousTargets + } + // Centralized handling of target context and next target logic... + type RunnerHelper = + | GetNextTarget of TargetContext * AsyncReplyChannel> + type IRunnerHelper = + abstract GetNextTarget : TargetContext -> Async> + let createCtxMgr (order:Target[] list) (ctx:TargetContext) = + let body (inbox:MailboxProcessor) = async { + let targetCount = + order |> Seq.sumBy (fun t -> t.Length) + let mutable ctx = ctx + let mutable waitList = [] + let mutable runningTasks = [] + //let mutable remainingOrders = order + while true do + let! msg = inbox.Receive() + match msg with + | GetNextTarget (newCtx, reply) -> + // semantic is: + // - We never return a target twice! + // - we fill up the waitlist first + ctx <- mergeContext ctx newCtx + let known = + ctx.PreviousTargets + |> Seq.map (fun tres -> tres.Target.Name, tres) + |> dict + runningTasks <- + runningTasks + |> List.filter (fun t -> not(known.ContainsKey t.Name)) + if known.Count = targetCount then + for (w:System.Threading.Tasks.TaskCompletionSource) in waitList do + w.SetResult None + waitList <- [] + reply.Reply (ctx, async.Return None) + else + let isRunnable (t:Target) = + not (known.ContainsKey t.Name) && // not already finised + not (runningTasks |> Seq.exists (fun r -> r.Name = t.Name)) && // not already running + t.Dependencies // all dependencies finished + |> Seq.forall (fun d -> known.ContainsKey d) + let runnable = + order + |> Seq.concat + |> Seq.filter isRunnable + |> Seq.toList + + let rec getNextFreeRunableTarget (r) = + match r with + | t :: rest -> + match waitList with + | h :: restwait -> + h.SetResult (Some t) + waitList <- restwait + getNextFreeRunableTarget rest + | [] -> Some t + | [] -> None + match getNextFreeRunableTarget runnable with + | Some free -> + reply.Reply (ctx, async.Return(Some free)) + | None -> + // queue work + let tcs = new TaskCompletionSource() + waitList <- waitList @ [ tcs ] + reply.Reply (ctx, tcs.Task |> Async.AwaitTask) + } + + let mbox = MailboxProcessor.Start(body) + { new IRunnerHelper with + member __.GetNextTarget (ctx) = mbox.PostAndAsyncReply(fun reply -> GetNextTarget(ctx, reply)) + } + + let runOptimal workerNum (order:Target[] list) targetContext = + let mgr = createCtxMgr order targetContext + let targetRunner () = + async { + let! (tctx, att) = mgr.GetNextTarget(targetContext) + let! tt = att + let mutable ctx = tctx + let mutable nextTarget = tt + while nextTarget.IsSome do + let newCtx = runSingleTarget nextTarget.Value ctx + let! (tctx, att) = mgr.GetNextTarget(newCtx) + let! tt = att + ctx <- tctx + nextTarget <- tt + return ctx + } |> Async.StartAsTask + Array.init workerNum (fun _ -> targetRunner()) + |> Task.WhenAll + |> Async.AwaitTask + |> Async.RunSynchronously + |> Seq.reduce mergeContext /// Runs the given array of targets in parallel using count tasks let internal runTargetsParallel (count : int) (targets : Target[]) context = @@ -530,9 +635,10 @@ module Target = if parallelJobs > 1 && not singleTarget then Trace.tracefn "Running parallel build with %d workers" parallelJobs - // run every level in parallel - order - |> Seq.fold (fun context par -> runTargetsParallel parallelJobs par context) context + // always try to keep "parallelJobs" runners busy + ParallelRunner.runOptimal parallelJobs order context + //order + // |> Seq.fold (fun context par -> runTargetsParallel parallelJobs par context) context else let targets = order |> Seq.collect id |> Seq.toArray let lastTarget = targets |> Array.last From 3898b50c68eb3b91fad4e22e52c95234651da47a Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 14:10:41 +0200 Subject: [PATCH 15/31] fix https://github.com/fsharp/FAKE/issues/1929 and properly fill runningTasks to no execute tasks multiple times... --- src/app/Fake.Core.Target/Target.fs | 116 ++++++++++++++++------------- 1 file changed, 65 insertions(+), 51 deletions(-) diff --git a/src/app/Fake.Core.Target/Target.fs b/src/app/Fake.Core.Target/Target.fs index cd03741950b..4b36130afe7 100644 --- a/src/app/Fake.Core.Target/Target.fs +++ b/src/app/Fake.Core.Target/Target.fs @@ -481,7 +481,11 @@ module Target = let internal runSingleTarget (target : Target) (context:TargetContext) = if not context.HasError then use t = Trace.traceTarget target.Name (match target.Description with Some d -> d | _ -> "NoDescription") (dependencyString target) - runSimpleContextInternal target context + let res = runSimpleContextInternal target context + if res.HasError + then t.MarkFailed() + else t.MarkSuccess() + res else { context with PreviousTargets = context.PreviousTargets @ [{ Error = None; Time = TimeSpan.Zero; Target = target; WasSkipped = true }] } @@ -511,56 +515,66 @@ module Target = let mutable waitList = [] let mutable runningTasks = [] //let mutable remainingOrders = order - while true do - let! msg = inbox.Receive() - match msg with - | GetNextTarget (newCtx, reply) -> - // semantic is: - // - We never return a target twice! - // - we fill up the waitlist first - ctx <- mergeContext ctx newCtx - let known = - ctx.PreviousTargets - |> Seq.map (fun tres -> tres.Target.Name, tres) - |> dict - runningTasks <- - runningTasks - |> List.filter (fun t -> not(known.ContainsKey t.Name)) - if known.Count = targetCount then - for (w:System.Threading.Tasks.TaskCompletionSource) in waitList do - w.SetResult None - waitList <- [] - reply.Reply (ctx, async.Return None) - else - let isRunnable (t:Target) = - not (known.ContainsKey t.Name) && // not already finised - not (runningTasks |> Seq.exists (fun r -> r.Name = t.Name)) && // not already running - t.Dependencies // all dependencies finished - |> Seq.forall (fun d -> known.ContainsKey d) - let runnable = - order - |> Seq.concat - |> Seq.filter isRunnable - |> Seq.toList - - let rec getNextFreeRunableTarget (r) = - match r with - | t :: rest -> - match waitList with - | h :: restwait -> - h.SetResult (Some t) - waitList <- restwait - getNextFreeRunableTarget rest - | [] -> Some t - | [] -> None - match getNextFreeRunableTarget runnable with - | Some free -> - reply.Reply (ctx, async.Return(Some free)) - | None -> - // queue work - let tcs = new TaskCompletionSource() - waitList <- waitList @ [ tcs ] - reply.Reply (ctx, tcs.Task |> Async.AwaitTask) + try + while true do + let! msg = inbox.Receive() + match msg with + | GetNextTarget (newCtx, reply) -> + // semantic is: + // - We never return a target twice! + // - we fill up the waitlist first + ctx <- mergeContext ctx newCtx + let known = + ctx.PreviousTargets + |> Seq.map (fun tres -> tres.Target.Name, tres) + |> dict + runningTasks <- + runningTasks + |> List.filter (fun t -> not(known.ContainsKey t.Name)) + if known.Count = targetCount then + for (w:System.Threading.Tasks.TaskCompletionSource) in waitList do + w.SetResult None + waitList <- [] + reply.Reply (ctx, async.Return None) + else + let isRunnable (t:Target) = + not (known.ContainsKey t.Name) && // not already finised + not (runningTasks |> Seq.exists (fun r -> r.Name = t.Name)) && // not already running + t.Dependencies // all dependencies finished + |> Seq.forall (fun d -> known.ContainsKey d) + let runnable = + order + |> Seq.concat + |> Seq.filter isRunnable + |> Seq.toList + + let rec getNextFreeRunableTarget (r) = + match r with + | t :: rest -> + match waitList with + | h :: restwait -> + // fill some idle worker + runningTasks <- t :: runningTasks + h.SetResult (Some t) + waitList <- restwait + getNextFreeRunableTarget rest + | [] -> Some t + | [] -> None + match getNextFreeRunableTarget runnable with + | Some free -> + runningTasks <- free :: runningTasks + reply.Reply (ctx, async.Return(Some free)) + | None -> + // queue work + let tcs = new TaskCompletionSource() + waitList <- waitList @ [ tcs ] + reply.Reply (ctx, tcs.Task |> Async.AwaitTask) + with e -> + while true do + let! msg = inbox.Receive() + match msg with + | GetNextTarget (_, reply) -> + reply.Reply (ctx, async { return raise <| exn("mailbox failed", e) }) } let mbox = MailboxProcessor.Start(body) From 0cba748797e5832bf67af6346fcc252cbe932b4f Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 17:13:39 +0200 Subject: [PATCH 16/31] consider soft targets --- src/app/Fake.Core.Target/Target.fs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/Fake.Core.Target/Target.fs b/src/app/Fake.Core.Target/Target.fs index 4b36130afe7..1d6556e5ed2 100644 --- a/src/app/Fake.Core.Target/Target.fs +++ b/src/app/Fake.Core.Target/Target.fs @@ -511,6 +511,8 @@ module Target = let body (inbox:MailboxProcessor) = async { let targetCount = order |> Seq.sumBy (fun t -> t.Length) + let resolution = Set.ofSeq(order |> Seq.concat |> Seq.map (fun t -> t.Name)) + let inResolution (t:string) = resolution.Contains t let mutable ctx = ctx let mutable waitList = [] let mutable runningTasks = [] @@ -537,10 +539,11 @@ module Target = waitList <- [] reply.Reply (ctx, async.Return None) else + let isRunnable (t:Target) = not (known.ContainsKey t.Name) && // not already finised not (runningTasks |> Seq.exists (fun r -> r.Name = t.Name)) && // not already running - t.Dependencies // all dependencies finished + t.Dependencies @ List.filter inResolution t.SoftDependencies // all dependencies finished |> Seq.forall (fun d -> known.ContainsKey d) let runnable = order From 364ee368c6fa788fcb06f5119d0d37a525d64320 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 23:12:27 +0200 Subject: [PATCH 17/31] fix output according to https://github.com/fsharp/FAKE/issues/1931 --- src/app/Fake.Core.Trace/Trace.fs | 3 +-- src/app/Fake.Core.Trace/TraceListener.fs | 6 ++++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/app/Fake.Core.Trace/Trace.fs b/src/app/Fake.Core.Trace/Trace.fs index 1deeedd97e5..38f22d8d866 100644 --- a/src/app/Fake.Core.Trace/Trace.fs +++ b/src/app/Fake.Core.Trace/Trace.fs @@ -181,9 +181,8 @@ let setBuildNumber number = let closeAllOpenTags() = Seq.iter (fun (_, tag) -> closeTagUnsafeEx TagStatus.Failed tag) openTags.Value /// Traces the begin of a target -let traceStartTargetUnsafe name description dependencyString = +let traceStartTargetUnsafe name description (dependencyString:string) = openTagUnsafe (KnownTags.Target name) description - if not (isNull description) then tracefn " %s" description /// Traces the begin of a target [] diff --git a/src/app/Fake.Core.Trace/TraceListener.fs b/src/app/Fake.Core.Trace/TraceListener.fs index 9dc67a80a3e..49fae4340f9 100644 --- a/src/app/Fake.Core.Trace/TraceListener.fs +++ b/src/app/Fake.Core.Trace/TraceListener.fs @@ -239,6 +239,12 @@ type ConsoleTraceListener(importantMessagesToStdErr, colorMap, ansiColor) = write importantMessagesToStdErr color true text | TraceData.LogMessage(text, newLine) | TraceData.TraceMessage(text, newLine) -> write false color newLine text + | TraceData.OpenTag(KnownTags.Target _ as tag, description) -> + write false color true (sprintf "Starting %s '%s'" tag.Type tag.Name) + if not (isNull description) then + let msg = TraceData.TraceMessage("", true) + let color2 = colorMap msg + write false color2 true (sprintf " %s" description) | TraceData.OpenTag (tag, descr) -> write false color true (sprintf "Starting %s '%s': %s" tag.Type tag.Name descr) | TraceData.CloseTag (tag, time, status) -> From f8009b30a491d967af967ad97551ccf24c8e0412 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 23:33:01 +0200 Subject: [PATCH 18/31] push chocolatey package on staging --- build.fsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.fsx b/build.fsx index 2aedbd5c9ff..6bfe8325070 100644 --- a/build.fsx +++ b/build.fsx @@ -134,6 +134,7 @@ let additionalFiles = [ let nuget_exe = Directory.GetCurrentDirectory() "packages" "build" "NuGet.CommandLine" "tools" "NuGet.exe" let apikey = Environment.environVarOrDefault "nugetkey" "" let nugetsource = Environment.environVarOrDefault "nugetsource" "https://www.nuget.org/api/v2/package" +let chocosource = Environment.environVarOrDefault "chocosource" "https://push.chocolatey.org/" let artifactsDir = Environment.environVarOrDefault "artifactsdirectory" "" let fromArtifacts = not <| String.isNullOrEmpty artifactsDir @@ -1153,7 +1154,7 @@ Target.create "DotNetCorePushChocolateyPackage" (fun _ -> if Environment.isWindows then p else { p with ToolPath = altToolPath } path |> Choco.push (fun p -> { p with - Source = "https://push.chocolatey.org/" + Source = chocosource ApiKey = Environment.environVarOrFail "CHOCOLATEY_API_KEY" } |> changeToolPath) ) @@ -1656,6 +1657,8 @@ prevDocs ?=> "GenerateDocs" ==> "Release_Staging" "DotNetCorePushNuGet" ==> "Release_Staging" +"DotNetCorePushChocolateyPackage" + ==> "Release_Staging" // If 'Default' happens it needs to happen before 'EnsureTestsRun' "Default" From 935c48c009c85b147cf49680db6dc699cc310697 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 23:38:12 +0200 Subject: [PATCH 19/31] release notes --- RELEASE_NOTES.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 57c81891a99..b6b463718d7 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,7 +2,11 @@ ## 5.0.0-rc013 - 2018-05-20 -* FAKE5: Add partial restore (to improve the speed when using in a release-pipeline) - https://github.com/fsharp/FAKE/issues/1926 +* ENHANCEMENT: Add partial restore (to improve the speed when using in a release-pipeline) - https://github.com/fsharp/FAKE/issues/1926 +* FAKE5: Xake now supports FAKE 5 and is advertised as module - https://github.com/xakebuild/Xake +- ENHANCEMENT: Parallelize targets even more - https://github.com/fsharp/FAKE/pull/1934 +- COSMETICS: Targets are always shown as "failed" - https://github.com/fsharp/FAKE/issues/1929 +- COSMETICS: Target description was printed twice - https://github.com/fsharp/FAKE/issues/1931 ## 5.0.0-rc012 - 2018-05-12 From 0802e9840044febf0e63018b918a52180a6aab16 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Thu, 17 May 2018 23:40:21 +0200 Subject: [PATCH 20/31] update paket and paket.core --- paket.dependencies | 2 +- paket.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/paket.dependencies b/paket.dependencies index 518919a0172..9cbe56605c8 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -version 5.163.2 +version 5.165.0 content: none // just in case we need some special nuget feature again... //source https://ci.appveyor.com/nuget/paket diff --git a/paket.lock b/paket.lock index 8ba7cd8443b..9fcb408187a 100644 --- a/paket.lock +++ b/paket.lock @@ -313,7 +313,7 @@ NUGET NUnit.Extension.VSProjectLoader (3.7) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.163.2) + Paket.Core (5.165.0) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 @@ -1914,7 +1914,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net46) (< net20)) (&& (== net462) (< net20)) (&& (== netcoreapp2.0) (< netstandard2.0)) (== netstandard1.6) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: || (&& (== net46) (< net45)) (&& (== net462) (< net45)) (== netcoreapp2.0) (== netstandard1.6) (== netstandard2.0) - Paket.Core (5.163.2) + Paket.Core (5.165.0) Chessie (>= 0.6) - restriction: || (== net46) (== net462) (== netcoreapp2.0) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard1.6) (>= netstandard2.0)) (== netstandard2.0) FSharp.Compiler.Tools - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) FSharp.Core - restriction: || (== net46) (== net462) (&& (== netcoreapp2.0) (>= net45)) (&& (== netstandard1.6) (>= net45)) (&& (== netstandard2.0) (>= net45)) @@ -3030,7 +3030,7 @@ NUGET System.Xml.XmlDocument (>= 4.3) - restriction: && (< net20) (>= netstandard1.3) (< netstandard2.0) Octokit (0.29) NETStandard.Library (>= 1.6) - restriction: && (< net45) (>= netstandard1.1) - Paket.Core (5.163.2) + Paket.Core (5.165.0) Chessie (>= 0.6) - restriction: || (>= net45) (>= netstandard2.0) FSharp.Compiler.Tools - restriction: >= net45 FSharp.Core - restriction: >= net45 From d7b1fbbd650cccd487a4f76e67f83b409609151d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 20:32:00 +0200 Subject: [PATCH 21/31] Fix errors on production deployment - Test production deployment with fake-staging github user & repository on staging - Fix https://github.com/fsharp/FAKE/issues/1750 - Fix another issue with globbing when the base directory name is a substring of the directory to glob into. --- build.fsx | 21 ++++------ src/app/Fake.IO.FileSystem/Globbing.fs | 30 +++++++++---- .../Fake.Core.UnitTests/Fake.IO.Globbing.fs | 42 +++++++++++++++---- 3 files changed, 66 insertions(+), 27 deletions(-) diff --git a/build.fsx b/build.fsx index 6bfe8325070..db722e104d7 100644 --- a/build.fsx +++ b/build.fsx @@ -81,10 +81,7 @@ let projectName = "FAKE" let projectSummary = "FAKE - F# Make - Get rid of the noise in your build scripts." let projectDescription = "FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#." let authors = ["Steffen Forkmann"; "Mauricio Scheffer"; "Colin Bull"; "Matthias Dittrich"] -let gitRaw = Environment.environVarOrDefault "gitRaw" "https://raw.github.com/fsharp" - -let gitOwner = "fsharp" -let gitHome = "https://github.com/" + gitOwner +let github_release_user = Environment.environVarOrDefault "github_release_user" "fsharp" // The name of the project on GitHub let gitName = "FAKE" @@ -483,16 +480,16 @@ Target.create "GenerateDocs" (fun _ -> let source = "./help" let docsTemplate = "docpage.cshtml" let indexTemplate = "indexpage.cshtml" - let githubLink = "https://github.com/fsharp/FAKE" + let githubLink = sprintf "https://github.com/%s/%s" github_release_user gitName let projInfo = [ "page-description", "FAKE - F# Make" "page-author", String.separated ", " authors "project-author", String.separated ", " authors "github-link", githubLink "version", simpleVersion - "project-github", "http://github.com/fsharp/fake" + "project-github", sprintf "http://github.com/%s/%s" github_release_user gitName "project-nuget", "https://www.nuget.org/packages/FAKE" - "root", "http://fsharp.github.io/FAKE" + "root", "https://fake.build" "project-name", "FAKE - F# Make" ] let layoutRoots = [ "./help/templates"; "./help/templates/reference"] @@ -1162,7 +1159,6 @@ Target.create "DotNetCorePushChocolateyPackage" (fun _ -> Target.create "CheckReleaseSecrets" (fun _ -> Environment.environVarOrFail "CHOCOLATEY_API_KEY" |> ignore Environment.environVarOrFail "nugetkey" |> ignore - Environment.environVarOrFail "github_user" |> ignore Environment.environVarOrFail "github_token" |> ignore ) @@ -1286,7 +1282,7 @@ Target.create "ReleaseDocs" (fun _ -> TraceSecrets.register "" s sprintf "%s:x-oauth-basic@" s | _ -> "" - let url = Environment.environVarOrDefault "fake_git_url" (sprintf "https://%sgithub.com/fsharp/FAKE.git" auth) + let url = sprintf "https://%sgithub.com/%s/%s.git" auth github_release_user gitName Git.Repository.cloneSingleBranch "" url "gh-pages" "gh-pages" Git.Repository.fullclean "gh-pages" @@ -1308,8 +1304,8 @@ Target.create "FastRelease" (fun _ -> s | _ -> failwith "please set the github_token environment variable to a github personal access token with repro access." let auth = sprintf "%s:x-oauth-basic@" token - let url = Environment.environVarOrDefault "fake_git_url" (sprintf "https://%sgithub.com/fsharp/FAKE.git" auth) - + let url = sprintf "https://%sgithub.com/%s/%s.git" auth github_release_user gitName + let gitDirectory = Environment.environVarOrDefault "git_directory" "" if not BuildServer.isLocalBuild then Git.CommandHelper.directRunGitCommandAndFail gitDirectory "config user.email matthi.d@gmail.com" @@ -1331,7 +1327,7 @@ Target.create "FastRelease" (fun _ -> |> List.map (fun n -> sprintf "nuget/dotnetcore/Fake.netcore/fake-dotnetcore-%s.zip" n) GitHub.createClientWithToken token - |> GitHub.draftNewRelease gitOwner gitName simpleVersion (release.SemVer.PreRelease <> None) release.Notes + |> GitHub.draftNewRelease github_release_user gitName simpleVersion (release.SemVer.PreRelease <> None) release.Notes |> GitHub.uploadFiles files |> GitHub.publishDraft |> Async.RunSynchronously @@ -1363,6 +1359,7 @@ Target.create "PrepareArtifacts" (fun _ -> Trace.trace "ensure artifacts." let files = !! (artifactsDir "fake-dotnetcore-*.zip") + |> GlobbingPattern.setBaseDir "C:\\" // workaround a globbing bug, remove me with 5.0.0-rc014 |> Seq.toList Trace.tracefn "files: %A" files files diff --git a/src/app/Fake.IO.FileSystem/Globbing.fs b/src/app/Fake.IO.FileSystem/Globbing.fs index c01fcea4a84..c4da98f7995 100644 --- a/src/app/Fake.IO.FileSystem/Globbing.fs +++ b/src/app/Fake.IO.FileSystem/Globbing.fs @@ -100,16 +100,30 @@ let internal getRoot (baseDirectory : string) (pattern : string) = let internal search (baseDir : string) (input : string) = let baseDir = normalizePath baseDir let input = normalizePath input - let input = input.Replace(baseDir, "") + let input = input.Replace(baseDir + string Path.DirectorySeparatorChar, "") let filePattern = Path.GetFileName(input) - input.Split([| '/'; '\\' |], StringSplitOptions.RemoveEmptyEntries) - |> Seq.map (function - | "**" -> Recursive - | a when a = filePattern -> FilePattern(a) - | a when driveRegex.IsMatch a -> Directory(a + "\\") - | a -> Directory(a)) - |> Seq.toList + + let splits = input.Split([| '/'; '\\' |], StringSplitOptions.None) + let baseItems = + let start, rest = + if input.StartsWith "\\\\" && splits.Length >= 4 then + let serverName = splits.[2] + let share = splits.[3] + [ Directory (sprintf "\\\\%s\\%s" serverName share) ], splits |> Seq.skip 4 + else + [], splits |> Array.toSeq + let restList = + rest + |> Seq.filter (String.IsNullOrEmpty >> not) + |> Seq.map (function + | "**" -> Recursive + | a when a = filePattern -> FilePattern(a) + | a when driveRegex.IsMatch a -> Directory(a + "\\") + | a -> Directory(a)) + |> Seq.toList + start @ restList + baseItems |> buildPaths [ baseDir ] |> List.map normalizeOutputPath diff --git a/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs b/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs index 8e51a8a5ee9..f70b175fc7b 100644 --- a/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs +++ b/src/test/Fake.Core.UnitTests/Fake.IO.Globbing.fs @@ -4,8 +4,14 @@ open System.IO open Fake.Core open Fake.IO open Fake.IO.Globbing +open Fake.IO.FileSystemOperators +open Fake.IO.Globbing.Operators open Expecto +open Expecto.Flip open Fake.IO.Globbing.Glob +open System.ComponentModel +open System.ComponentModel +open System.IO let getFileIncludeWithKnownBaseDir includes : LazyGlobbingPattern= { Fake.IO.Globbing.LazyGlobbingPattern.BaseDirectory = @"C:\Project" Fake.IO.Globbing.LazyGlobbingPattern.Includes = includes @@ -22,18 +28,40 @@ let tests = Fake.IO.Globbing.ResolvedGlobbingPattern.Results = [ "folder/file1.exe" "folder/file2.exe" ] } - Expect.equal (globExe.IsMatch "folder/test.exe") true "Glob should match relative paths" - Expect.equal (globExe.IsMatch (Path.GetFullPath "folder/test.exe")) true "Glob should match full paths" + Expect.equal "Glob should match relative paths" true (globExe.IsMatch "folder/test.exe") + Expect.equal "Glob should match full paths" true (globExe.IsMatch (Path.GetFullPath "folder/test.exe")) testCase "It should resolve multiple directories" <| fun _ -> let fileIncludes = getFileIncludeWithKnownBaseDir [@"test1\bin\*.dll"; @"test2\bin\*.dll"] let dirIncludes = GlobbingPattern.getBaseDirectoryIncludes(fileIncludes) - Expect.equal 2 dirIncludes.Length "Should have 2 dirs" - Expect.contains dirIncludes (normalizePath(@"C:\Project\test1\bin")) "Should contain first folder" - Expect.contains dirIncludes (normalizePath(@"C:\Project\test2\bin")) "Should contain second folder" + Expect.equal "Should have 2 dirs" dirIncludes.Length 2 + Expect.contains "Should contain first folder" (normalizePath(@"C:\Project\test1\bin")) dirIncludes + Expect.contains "Should contain second folder" (normalizePath(@"C:\Project\test2\bin")) dirIncludes testCase "should only take the most root path when multiple directories share a root" <| fun _ -> let fileIncludes = getFileIncludeWithKnownBaseDir [@"tests\**\test1\bin\*.dll"; @"tests\test2\bin\*.dll"] let dirIncludes = GlobbingPattern.getBaseDirectoryIncludes(fileIncludes) - Expect.equal 1 dirIncludes.Length "Should have only 1 directory" - Expect.contains dirIncludes (normalizePath(@"C:\Project\tests")) "Should contain tests folder" + Expect.equal "Should have only 1 directory" dirIncludes.Length 1 + Expect.contains "Should contain tests folder" (normalizePath(@"C:\Project\tests")) dirIncludes + + 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 + |> Expect.equal "Expected equal lists." ["match1.txt"; "match2.txt"; "match3.txt"] + finally + Directory.Delete(testDir, true) ] From 04be4a290a95d0de93e7fd31a212ccb6a5530c42 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 20:32:53 +0200 Subject: [PATCH 22/31] add proposed target file changes. --- .paket/Paket.Restore.targets | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets index e77c1505618..55292f317cc 100644 --- a/.paket/Paket.Restore.targets +++ b/.paket/Paket.Restore.targets @@ -60,6 +60,9 @@ + + + $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)')) @@ -72,15 +75,16 @@ - - + - + + + $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).paket.references.cached @@ -90,7 +94,6 @@ $(MSBuildProjectDirectory)\paket.references - $(MSBuildProjectDirectory)\obj\$(MSBuildProjectFile).$(TargetFramework).paket.resolved false true true @@ -113,7 +116,7 @@ true - target-framework '$(TargetFramework)' or '$(TargetFrameworks)' + target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths) @@ -141,8 +144,9 @@ %(PaketReferencesFileLinesInfo.PackageVersion) - All + All runtime + true From 3debf9b70b59cbc1e50d4df748271f39f51fff7c Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 20:39:38 +0200 Subject: [PATCH 23/31] change space according to feedback from @MangelMaxime --- src/app/Fake.Core.Trace/TraceListener.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/Fake.Core.Trace/TraceListener.fs b/src/app/Fake.Core.Trace/TraceListener.fs index 49fae4340f9..ad9de29ded9 100644 --- a/src/app/Fake.Core.Trace/TraceListener.fs +++ b/src/app/Fake.Core.Trace/TraceListener.fs @@ -244,7 +244,7 @@ type ConsoleTraceListener(importantMessagesToStdErr, colorMap, ansiColor) = if not (isNull description) then let msg = TraceData.TraceMessage("", true) let color2 = colorMap msg - write false color2 true (sprintf " %s" description) + write false color2 true description | TraceData.OpenTag (tag, descr) -> write false color true (sprintf "Starting %s '%s': %s" tag.Type tag.Name descr) | TraceData.CloseTag (tag, time, status) -> From fd04162ecab479016ef2518c1690f5f7c6a96bb6 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 21:16:35 +0200 Subject: [PATCH 24/31] make sure it works with exsiting sepchar at the end. --- src/app/Fake.IO.FileSystem/Globbing.fs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/Fake.IO.FileSystem/Globbing.fs b/src/app/Fake.IO.FileSystem/Globbing.fs index c4da98f7995..aefdf3ac5ea 100644 --- a/src/app/Fake.IO.FileSystem/Globbing.fs +++ b/src/app/Fake.IO.FileSystem/Globbing.fs @@ -100,7 +100,10 @@ let internal getRoot (baseDirectory : string) (pattern : string) = let internal search (baseDir : string) (input : string) = let baseDir = normalizePath baseDir let input = normalizePath input - let input = input.Replace(baseDir + string Path.DirectorySeparatorChar, "") + let input = + if String.IsNullOrEmpty baseDir + then input + else input.Replace(baseDir.TrimEnd([|Path.DirectorySeparatorChar|]) + string Path.DirectorySeparatorChar, "") let filePattern = Path.GetFileName(input) From 740782264f770e64c704a617d8a5ea5da3e0ec50 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 21:58:02 +0200 Subject: [PATCH 25/31] deploy staging to staging.fake.build --- build.fsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index db722e104d7..930d1e31a96 100644 --- a/build.fsx +++ b/build.fsx @@ -133,6 +133,7 @@ let apikey = Environment.environVarOrDefault "nugetkey" "" let nugetsource = Environment.environVarOrDefault "nugetsource" "https://www.nuget.org/api/v2/package" let chocosource = Environment.environVarOrDefault "chocosource" "https://push.chocolatey.org/" let artifactsDir = Environment.environVarOrDefault "artifactsdirectory" "" +let docsDomain = Environment.environVarOrDefault "docs_domain" "fake.build" let fromArtifacts = not <| String.isNullOrEmpty artifactsDir BuildServer.install [ @@ -489,7 +490,7 @@ Target.create "GenerateDocs" (fun _ -> "version", simpleVersion "project-github", sprintf "http://github.com/%s/%s" github_release_user gitName "project-nuget", "https://www.nuget.org/packages/FAKE" - "root", "https://fake.build" + "root", sprintf "https://%s" docsDomain "project-name", "FAKE - F# Make" ] let layoutRoots = [ "./help/templates"; "./help/templates/reference"] @@ -503,7 +504,7 @@ Target.create "GenerateDocs" (fun _ -> Directory.ensure docsCircleCi Shell.copyDir docsCircleCi ".circleci" FileFilter.allFiles File.writeString false "./docs/.nojekyll" "" - File.writeString false "./docs/CNAME" "fake.build" + File.writeString false "./docs/CNAME" docsDomain //CopyDir (docsDir @@ "pics") "help/pics" FileFilter.allFiles Shell.copy (source @@ "markdown") ["RELEASE_NOTES.md"] @@ -1288,6 +1289,7 @@ Target.create "ReleaseDocs" (fun _ -> Git.Repository.fullclean "gh-pages" Shell.copyRecursive "docs" "gh-pages" true |> printfn "%A" Shell.copyFile "gh-pages" "./Samples/FAKE-Calculator.zip" + File.writeString false "./gh-pages/CNAME" docsDomain Git.Staging.stageAll "gh-pages" if not BuildServer.isLocalBuild then Git.CommandHelper.directRunGitCommandAndFail "gh-pages" "config user.email matthi.d@gmail.com" From 383bb0d70783738a138dea2df0a0d44576aecdf1 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Fri, 18 May 2018 22:39:41 +0200 Subject: [PATCH 26/31] fix another globbing bug on unix --- src/app/Fake.IO.FileSystem/Globbing.fs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/Fake.IO.FileSystem/Globbing.fs b/src/app/Fake.IO.FileSystem/Globbing.fs index aefdf3ac5ea..20f73ca8ade 100644 --- a/src/app/Fake.IO.FileSystem/Globbing.fs +++ b/src/app/Fake.IO.FileSystem/Globbing.fs @@ -114,7 +114,12 @@ let internal search (baseDir : string) (input : string) = let serverName = splits.[2] let share = splits.[3] [ Directory (sprintf "\\\\%s\\%s" serverName share) ], splits |> Seq.skip 4 + elif splits.Length >= 2 && Path.IsPathRooted input && driveRegex.IsMatch splits.[0] then + [ Directory(splits.[0] + "\\") ], splits |> Seq.skip 1 + elif splits.Length >= 2 && Path.IsPathRooted input && input.StartsWith "/" then + [ Directory("/") ], splits |> Array.toSeq else + if Path.IsPathRooted input then failwithf "Unknown globbing input '%s', try to use a relative path and report an issue!" input [], splits |> Array.toSeq let restList = rest @@ -122,7 +127,6 @@ let internal search (baseDir : string) (input : string) = |> Seq.map (function | "**" -> Recursive | a when a = filePattern -> FilePattern(a) - | a when driveRegex.IsMatch a -> Directory(a + "\\") | a -> Directory(a)) |> Seq.toList start @ restList From 9baeb54546d471148e11c3a582eb0494dd6c9c08 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 19 May 2018 00:08:49 +0200 Subject: [PATCH 27/31] fix https warning --- help/markdown/legacy-index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help/markdown/legacy-index.md b/help/markdown/legacy-index.md index 79ef1ad863b..a1b417c3ccd 100644 --- a/help/markdown/legacy-index.md +++ b/help/markdown/legacy-index.md @@ -62,7 +62,7 @@ You can find more users [here](users.html). * [Release Notes](RELEASE_NOTES.html) -* [![NuGet Status](http://img.shields.io/nuget/v/FAKE.svg?style=flat)](https://www.nuget.org/packages/FAKE/) +* [![NuGet Status](https://img.shields.io/nuget/v/FAKE.svg?style=flat)](https://www.nuget.org/packages/FAKE/) # Using FAKE From f823e4c876725dd917d5bd3f88fbc2297ade1aa8 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 19 May 2018 01:14:50 +0200 Subject: [PATCH 28/31] Update to rc14 and fix some docs, add supporters page and information about staging environment. --- RELEASE_NOTES.md | 8 +++++++ help/markdown/contributing.md | 19 ++++++++++++++++ help/markdown/help-supporters.md | 24 ++++++++++++++++++++ help/markdown/legacy-dacpac.md | 5 +++- help/markdown/legacy-filewatcher.md | 5 ++++ help/markdown/{todo-fsc.md => legacy-fsc.md} | 2 +- help/redirects/fsc.md | 5 ++-- help/templates/template.cshtml | 4 ++-- src/app/Fake.DotNet.Fsc/Fsc.fs | 3 ++- 9 files changed, 67 insertions(+), 8 deletions(-) create mode 100644 help/markdown/help-supporters.md rename help/markdown/{todo-fsc.md => legacy-fsc.md} (96%) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index b6b463718d7..6fbe9bc4245 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,13 @@ # Release Notes +## 5.0.0-rc014 - 2018-05-20 + +* BUGFIX: Globbing now works correctly outside the working directory - https://github.com/fsharp/FAKE/pull/1927 +* COSMETICS: Fake is printing target description twice - https://github.com/fsharp/FAKE/issues/1931 +* ENHANCEMENT: Fake parallel logic is not even smarter in running targets parallel - https://github.com/fsharp/FAKE/pull/1934 +* DOCS: We now have a full staging environment in place - https://fake.build/contributing.html#Staging-environment +* DOCS: We now have a place to thank our supporters - https://fake.build/help-supporters.html + ## 5.0.0-rc013 - 2018-05-20 * ENHANCEMENT: Add partial restore (to improve the speed when using in a release-pipeline) - https://github.com/fsharp/FAKE/issues/1926 diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index 771d81962f7..410ee383b1f 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -10,6 +10,8 @@ This page should provide you with some basic information if you're thinking abou * Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the Project shall be under the terms and conditions of the Apache 2.0 license. See License.txt for details. +* TLDR: Send a pull request with either documentation (`/help` folder) or code changes. + ## Documentation The documentation for FAKE is automatically generated using the amazing [F# Formatting](https://github.com/tpetricek/FSharp.Formatting) library. @@ -136,6 +138,23 @@ e.g: Using dotnet cli ...Other Dependencies... nuget Fake.DotNet.NuGet == 1.0.0 //" //Require version 1.0.0, which is the local build +## Staging environment + +In order to test and preview our changes faster we have a fully automated release process in place. +This staging environment is based on VSTS and MyGet. + +If you ever need a release/bugfix fast, make sure to mention that in your PR, we can quickly provide a build on the following infrastructure: + +* Website: https://staging.fake.build +* Chocolatey package: `choco install fake --version --source https://www.myget.org/F/fake-chocolatey-vsts/api/v2` +* NuGet feed: https://www.myget.org/F/fake-vsts/api/v3/index.json + +
      +
      INFO
      + Because of package retention policies those builds will not be available forever! We will quickly release the builds once everything works + Those bits should be considered for "unblocking"-purposes or testing only. +
      + ## General considerations * Fake 4 (FakeLib) is in maintainance mode. Therefore new features need to be at least available as new FAKE 5 module (that might mean that the old module needs to be migrated as part of the PR). diff --git a/help/markdown/help-supporters.md b/help/markdown/help-supporters.md new file mode 100644 index 00000000000..b81f4355994 --- /dev/null +++ b/help/markdown/help-supporters.md @@ -0,0 +1,24 @@ +# This is our (probably non exhaustive) list of supporters + +Note: Not everything is directly support. Most of the times fake tries to get along with the free service plans. + +Thanks to: + +* [Microsoft](https://www.microsoft.com) + For providing free VSTS-Build-Agents and powering our release-process. +* [MyGet](https://www.myget.org/) + For providing our staging environment for package hosting. +* [NuGet](https://www.nuget.org/) + For hosting our stable packages. +* [GitHub](https://github.com/) + For hosting the source code and our documentation pages +* [AppVeyor](https://www.appveyor.com/) + For checking pull requests for errors +* [Travis Ci](https://www.travis-ci.org/) + For checking pull requests for errors +* [GitLab](https://gitlab.com/) + For building and an alternative release pipeline +* [CircleCi](https://circleci.com/) + For checking our releases +* [CloudFlare](https://www.cloudflare.com/) + For providing SSL and basic protections on our https://fake.build page. diff --git a/help/markdown/legacy-dacpac.md b/help/markdown/legacy-dacpac.md index fcf6452f615..197d3bd16b4 100644 --- a/help/markdown/legacy-dacpac.md +++ b/help/markdown/legacy-dacpac.md @@ -1,6 +1,9 @@ # Packaging and Deploying SQL Databases -**Note: This documentation is for FAKE before version 5 (or the non-netcore version). The new documentation can be found [here](sql-dacpac.html)** +
      +
      INFO
      +

      This documentation is for FAKE.exe before version 5 (or the non-netcore version). The documentation for FAKE 5 can be found here

      +
      FAKE can be used to create a SQL DACPAC and also deploy it to a SQL Server using the MSDeploy executable. This is installed by default with Visual Studio and with the SQL Server Data Tools (SSDT) package. diff --git a/help/markdown/legacy-filewatcher.md b/help/markdown/legacy-filewatcher.md index 3621acb8899..2e1bb4093e9 100644 --- a/help/markdown/legacy-filewatcher.md +++ b/help/markdown/legacy-filewatcher.md @@ -1,5 +1,10 @@ # Watching for file changes with "FAKE - F# Make" +
      +
      INFO
      +

      This documentation is for FAKE.exe before version 5 (or the non-netcore version). The documentation for FAKE 5 can be found here

      +
      + FAKE makes it easy to setup monitoring for filesystem changes. Using the standard glob patterns you can watch for changes, and automatically run a function or another target. diff --git a/help/markdown/todo-fsc.md b/help/markdown/legacy-fsc.md similarity index 96% rename from help/markdown/todo-fsc.md rename to help/markdown/legacy-fsc.md index f114103352b..14421d21a05 100644 --- a/help/markdown/todo-fsc.md +++ b/help/markdown/legacy-fsc.md @@ -2,7 +2,7 @@
      INFO
      -

      This documentation is for FAKE.exe before version 5 (or the non-netcore version). The documentation needs te be updated, please help!

      +

      This documentation is for FAKE.exe before version 5 (or the non-netcore version). The documentation for FAKE 5 can be found here

      The [Fsc task set](apidocs/v5/legacy/fake-fschelper.html) in FAKE can be used to build F# source files and output libraries, modules, diff --git a/help/redirects/fsc.md b/help/redirects/fsc.md index f94c42ffe61..ab25ac267e9 100644 --- a/help/redirects/fsc.md +++ b/help/redirects/fsc.md @@ -2,6 +2,5 @@ This page moved to: -- Not yet migrated to FAKE 5 -- [here for FAKE 4](todo-fsc.html) (Final location not decided yet) - +- [here for FAKE 5](/apidocs/v5/fake-dotnet-fsc.html) +- [here for FAKE 4](legacy-fsc.html) diff --git a/help/templates/template.cshtml b/help/templates/template.cshtml index 4cba65f7c97..2dec8b1422e 100644 --- a/help/templates/template.cshtml +++ b/help/templates/template.cshtml @@ -48,7 +48,7 @@
  • - Tutorials + Tutorials
    • Getting Started Tutorial
    • Build script caching
    • @@ -62,6 +62,7 @@ Project
      • Who is using FAKE?
      • +
      • Supporters
      • NuGet
      • Chocolatey
      • GitHub
      • @@ -213,7 +214,6 @@
      • ?.?.IIS
      • ?.?.Vagrant
      • DotNet.FxCop
      • -
      • DotNet.Fsc
      • DotNet.Testing.Canopy
      • ?.?.OctopusDeploy
      • JavaScript?.TypeScript
      • diff --git a/src/app/Fake.DotNet.Fsc/Fsc.fs b/src/app/Fake.DotNet.Fsc/Fsc.fs index ca38417c7db..846b57546e3 100644 --- a/src/app/Fake.DotNet.Fsc/Fsc.fs +++ b/src/app/Fake.DotNet.Fsc/Fsc.fs @@ -1,5 +1,6 @@ /// 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. +/// +/// **Note: This documentation is for FAKE version 5.0 or later. The old documentation can be found [here](/legacy-fsc.html)** [] module Fake.DotNet.Fsc From 64ddb771277125469fc5d4d37f8d6f3ec13d379c Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 19 May 2018 01:42:58 +0200 Subject: [PATCH 29/31] Add github releases page. --- help/markdown/contributing.md | 1 + 1 file changed, 1 insertion(+) diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index 410ee383b1f..b764d824310 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -148,6 +148,7 @@ If you ever need a release/bugfix fast, make sure to mention that in your PR, we * Website: https://staging.fake.build * Chocolatey package: `choco install fake --version --source https://www.myget.org/F/fake-chocolatey-vsts/api/v2` * NuGet feed: https://www.myget.org/F/fake-vsts/api/v3/index.json +* GitHub Releases: https://github.com/fake-staging/FAKE/releases
        INFO
        From 7c7ea730dc7ba7db41a3045ab229475381d9541d Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 19 May 2018 01:50:16 +0200 Subject: [PATCH 30/31] Fixes https://github.com/fsharp/FAKE/issues/1925 --- RELEASE_NOTES.md | 2 +- src/app/Fake.IO.FileSystem/Globbing.fs | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 6fbe9bc4245..8e61cb66525 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,7 +2,7 @@ ## 5.0.0-rc014 - 2018-05-20 -* BUGFIX: Globbing now works correctly outside the working directory - https://github.com/fsharp/FAKE/pull/1927 +* BUGFIX: Globbing is now more robust (especially outside the working directory) - https://github.com/fsharp/FAKE/issues/1925 https://github.com/fsharp/FAKE/issues/1750 and some not tracked issues * COSMETICS: Fake is printing target description twice - https://github.com/fsharp/FAKE/issues/1931 * ENHANCEMENT: Fake parallel logic is not even smarter in running targets parallel - https://github.com/fsharp/FAKE/pull/1934 * DOCS: We now have a full staging environment in place - https://fake.build/contributing.html#Staging-environment diff --git a/src/app/Fake.IO.FileSystem/Globbing.fs b/src/app/Fake.IO.FileSystem/Globbing.fs index 20f73ca8ade..1f3adfad64c 100644 --- a/src/app/Fake.IO.FileSystem/Globbing.fs +++ b/src/app/Fake.IO.FileSystem/Globbing.fs @@ -103,7 +103,13 @@ let internal search (baseDir : string) (input : string) = let input = if String.IsNullOrEmpty baseDir then input - else input.Replace(baseDir.TrimEnd([|Path.DirectorySeparatorChar|]) + string Path.DirectorySeparatorChar, "") + else + // The final \ (or /) makes sure to only match complete folder names (as one folder name could be a substring of the other) + let start = baseDir.TrimEnd([|Path.DirectorySeparatorChar|]) + string Path.DirectorySeparatorChar + // See https://github.com/fsharp/FAKE/issues/1925 + if input.StartsWith start then + input.Substring start.Length + else input let filePattern = Path.GetFileName(input) From d1e5c1afd4f16fc3fcc511f5d0aeb306dbeb5669 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sat, 19 May 2018 02:06:30 +0200 Subject: [PATCH 31/31] fix contributing.md --- help/markdown/contributing.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/help/markdown/contributing.md b/help/markdown/contributing.md index b764d824310..a9b5de5db24 100644 --- a/help/markdown/contributing.md +++ b/help/markdown/contributing.md @@ -148,13 +148,13 @@ If you ever need a release/bugfix fast, make sure to mention that in your PR, we * Website: https://staging.fake.build * Chocolatey package: `choco install fake --version --source https://www.myget.org/F/fake-chocolatey-vsts/api/v2` * NuGet feed: https://www.myget.org/F/fake-vsts/api/v3/index.json -* GitHub Releases: https://github.com/fake-staging/FAKE/releases +* GitHub Releases: https://github.com/fake-staging/FAKE/releases (if needed) -
        -
        INFO
        - Because of package retention policies those builds will not be available forever! We will quickly release the builds once everything works - Those bits should be considered for "unblocking"-purposes or testing only. -
        +
        +
        INFO
        + Because of package retention policies those builds will not be available forever! We will quickly release the builds once everything works + Those bits should be considered for "unblocking"-purposes or testing only. +
        ## General considerations