diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml
index 81fe67da..53a38963 100644
--- a/.github/workflows/dotnet-core.yml
+++ b/.github/workflows/dotnet-core.yml
@@ -16,11 +16,11 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
- dotnet-version: 2.1.402
+ dotnet-version: 5.0.100
- name: Build
env:
FSHARP_DATA_SQLCLIENT_USE_SQLLOCALDB_FOR_TESTS: 1
run: |
- call "C:\Program Files\Microsoft SQL Server\130\Tools\Binn\SqlLocalDB.exe" info
- ./build.cmd
+ SqlLocalDB.exe info
+ ./build.cmd
diff --git a/appveyor.yml b/appveyor.yml
index 127981a3..a446a46d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,6 +1,6 @@
init:
- git config --global core.autocrlf input
-image: Visual Studio 2017
+image: Visual Studio 2019
build_script:
- cmd: build.cmd GenerateDocs
test: off
diff --git a/build.fsx b/build.fsx
index e659192f..c51b24da 100644
--- a/build.fsx
+++ b/build.fsx
@@ -75,6 +75,35 @@ let slnPath = "SqlClient.sln"
let testProjectsSlnPath = "TestProjects.sln"
let testSlnPath = "Tests.sln"
let testProjectPath = "tests/SqlClient.Tests/SqlClient.Tests.fsproj"
+let runMsBuild project =
+ Fake.DotNet.MSBuild.build
+ (fun args ->
+ let toolPath =
+ [
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\MSBuild\current\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\MSBuild\current\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\current\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin"
+ @"C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin"
+ @"C:\Program Files (x86)\MSBuild\15.0\Bin"
+ @"\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
+ args.ToolPath
+ ]
+ |> List.map (fun p -> Path.Combine(p, "MSBuild.exe"))
+ |> List.find File.Exists
+ let properties =
+ [ yield "Configuration", "Release"
+ for n,v in args.Properties do
+ if n <> "Configuration" then
+ yield n,v
+ ]
+ { args
+ with ToolPath = toolPath
+ Properties = properties
+ } ) project
+
Target.create "Clean" (fun _ ->
Shell.cleanDirs ["bin"; "temp"]
@@ -165,14 +194,8 @@ Target.create "DeployTestDB" (fun _ ->
)
Target.create "BuildTestProjects" (fun _ ->
- DotNet.build
- (fun args ->
- {
- args with
- Configuration = DotNet.Release
- //Common = { args.Common with Verbosity = Some DotNet.Verbosity.Detailed }
- } |> dnDefault)
- testProjectsSlnPath
+ DotNet.restore dnDefault testProjectsSlnPath
+ runMsBuild testProjectsSlnPath
)
// --------------------------------------------------------------------------------------
@@ -180,6 +203,8 @@ Target.create "BuildTestProjects" (fun _ ->
Target.create "RunTests" (fun _ ->
// if we don't compile the targets sequentially, we get an error with the generated types:
// System.IO.IOException: The process cannot access the file 'C:\Users\foo\AppData\Local\Temp\tmpF38.dll' because it is being used by another process.
+ DotNet.restore dnDefault testSlnPath
+ runMsBuild testSlnPath
try
DotNet.test (fun args -> { args with Framework = Some "net461"; Common = args.Common |> dnDefault }) testSlnPath
DotNet.test (fun args -> { args with Framework = Some "netcoreapp2.0"; Common = args.Common |> dnDefault }) testProjectPath
diff --git a/global.json b/global.json
index aac6be5e..f3755cef 100644
--- a/global.json
+++ b/global.json
@@ -1 +1,5 @@
-{ "sdk": { "version": "2.1.402" } }
\ No newline at end of file
+{
+ "sdk": {
+ "version": "5.0.100"
+ }
+}
diff --git a/paket.dependencies b/paket.dependencies
index e529d06d..a53d9356 100644
--- a/paket.dependencies
+++ b/paket.dependencies
@@ -1,6 +1,6 @@
source https://www.nuget.org/api/v2/
generate_load_scripts: on
-
+storage: none
github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875493 src/ProvidedTypes.fs
github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875493 src/ProvidedTypes.fsi
github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875493 src/ProvidedTypesTesting.fs
@@ -9,7 +9,7 @@ group Build
source https://www.nuget.org/api/v2/
framework: >= net451
generate_load_scripts: on
-
+
nuget FAKE = 5.8.4
nuget Fake.Lib = 5.8.4
@@ -21,8 +21,9 @@ group Build
group DesignTime
source https://www.nuget.org/api/v2/
- framework: >= net461,netstandard20
-
+ framework: >= net461, >= netstandard20
+ storage: none
+
nuget System.Configuration.ConfigurationManager
nuget System.Data.Common
nuget System.Data.SqlClient
@@ -33,9 +34,10 @@ group DesignTime
group Test
source https://www.nuget.org/api/v2/
- framework: net461, netcoreapp2.0
+ framework: >= net461, >= netcoreapp2.0
+ storage: none
- nuget FSharp.Core = 4.5.2 redirects:force
+ nuget FSharp.Core = 5.0.0 redirects:force
nuget System.Data.SqlClient
nuget System.Configuration.ConfigurationManager
@@ -47,12 +49,14 @@ group Test
group Net40
source https://www.nuget.org/api/v2/
framework: net40
+ storage: none
nuget FSharp.Core = 4.1.18
group TestProjects
source https://www.nuget.org/api/v2/
- framework: >= net40, netcoreapp2.0, netstandard2.0
+ framework: >= net40, >= netcoreapp2.0, >= netstandard2.0
+ storage: none
nuget FSharp.Core = 4.3.4
@@ -61,14 +65,17 @@ group TestProjects
group Samples
source https://www.nuget.org/api/v2/
- framework: >= net40
-
- nuget FSharp.Core = 4.5.2
+ framework: >= net40, >= netcoreapp2.0, >= netstandard2.0
+ redirects: on
+
+ nuget FSharp.Core = 4.5.2 redirects: force
nuget Microsoft.AspNet.WebApi
nuget Microsoft.AspNet.WebApi.Client
nuget Microsoft.AspNet.WebApi.Core
nuget Microsoft.AspNet.WebApi.WebHost
+ nuget Microsoft.SqlServer.Types
- nuget Newtonsoft.Json
+ nuget Newtonsoft.Json redirects: force
nuget FSharp.Data.SqlClient
+
\ No newline at end of file
diff --git a/paket.lock b/paket.lock
index 8afc0203..3f1e96a3 100644
--- a/paket.lock
+++ b/paket.lock
@@ -1,4 +1,5 @@
GENERATE-LOAD-SCRIPTS: ON
+STORAGE: NONE
GITHUB
remote: fsprojects/FSharp.TypeProviders.SDK
src/ProvidedTypes.fs (28a24a69ada68ebd1ad25226634f4608e4875493)
@@ -17,630 +18,718 @@ NUGET
Microsoft.AspNet.Razor (>= 2.0.30506)
RazorEngine (>= 3.3)
Microsoft.AspNet.Razor (3.2.6)
- NuGet.CommandLine (4.7.1)
+ NuGet.CommandLine (5.8)
RazorEngine (3.3)
Microsoft.AspNet.Razor (>= 2.0.30506)
GROUP DesignTime
-RESTRICTION: || (== netstandard2.0) (>= net461)
+STORAGE: NONE
+RESTRICTION: || (>= net461) (>= netstandard2.0)
NUGET
remote: https://www.nuget.org/api/v2
- FSharp.Core (4.6.2)
- Microsoft.NETCore.Platforms (2.2) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (2.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.SqlServer.TransactSql.ScriptDom (15.0.4200.1)
+ FSharp.Core (5.0)
+ Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= net50)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.SqlServer.TransactSql.ScriptDom (150.4897.1)
Microsoft.SqlServer.Types (14.0.1016.290)
- Microsoft.Win32.Registry (4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Buffers (>= 4.4) - restriction: || (== netstandard2.0) (&& (>= monoandroid) (>= net461) (< netstandard2.0)) (&& (>= monotouch) (>= net461)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos))
- System.Memory (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Security.AccessControl (>= 4.5)
- System.Security.Principal.Windows (>= 4.5)
- runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net461)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.AccessControl (>= 5.0)
+ System.Security.Principal.Windows (>= 5.0)
+ Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Buffers (4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0))
- System.Collections (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Configuration.ConfigurationManager (4.5)
- System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: == netstandard2.0
- System.Security.Permissions (>= 4.5)
+ runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0))
+ System.Collections (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Configuration.ConfigurationManager (5.0)
+ System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Permissions (>= 5.0)
System.Data.Common (4.3)
- System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Text.RegularExpressions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Data.SqlClient (4.6)
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- runtime.native.System.Data.SqlClient.sni (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Buffers (>= 4.4) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0))
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Memory (>= 4.5.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Security.Principal.Windows (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Globalization (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.IO (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Memory (4.5.2) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Buffers (>= 4.4)
- System.Numerics.Vectors (>= 4.4)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.2)
- System.Numerics.Vectors (4.5) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Reflection (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Reflection.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Resources.ResourceManager (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net451) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime.Caching (4.5)
- System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (== netstandard2.0) (&& (>= monotouch) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac))
- System.Runtime.Extensions (4.3.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Security.AccessControl (4.5)
- System.Security.Principal.Windows (>= 4.5)
- System.Security.Cryptography.ProtectedData (4.5) - restriction: == netstandard2.0
- System.Memory (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0))
- System.Security.Permissions (4.5)
- System.Security.AccessControl (>= 4.5)
- System.Security.Principal.Windows (4.5.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Text.Encoding (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Text.Encoding.CodePages (4.5.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0))
- System.Runtime.CompilerServices.Unsafe (>= 4.5.2)
- System.Text.RegularExpressions (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Threading (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Threading.Tasks (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
- System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (< portable-net45+win8+wp8+wpa81))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Data.SqlClient (4.8.2)
+ Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0))
+ System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net46) (>= netstandard2.0)) (>= net461) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net46) (>= netstandard2.0)) (>= net461) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0
+ Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO (4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime.Caching (5.0)
+ System.Configuration.ConfigurationManager (>= 5.0) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (>= net461) (< netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net451) (>= net46) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard1.3)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (< netstandard2.0) (>= xamarintvos)) (&& (>= net461) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
+ System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Security.AccessControl (5.0)
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ System.Security.Principal.Windows (>= 5.0)
+ System.Security.Cryptography.ProtectedData (5.0) - restriction: && (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0))
+ System.Security.Permissions (5.0)
+ System.Security.AccessControl (>= 5.0)
+ System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (>= net50)
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461)
+ System.Text.RegularExpressions (4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Threading (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
+ System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
GROUP Net40
+STORAGE: NONE
RESTRICTION: == net40
NUGET
remote: https://www.nuget.org/api/v2
FSharp.Core (4.1.18)
GROUP Samples
-RESTRICTION: >= net40
+REDIRECTS: ON
+RESTRICTION: || (>= net40) (>= netstandard2.0)
NUGET
remote: https://www.nuget.org/api/v2
- FSharp.Core (4.5.2)
- FSharp.Data.SqlClient (1.8.4)
- Microsoft.AspNet.WebApi (5.2.6)
- Microsoft.AspNet.WebApi.WebHost (>= 5.2.6 < 5.3)
- Microsoft.AspNet.WebApi.Client (5.2.6)
+ FSharp.Core (4.5.2) - redirects: force
+ FSharp.Data.SqlClient (2.0.7)
+ FSharp.Core (>= 4.1.18) - restriction: >= net40
+ FSharp.Core (>= 4.3.4) - restriction: && (< net40) (>= netstandard2.0)
+ System.Configuration.ConfigurationManager (>= 4.5) - restriction: && (< net40) (>= netstandard2.0)
+ System.Data.SqlClient (>= 4.5.1) - restriction: && (< net40) (>= netstandard2.0)
+ Microsoft.AspNet.WebApi (5.2.7)
+ Microsoft.AspNet.WebApi.WebHost (>= 5.2.7 < 5.3)
+ Microsoft.AspNet.WebApi.Client (5.2.7)
Newtonsoft.Json (>= 6.0.4) - restriction: || (&& (>= net40) (< netstandard2.0) (>= portable-net45+win8+wp8+wp81+wpa81)) (>= net45)
- Microsoft.AspNet.WebApi.Core (5.2.6)
- Microsoft.AspNet.WebApi.Client (>= 5.2.6)
- Microsoft.AspNet.WebApi.WebHost (5.2.6)
- Microsoft.AspNet.WebApi.Core (>= 5.2.6 < 5.3)
- Newtonsoft.Json (11.0.2)
+ Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0)
+ Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0)
+ Microsoft.AspNet.WebApi.Core (5.2.7)
+ Microsoft.AspNet.WebApi.Client (>= 5.2.7)
+ Microsoft.AspNet.WebApi.WebHost (5.2.7)
+ Microsoft.AspNet.WebApi.Core (>= 5.2.7 < 5.3)
+ Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= net50)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.SqlServer.Types (14.0.1016.290)
+ Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ Newtonsoft.Json (12.0.3) - redirects: force
+ Newtonsoft.Json.Bson (1.0.2) - restriction: && (< net45) (>= netstandard2.0)
+ Newtonsoft.Json (>= 12.0.1) - restriction: || (&& (>= net40) (>= netstandard1.3)) (>= net45) (>= netstandard2.0)
+ runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
+ runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
+ runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
+ runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (4.5.1) - restriction: && (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Configuration.ConfigurationManager (5.0) - restriction: && (< net40) (>= netstandard2.0)
+ System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0))
+ System.Security.Permissions (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0)
+ System.Data.SqlClient (4.8.2) - restriction: && (< net40) (>= netstandard2.0)
+ Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0))
+ System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0
+ Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net40) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (< net40) (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (< net40) (>= net46) (>= netstandard2.0)) (&& (< net40) (>= net461) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
+ System.Security.AccessControl (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= monoandroid) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (< net40) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
+ System.Security.Cryptography.ProtectedData (5.0) - restriction: && (< monoandroid) (< net40) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0))
+ System.Security.Permissions (5.0) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
+ System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (< net40) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
+ System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (>= net50)
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461)
+ System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
+ System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
GROUP Test
-RESTRICTION: || (== net461) (== netcoreapp2.0)
+STORAGE: NONE
+RESTRICTION: || (>= net461) (>= netcoreapp2.0)
NUGET
remote: https://www.nuget.org/api/v2
- FSharp.Core (4.5.2) - redirects: force
- Microsoft.CodeCoverage (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.AppContext (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Collections (>= 4.0.11) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.IO (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
+ FSharp.Core (5.0) - redirects: force
+ Microsoft.CodeCoverage (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.AppContext (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.Collections (>= 4.0.11) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.IO (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.Runtime.Extensions (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
+ System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0)
System.Runtime.InteropServices.RuntimeInformation (>= 4.0)
- Microsoft.Extensions.DependencyModel (2.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
+ Microsoft.Extensions.DependencyModel (2.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
Microsoft.DotNet.PlatformAbstractions (>= 2.1)
Newtonsoft.Json (>= 9.0.1)
- System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0)
- System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0)
- System.Linq (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0)
- Microsoft.NET.Test.Sdk (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
+ System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0)
+ System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0)
+ System.Linq (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0)
+ Microsoft.NET.Test.Sdk (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
Microsoft.CodeCoverage (>= 15.9)
- Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (2.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
+ Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net452) (>= net461)) (&& (>= net461) (>= net50)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (< netstandard1.0)) (&& (>= net461) (< netstandard1.3) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (>= net461) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= wp8)) (&& (>= net50) (>= uap10.1)) (>= netcoreapp2.0) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
Microsoft.SqlServer.Types (12.0.5000)
- Microsoft.TestPlatform.ObjectModel (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- NETStandard.Library (>= 1.6) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0)
- System.Diagnostics.Process (>= 4.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Diagnostics.TextWriterTraceListener (>= 4.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
+ Microsoft.TestPlatform.ObjectModel (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ NETStandard.Library (>= 1.6) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (&& (< net451) (>= net461) (< netstandard1.5)) (>= netcoreapp2.0)
+ System.Diagnostics.Process (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Diagnostics.TextWriterTraceListener (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
System.Reflection.Metadata (>= 1.3)
- System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (== net461) (< net451)) (== netcoreapp2.0)
- System.Runtime.Loader (>= 4.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Runtime.Serialization.Json (>= 4.0.2) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Threading.Thread (>= 4.0) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (== net461) (< net451) (>= netstandard1.5)) (== netcoreapp2.0)
- Microsoft.TestPlatform.TestHost (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0)
- Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0)
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.Win32.Registry (4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0)
- System.Security.AccessControl (>= 4.5)
- System.Security.Principal.Windows (>= 4.5)
- NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0)
+ System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (&& (< net451) (>= net461) (< netstandard1.5)) (>= netcoreapp2.0)
+ System.Runtime.Loader (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Runtime.Serialization.Json (>= 4.0.2) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Threading.Thread (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0)
+ Microsoft.TestPlatform.TestHost (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= uap10.0)) (>= netcoreapp2.0)
+ Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= uap10.0)) (>= netcoreapp2.0)
+ Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Security.AccessControl (>= 5.0)
+ System.Security.Principal.Windows (>= 5.0)
+ Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ NETStandard.Library (2.0.3) - restriction: || (&& (< net452) (>= net461)) (>= netcoreapp2.0)
Microsoft.NETCore.Platforms (>= 1.1)
- Newtonsoft.Json (11.0.2)
- runtime.native.System (4.3.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
+ Newtonsoft.Json (12.0.3)
+ runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
+ runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.AppContext (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Collections (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Collections.Concurrent (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Collections.Immutable (1.5) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections.NonGeneric (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Collections.Specialized (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.ComponentModel (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.ComponentModel.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.ComponentModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (&& (== net461) (>= net462)) (== netcoreapp2.0)
- System.Collections.Specialized (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0)
- System.ComponentModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.ComponentModel.Primitives (>= 4.3)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Configuration.ConfigurationManager (4.5)
- System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: == netcoreapp2.0
- System.Security.Permissions (>= 4.5)
- System.Data.SqlClient (4.5.1)
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (== net461) (< net451)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0)
- System.Memory (>= 4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Diagnostics.Debug (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0)
- System.Diagnostics.Process (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading.Thread (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.TextWriterTraceListener (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Diagnostics.TraceSource (>= 4.3)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Tools (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.TraceSource (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Tracing (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Dynamic.Runtime (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization.Extensions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO.FileSystem (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO.FileSystem.Primitives (>= 4.3)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Linq (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Linq.Expressions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Memory (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5)
- System.ObjectModel (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.3)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Runtime.Serialization.Primitives (>= 4.3)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Xml.XmlDocument (>= 4.3)
- System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (< netstandard1.3)) (== netcoreapp2.0)
- System.Reflection (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection.Extensions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Metadata (1.6) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections.Immutable (>= 1.5)
- System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (&& (== net461) (>= monoandroid) (>= netstandard2.0)) (&& (== net461) (>= monotouch) (>= netstandard2.0)) (&& (== net461) (< net45) (>= netstandard2.0)) (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (< netstandard1.1) (>= netstandard2.0)) (&& (== net461) (>= netstandard2.0) (>= wpa81)) (&& (== net461) (>= netstandard2.0) (>= xamarinmac)) (&& (== net461) (>= netstandard2.0) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0)
- System.Runtime.Extensions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.InteropServices (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wpa81)) (== netcoreapp2.0)
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0)
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0)
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< netstandard1.1)) (== netcoreapp2.0)
- System.Runtime.Loader (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (>= netstandard1.5)) (== netcoreapp2.0)
- System.Runtime.Serialization.Json (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Security.AccessControl (4.5)
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5)
- System.Security.Cryptography.ProtectedData (4.5) - restriction: == netcoreapp2.0
- System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0)
- System.Security.Permissions (4.5)
- System.Security.AccessControl (>= 4.5)
- System.Security.Principal.Windows (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Text.Encoding (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding.CodePages (4.5) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime.CompilerServices.Unsafe (>= 4.5)
- System.Threading.Thread (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading.ThreadPool (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.XDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.XmlSerializer (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (< portable-net45+win8+wp8+wpa81)) (== netcoreapp2.0)
- System.Xml.XPath (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
- System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0)
- System.Xml.XmlDocument (>= 4.3)
- System.Xml.XPath (>= 4.3)
+ runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.AppContext (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6))
+ System.Collections (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Collections.Immutable (1.5) - restriction: || (&& (>= net45) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1)) (&& (>= netcoreapp2.0) (< netstandard2.0))
+ System.Collections.NonGeneric (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (>= netcoreapp2.0))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Collections.Specialized (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (>= wp8)) (&& (>= netcoreapp2.0) (>= wpa81))
+ System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (>= net462)
+ System.Collections.Specialized (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5))
+ System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (< netstandard1.0) (>= win8)) (&& (>= net461) (< netstandard1.5)) (&& (>= net461) (>= wp8)) (&& (>= net461) (>= wpa81)) (>= net462) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (>= wp8)) (&& (>= netcoreapp2.0) (>= wpa81))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Configuration.ConfigurationManager (5.0)
+ System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Permissions (>= 5.0)
+ System.Data.SqlClient (4.8.2)
+ Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Diagnostics.Debug (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Diagnostics.Process (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.Thread (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.TextWriterTraceListener (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Tools (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.TraceSource (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0
+ Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Dynamic.Runtime (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.IO.FileSystem (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Linq (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6))
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6))
+ System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= xamarinios)) (&& (>= netcoreapp2.0) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= xamarintvos)) (&& (>= netcoreapp2.0) (>= xamarinwatchos))
+ System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Private.DataContractSerialization (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Reflection (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Reflection.Emit (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Metadata (1.6) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Collections.Immutable (>= 1.5) - restriction: || (&& (>= net45) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1)) (&& (>= netcoreapp2.0) (< netstandard2.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (>= net461) (< netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net451) (>= net461) (< netstandard1.3)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (< netstandard2.0) (>= xamarintvos)) (&& (>= net461) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1))
+ System.Runtime.Extensions (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5))
+ System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.InteropServices (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (>= net462) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Loader (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5))
+ System.Runtime.Serialization.Json (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Security.AccessControl (5.0)
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ System.Security.Principal.Windows (>= 5.0)
+ System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0))
+ System.Security.Permissions (5.0)
+ System.Security.AccessControl (>= 5.0)
+ System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net461) (>= netstandard2.0)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.0) (>= uap10.1)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (>= net50)
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461)
+ System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.RegularExpressions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= wp8))
+ System.Threading.Thread (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
+ System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.XmlDocument (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.XmlSerializer (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461))
+ System.Xml.XPath (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0))
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
+ System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461))
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
+ System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461)
xunit (2.4.1)
xunit.analyzers (>= 0.10)
xunit.assert (2.4.1)
@@ -648,67 +737,77 @@ NUGET
xunit.abstractions (2.0.3)
xunit.analyzers (0.10)
xunit.assert (2.4.1)
- NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0)
+ NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net452) (>= net461)) (>= netcoreapp2.0)
xunit.core (2.4.1)
xunit.extensibility.core (2.4.1)
xunit.extensibility.execution (2.4.1)
xunit.extensibility.core (2.4.1)
- NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0)
+ NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net452) (>= net461)) (>= netcoreapp2.0)
xunit.abstractions (>= 2.0.3)
xunit.extensibility.execution (2.4.1)
- NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0)
+ NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net452) (>= net461)) (>= netcoreapp2.0)
xunit.extensibility.core (2.4.1)
xunit.runner.visualstudio (2.4.1)
- Microsoft.NET.Test.Sdk (>= 15.0) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0)
+ Microsoft.NET.Test.Sdk (>= 15.0) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0)
GROUP TestProjects
-RESTRICTION: || (== netcoreapp2.0) (== netstandard2.0) (>= net40)
+STORAGE: NONE
+RESTRICTION: || (>= net40) (>= netstandard2.0)
NUGET
remote: https://www.nuget.org/api/v2
FSharp.Core (4.3.4)
- Microsoft.NETCore.Platforms (2.1.1) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0))
- Microsoft.Win32.Registry (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Buffers (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) (&& (>= monoandroid) (>= net40) (< netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos))
- System.Memory (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1))
- System.Security.AccessControl (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40) (< netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40) (< netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461)
- runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
+ Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= net50)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Buffers (4.5) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0))
- System.Configuration.ConfigurationManager (4.5)
- System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net461) (>= netstandard2.0))
- System.Security.Permissions (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= netstandard2.0)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461)
- System.Data.Common (4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0))
- System.Data.SqlClient (4.5.1)
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Buffers (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0))
- System.Data.Common (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.2)) (&& (== netcoreapp2.0) (< netstandard1.3)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netstandard2.0) (< netstandard1.2)) (&& (== netstandard2.0) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0))
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1))
- System.Memory (>= 4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1))
- System.Security.Principal.Windows (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1))
- System.Memory (4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1))
- System.Buffers (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) (&& (>= monoandroid) (>= net40) (< netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461)
- System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (>= net461)
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40) (< netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461)
- System.Numerics.Vectors (4.5) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netstandard2.0) (>= uap10.1)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monotouch) (>= net40) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (>= netstandard2.0) (>= xamarinmac)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= uap10.1)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1))
- System.Security.AccessControl (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netstandard2.0)) (&& (>= net40) (>= xamarinios)) (>= net461)
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Security.Principal.Windows (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461)
- System.Security.Cryptography.ProtectedData (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net461) (>= netstandard2.0))
- System.Memory (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0))
- System.Security.Permissions (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= netstandard2.0)) (&& (>= net40) (>= xamarinmac)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461)
- System.Security.AccessControl (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard2.0)) (>= net461)
- System.Security.Principal.Windows (4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Text.Encoding.CodePages (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0))
- Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0))
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461)
+ runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0))
+ System.Configuration.ConfigurationManager (5.0)
+ System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0))
+ System.Security.Permissions (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0)
+ System.Data.Common (4.3) - restriction: || (&& (< monoandroid) (< net451) (< netstandard1.3) (>= netstandard2.0) (< win81) (< wpa81)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.0) (< win81)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard2.0) (< win81) (>= wpa81))
+ System.Data.SqlClient (4.8.2)
+ Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0))
+ System.Data.Common (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (< netstandard1.3) (>= netstandard2.0) (< win81) (< wpa81)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.0) (< win81)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard2.0) (< win81) (>= wpa81))
+ System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0
+ Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net40) (>= netstandard1.3) (< netstandard2.0)) (&& (>= monoandroid) (>= net40) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (>= net45) (>= uap10.1)) (&& (< net451) (>= net46) (>= netstandard2.0)) (&& (< net451) (>= net46) (< netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
+ System.Security.AccessControl (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (>= net461) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
+ System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0))
+ System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0))
+ System.Security.Permissions (5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0)
+ System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net40) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
+ System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1))
+ Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (>= net50)
+ System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461)
+ System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
+ System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
diff --git a/src/SqlClient.DesignTime/DesignTime.fs b/src/SqlClient.DesignTime/DesignTime.fs
index 2ca12b06..4272278d 100644
--- a/src/SqlClient.DesignTime/DesignTime.fs
+++ b/src/SqlClient.DesignTime/DesignTime.fs
@@ -9,7 +9,7 @@ open System.Collections.Generic
open System.Diagnostics
open Microsoft.FSharp.Quotations
open ProviderImplementation.ProvidedTypes
-open FSharp.Data
+open FSharp.Data.SqlClient.Internals
open System.Text.RegularExpressions
type internal RowType = {
diff --git a/src/SqlClient.DesignTime/QuotationsFactory.fs b/src/SqlClient.DesignTime/QuotationsFactory.fs
index 5a1d9867..719f655f 100644
--- a/src/SqlClient.DesignTime/QuotationsFactory.fs
+++ b/src/SqlClient.DesignTime/QuotationsFactory.fs
@@ -9,7 +9,7 @@ open System.Diagnostics
open Microsoft.FSharp.Quotations
-open FSharp.Data
+open FSharp.Data.SqlClient.Internals
type QuotationsFactory private() =
diff --git a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj
index 67416a9e..ae09a886 100644
--- a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj
+++ b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj
@@ -9,7 +9,7 @@
101
true
true
- $(DefineConstants);DESIGNTIME_CODE_ONLY
+ $(DefineConstants);DESIGNTIME_CODE_ONLY;WITH_LEGACY_NAMESPACE
diff --git a/src/SqlClient.DesignTime/SqlClientExtensions.fs b/src/SqlClient.DesignTime/SqlClientExtensions.fs
index 03645f61..6977d4dc 100644
--- a/src/SqlClient.DesignTime/SqlClientExtensions.fs
+++ b/src/SqlClient.DesignTime/SqlClientExtensions.fs
@@ -7,7 +7,7 @@ open System.Collections.Generic
open System.IO
open System.Threading.Tasks
open System.Data.SqlClient
-open FSharp.Data
+open FSharp.Data.SqlClient.Internals
open System.Diagnostics
type internal TypeInfoPerConnectionStringCache() =
diff --git a/src/SqlClient.DesignTime/SqlClientProvider.fs b/src/SqlClient.DesignTime/SqlClientProvider.fs
index a6b8c9b5..361dc5f4 100644
--- a/src/SqlClient.DesignTime/SqlClientProvider.fs
+++ b/src/SqlClient.DesignTime/SqlClientProvider.fs
@@ -13,6 +13,7 @@ open Microsoft.FSharp.Quotations
open ProviderImplementation.ProvidedTypes
open FSharp.Data.SqlClient
+open FSharp.Data.SqlClient.Internals
[]
[]
@@ -140,7 +141,7 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this =
//tagProvidedType rowType
]
- static member internal UnitsOfMeasure( connStr, schema, sqlDataTypesForConnection: FSharp.Data.TypeInfo array) = [
+ static member internal UnitsOfMeasure( connStr, schema, sqlDataTypesForConnection: TypeInfo array) = [
for t in sqlDataTypesForConnection do
if t.Schema = schema && t.IsUnitOfMeasure
then
@@ -465,6 +466,9 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this =
let getMethodImpl =
lazy
+ // was hitting assert of datatypesmap not being loaded for connection
+ let _ = conn.LoadDataTypesMap()
+
let sqlStatement, resultType, singleRow, allParametersOptional, typename =
unbox args.[0], unbox args.[1], unbox args.[2], unbox args.[3], unbox args.[4]
diff --git a/src/SqlClient.DesignTime/SqlCommandProvider.fs b/src/SqlClient.DesignTime/SqlCommandProvider.fs
index 3c79db77..57c22ea4 100644
--- a/src/SqlClient.DesignTime/SqlCommandProvider.fs
+++ b/src/SqlClient.DesignTime/SqlCommandProvider.fs
@@ -10,6 +10,7 @@ open Microsoft.FSharp.Core.CompilerServices
open Microsoft.FSharp.Quotations
open FSharp.Data.SqlClient
+open FSharp.Data.SqlClient.Internals
open ProviderImplementation.ProvidedTypes
diff --git a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj b/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj
index b4d635d4..811837d0 100644
--- a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj
+++ b/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj
@@ -9,7 +9,7 @@
Library
WebApi.Controllers
WebApi.Controllers
- v4.6.1
+ v4.5.2
4.4.0.0
WebApi.Controllers
..\..\..\
diff --git a/src/SqlClient.Samples/WebApi/Global.asax.cs b/src/SqlClient.Samples/WebApi/Global.asax.cs
index b7e58135..9ee19095 100644
--- a/src/SqlClient.Samples/WebApi/Global.asax.cs
+++ b/src/SqlClient.Samples/WebApi/Global.asax.cs
@@ -11,7 +11,7 @@ namespace WebApi
{
public class Global : System.Web.HttpApplication
{
-
+
protected void Application_Start(object sender, EventArgs e)
{
GlobalConfiguration.Configuration.Routes.MapHttpRoute("DefaultAPI", "{controller}/{id}", new { controller = "Home", id = RouteParameter.Optional });
diff --git a/src/SqlClient.Samples/WebApi/WebApi.csproj b/src/SqlClient.Samples/WebApi/WebApi.csproj
index c08b1110..0fd980b2 100644
--- a/src/SqlClient.Samples/WebApi/WebApi.csproj
+++ b/src/SqlClient.Samples/WebApi/WebApi.csproj
@@ -42,9 +42,6 @@
4
-
- True
-
@@ -116,6 +113,17 @@
-->
+
+
+
+
+ ..\..\..\packages\samples\FSharp.Core\lib\net45\FSharp.Core.dll
+ True
+ True
+
+
+
+
diff --git a/src/SqlClient.Samples/WebApi/paket.references b/src/SqlClient.Samples/WebApi/paket.references
index 1e9f0d2e..cc9bb096 100644
--- a/src/SqlClient.Samples/WebApi/paket.references
+++ b/src/SqlClient.Samples/WebApi/paket.references
@@ -1,4 +1,5 @@
group Samples
+ FSharp.Core
FSharp.Data.SqlClient
Microsoft.AspNet.WebApi
Microsoft.AspNet.WebApi.Client
diff --git a/src/SqlClient.Samples/WebApi/web.config b/src/SqlClient.Samples/WebApi/web.config
index 726ce1b3..6d09952d 100644
--- a/src/SqlClient.Samples/WebApi/web.config
+++ b/src/SqlClient.Samples/WebApi/web.config
@@ -15,16 +15,7 @@
-
-
-
-
-
-
-
-
-
-
+
@@ -33,4 +24,15 @@
-
\ No newline at end of file
+
+
+ True
+
+
+
+
+ True
+
+
+
+
\ No newline at end of file
diff --git a/src/SqlClient.Samples/WpfDataBinding/App.config b/src/SqlClient.Samples/WpfDataBinding/App.config
index f80bd4af..1cc96036 100644
--- a/src/SqlClient.Samples/WpfDataBinding/App.config
+++ b/src/SqlClient.Samples/WpfDataBinding/App.config
@@ -7,4 +7,15 @@
-
\ No newline at end of file
+
+
+ True
+
+
+
+
+ True
+
+
+
+
\ No newline at end of file
diff --git a/src/SqlClient.Samples/WpfDataBinding/Program.fs b/src/SqlClient.Samples/WpfDataBinding/Program.fs
index ade43a0e..453a3cf4 100644
--- a/src/SqlClient.Samples/WpfDataBinding/Program.fs
+++ b/src/SqlClient.Samples/WpfDataBinding/Program.fs
@@ -8,7 +8,7 @@ open System.Windows
open System.Windows.Controls
open System.Data.SqlClient
-open FSharp.Data
+open FSharp.Data.SqlClient
[]
let queryTableSql = "select top 5 AddressID, AddressLine1, City, SpatialLocation from Person.Address where AddressLine1 like @startsWith"
diff --git a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj
index cb41156d..06df8602 100644
--- a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj
+++ b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj
@@ -9,7 +9,7 @@
WinExe
DataBinding
DataBinding
- v4.6.1
+ v4.5.2
WpfDataBinding
@@ -56,6 +56,12 @@
+
+ True
+
+
+ True
+
MSBuild:Compile
Designer
@@ -65,7 +71,6 @@
-
@@ -118,4 +123,15 @@
+
+
+
+
+ ..\..\..\packages\samples\Microsoft.SqlServer.Types\lib\net40\Microsoft.SqlServer.Types.dll
+ True
+ True
+
+
+
+
\ No newline at end of file
diff --git a/src/SqlClient.Samples/WpfDataBinding/paket.references b/src/SqlClient.Samples/WpfDataBinding/paket.references
index 76c560cd..df9e822b 100644
--- a/src/SqlClient.Samples/WpfDataBinding/paket.references
+++ b/src/SqlClient.Samples/WpfDataBinding/paket.references
@@ -1,3 +1,4 @@
group Samples
FSharp.Core
FSharp.Data.SqlClient
+ Microsoft.SqlServer.Types
\ No newline at end of file
diff --git a/src/SqlClient.TestProjects/Lib/Lib.fsproj b/src/SqlClient.TestProjects/Lib/Lib.fsproj
index 7130fc04..3e515f97 100644
--- a/src/SqlClient.TestProjects/Lib/Lib.fsproj
+++ b/src/SqlClient.TestProjects/Lib/Lib.fsproj
@@ -3,7 +3,7 @@
- net471;netcoreapp2.0
+ net471;netstandard2.0
Lib
false
true
@@ -13,15 +13,18 @@
+
-
-
+
..\..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll
+
+ ..\..\..\bin\net40\FSharp.Data.SqlClient.dll
+
\ No newline at end of file
diff --git a/src/SqlClient.TestProjects/Lib/Library1.fs b/src/SqlClient.TestProjects/Lib/Library1.fs
index 117c7fbd..80886e06 100644
--- a/src/SqlClient.TestProjects/Lib/Library1.fs
+++ b/src/SqlClient.TestProjects/Lib/Library1.fs
@@ -1,6 +1,6 @@
module DataAccess
-
open FSharp.Data
+open FSharp.Data.SqlClient
type Get42 = SqlCommandProvider<"SELECT 42", "name=AdventureWorks", SingleRow = true>
diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/Program.fs b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/Program.fs
index 0d63f49a..8eed7ef5 100644
--- a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/Program.fs
+++ b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/Program.fs
@@ -1,10 +1,24 @@
+open FSharp.Data.SqlClient
open FSharp.Data
[]
let connectionString = "Data Source=localhost;Initial Catalog=AdventureWorks2012;Integrated Security=True"
+type SingleColumnSelect = SqlEnumProvider<"SELECT Name FROM Purchasing.ShipMethod", connectionString>
+type TinyIntEnum = SqlEnumProvider<"SELECT * FROM (VALUES(('One'), CAST(1 AS tinyint)), ('Two', CAST(2 AS tinyint))) AS T(Tag, Value)", connectionString, Kind = SqlEnumKind.CLI>
+type CurrencyCodeUOM =
+ SqlEnumProvider<"
+ SELECT CurrencyCode
+ FROM Sales.Currency
+ WHERE CurrencyCode IN ('USD', 'EUR', 'GBP')
+ ", connectionString, Kind = SqlEnumKind.UnitsOfMeasure>
+
[]
let main _ =
let get42 = new SqlCommandProvider<"SELECT 42", connectionString>(connectionString)
get42.Execute() |> Seq.toArray |> printfn "%A"
+
+ printfn "SqlEnum default test: %A" SingleColumnSelect.``CARGO TRANSPORT 5``
+ printfn "SqlEnum CLI enum test: %A" TinyIntEnum.One
+ printfn "SqlEnum UOM test: %A" 1m
0
diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj
index 2b41d893..d68dd166 100644
--- a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj
+++ b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj
@@ -15,7 +15,9 @@
-
+
+
+
diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/Program.fs b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/Program.fs
index 96d8ee97..9c94adc1 100644
--- a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/Program.fs
+++ b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/Program.fs
@@ -1,4 +1,5 @@
-open FSharp.Data
+open FSharp.Data.SqlClient
+open FSharp.Data
[]
let Cnx = "Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True"
@@ -17,7 +18,7 @@ let main _ =
let get42 = new SqlCommandProvider<"SELECT 42", Cnx>(Cnx)
get42.Execute() |> Seq.toArray |> printfn "SqlCommandTest: %A"
- printfn "SqlEnum default test: %A" SingleColumnSelect.``CARGO TRANSPORT 5``
+ printfn "SqlEnum default test: %A" SingleColumnSelect.``CARGO TRANSPORT 5``
printfn "SqlEnum CLI enum test: %A" TinyIntEnum.One
- printfn "SqlEnum UOM test: %A" 1m
+ printfn "SqlEnum UOM test: %A" 1m
0
\ No newline at end of file
diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj
index 8f904bd6..f5af292d 100644
--- a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj
+++ b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/SqlClient.Tests.NetCoreApp.fsproj
@@ -14,5 +14,8 @@
+
+
+
\ No newline at end of file
diff --git a/src/SqlClient/Configuration.fs b/src/SqlClient/Configuration.fs
index 236a2ee0..4d6065a0 100644
--- a/src/SqlClient/Configuration.fs
+++ b/src/SqlClient/Configuration.fs
@@ -1,19 +1,37 @@
-namespace FSharp.Data.SqlClient
+namespace FSharp.Data.SqlClient.Internals
//this is mess. Clean up later.
-type Configuration = {
+type FsharpDataSqlClientConfiguration = {
ResultsetRuntimeVerification: bool
-}
-
-namespace FSharp.Data
+}
[]
[]
module Configuration =
- let private guard = obj()
- let mutable private current = { SqlClient.Configuration.ResultsetRuntimeVerification = false }
+ let internal guard = obj()
+ let mutable internal current = { FsharpDataSqlClientConfiguration.ResultsetRuntimeVerification = false }
- type SqlClient.Configuration with
+ type FsharpDataSqlClientConfiguration with
static member Current
with get() = lock guard <| fun() -> current
and set value = lock guard <| fun() -> current <- value
+
+#if WITH_LEGACY_NAMESPACE
+namespace FSharp.Data.SqlClient
+open System
+[]
+type Configuration = FSharp.Data.SqlClient.Internals.FsharpDataSqlClientConfiguration
+namespace FSharp.Data
+open System
+open FSharp.Data.SqlClient.Internals
+open FSharp.Data.SqlClient.Internals.Configuration
+[]
+[]
+[]
+module Configuration =
+ type FsharpDataSqlClientConfiguration with
+ static member Current
+ with get() = lock Configuration.guard <| fun() -> Configuration.current
+ and set value = lock Configuration.guard <| fun() -> Configuration.current <- value
+
+#endif
\ No newline at end of file
diff --git a/src/SqlClient/DataTable.fs b/src/SqlClient/DataTable.fs
index 5a75acfa..dda3f49c 100644
--- a/src/SqlClient/DataTable.fs
+++ b/src/SqlClient/DataTable.fs
@@ -1,9 +1,10 @@
-namespace FSharp.Data
+namespace FSharp.Data.SqlClient
open System
open System.Data
open System.Data.SqlClient
open System.Collections.Generic
+open FSharp.Data.SqlClient.Internals
[]
[]
@@ -111,3 +112,10 @@ type DataTable<'T when 'T :> DataRow>(selectCommand: SqlCommand, ?connectionStri
timeout |> Option.iter (fun x -> bulkCopy.BulkCopyTimeout <- int x.TotalSeconds)
bulkCopy.WriteToServer this
+#if WITH_LEGACY_NAMESPACE
+namespace FSharp.Data
+open System
+open System.Data
+[]
+type DataTable<'T when 'T :> DataRow> = FSharp.Data.SqlClient.DataTable<'T>
+#endif
\ No newline at end of file
diff --git a/src/SqlClient/Extensions.fs b/src/SqlClient/Extensions.fs
index 6dee6550..02b95566 100644
--- a/src/SqlClient/Extensions.fs
+++ b/src/SqlClient/Extensions.fs
@@ -1,4 +1,4 @@
-namespace FSharp.Data
+namespace FSharp.Data.SqlClient.Internals
open System
open System.Data
@@ -65,3 +65,12 @@ module Extensions =
assert (this.State = ConnectionState.Open)
use cmd = new SqlCommand("SELECT SERVERPROPERTY('edition')", this)
cmd.ExecuteScalar().Equals("SQL Azure")
+
+
+#if WITH_LEGACY_NAMESPACE
+namespace FSharp.Data
+open System
+[]
+module ObsoleteExtensions =
+ module Extensions = FSharp.Data.SqlClient.Internals.Extensions
+#endif
\ No newline at end of file
diff --git a/src/SqlClient/ISqlCommand.fs b/src/SqlClient/ISqlCommand.fs
index d5b66829..dbf72230 100644
--- a/src/SqlClient/ISqlCommand.fs
+++ b/src/SqlClient/ISqlCommand.fs
@@ -1,11 +1,11 @@
-namespace FSharp.Data
+namespace FSharp.Data.SqlClient.Internals
open System
open System.Data
open System.Data.SqlClient
open System.Reflection
-
open FSharp.Data.SqlClient
+open FSharp.Data.SqlClient.Internals
open System.Linq
@@ -245,7 +245,7 @@ type ``ISqlCommand Implementation``(cfg: DesignTimeConfig, connection: Connectio
//Execute/AsyncExecute versions
static member internal VerifyResultsetColumns(cursor: SqlDataReader, expected) =
- if Configuration.Current.ResultsetRuntimeVerification
+ if FsharpDataSqlClientConfiguration.Current.ResultsetRuntimeVerification
then
if cursor.FieldCount < Array.length expected
then
@@ -278,14 +278,14 @@ type ``ISqlCommand Implementation``(cfg: DesignTimeConfig, connection: Connectio
static member internal ExecuteDataTable(cmd, getReaderBehavior, parameters, expectedDataReaderColumns) =
use cursor = ``ISqlCommand Implementation``.ExecuteReader(cmd, getReaderBehavior, parameters, expectedDataReaderColumns)
- let result = new FSharp.Data.DataTable(cmd)
+ let result = new DataTable(cmd)
result.Load(cursor)
result
static member internal AsyncExecuteDataTable(cmd, getReaderBehavior, parameters, expectedDataReaderColumns) =
async {
use! reader = ``ISqlCommand Implementation``.AsyncExecuteReader(cmd, getReaderBehavior, parameters, expectedDataReaderColumns)
- let result = new FSharp.Data.DataTable(cmd)
+ let result = new DataTable(cmd)
result.Load(reader)
return result
}
@@ -370,3 +370,15 @@ type ``ISqlCommand Implementation``(cfg: DesignTimeConfig, connection: Connectio
use _ = cmd.Connection.UseLocally(manageConnection )
return! cmd.AsyncExecuteNonQuery()
}
+
+#if WITH_LEGACY_NAMESPACE
+namespace FSharp.Data
+open System
+open System.Data
+[]
+type ``ISqlCommand Implementation`` = FSharp.Data.SqlClient.Internals.``ISqlCommand Implementation``
+[]
+type ISqlCommand = FSharp.Data.SqlClient.Internals.ISqlCommand
+[]
+type DesignTimeConfig = FSharp.Data.SqlClient.Internals.DesignTimeConfig
+#endif
\ No newline at end of file
diff --git a/src/SqlClient/Runtime.fs b/src/SqlClient/Runtime.fs
index 622df2df..36700194 100644
--- a/src/SqlClient/Runtime.fs
+++ b/src/SqlClient/Runtime.fs
@@ -1,7 +1,7 @@
-namespace FSharp.Data
+namespace FSharp.Data.SqlClient
#if !IS_DESIGNTIME
// Put the TypeProviderAssemblyAttribute in the runtime DLL, pointing to the design-time DLL
[]
do ()
-#endif
\ No newline at end of file
+#endif
diff --git a/src/SqlClient/Shared.fs b/src/SqlClient/Shared.fs
index 321a0353..500354af 100644
--- a/src/SqlClient/Shared.fs
+++ b/src/SqlClient/Shared.fs
@@ -1,4 +1,22 @@
-namespace FSharp.Data
+namespace FSharp.Data.SqlClient
+///Enum describing output type
+type ResultType =
+///Sequence of custom records with properties matching column names and types
+ | Records = 0
+///Sequence of tuples matching column types with the same order
+ | Tuples = 1
+///Typed DataTable
+ | DataTable = 2
+///raw DataReader
+ | DataReader = 3
+
+// todo: document this
+type SqlEnumKind =
+| Default = 0
+| CLI = 1
+| UnitsOfMeasure = 2
+
+namespace FSharp.Data.SqlClient.Internals
open System
open System.Text
@@ -23,22 +41,6 @@ module Encoding =
use stringReader = new StreamReader(buffer)
stringReader.ReadToEnd()
-///Enum describing output type
-type ResultType =
-///Sequence of custom records with properties matching column names and types
- | Records = 0
-///Sequence of tuples matching column types with the same order
- | Tuples = 1
-///Typed DataTable
- | DataTable = 2
-///raw DataReader
- | DataReader = 3
-
-type SqlEnumKind =
-| Default = 0
-| CLI = 1
-| UnitsOfMeasure = 2
-
[]
[]
type ResultRank =
@@ -249,3 +251,26 @@ module RuntimeInternals =
[]
module Shared =
let DbNull = box DBNull.Value
+
+
+#if WITH_LEGACY_NAMESPACE
+namespace FSharp.Data
+open System
+[]
+type ResultType = FSharp.Data.SqlClient.ResultType
+[]
+type SqlEnumKind = FSharp.Data.SqlClient.SqlEnumKind
+[]
+module Obsolete =
+
+ //module Encoding = FSharp.Data.SqlClient.Internals.Encoding
+ //module RuntimeInternals = FSharp.Data.SqlClient.Internals.RuntimeInternals
+ //module Shared = FSharp.Data.SqlClient.Internals.Shared
+
+ type ResultRank = FSharp.Data.SqlClient.Internals.ResultRank
+ type Mapper = FSharp.Data.SqlClient.Internals.Mapper
+ type Column = FSharp.Data.SqlClient.Internals.Column
+ type TypeInfo = FSharp.Data.SqlClient.Internals.TypeInfo
+ type Parameter = FSharp.Data.SqlClient.Internals.Parameter
+ type TempTableLoader = FSharp.Data.SqlClient.Internals.TempTableLoader
+#endif
\ No newline at end of file
diff --git a/src/SqlClient/SqlClient.fsproj b/src/SqlClient/SqlClient.fsproj
index 507a5af9..3e18c9a0 100644
--- a/src/SqlClient/SqlClient.fsproj
+++ b/src/SqlClient/SqlClient.fsproj
@@ -9,10 +9,12 @@
101
true
true
+ true
+ $(DefineConstants);WITH_LEGACY_NAMESPACE
true
- DEBUG;TRACE
+ $(DefineConstants);DEBUG;TRACE
..\..\bin\net40\FSharp.Data.SqlClient.XML
diff --git a/tests/SqlClient.DesignTime.Tests/SqlClient.DesignTime.Tests.fsproj b/tests/SqlClient.DesignTime.Tests/SqlClient.DesignTime.Tests.fsproj
index 60381fde..2e0a8487 100644
--- a/tests/SqlClient.DesignTime.Tests/SqlClient.DesignTime.Tests.fsproj
+++ b/tests/SqlClient.DesignTime.Tests/SqlClient.DesignTime.Tests.fsproj
@@ -8,6 +8,7 @@
false
true
101
+ $(DefineConstants);WITH_LEGACY_NAMESPACE
diff --git a/tests/SqlClient.SqlServerTypes.Tests/SpatialTypesTests.fs b/tests/SqlClient.SqlServerTypes.Tests/SpatialTypesTests.fs
index d9270a62..abb339c5 100644
--- a/tests/SqlClient.SqlServerTypes.Tests/SpatialTypesTests.fs
+++ b/tests/SqlClient.SqlServerTypes.Tests/SpatialTypesTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.SpatialTypesTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.SpatialTypesTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.SpatialTypesTests
+#endif
open Xunit
open Microsoft.SqlServer.Types
diff --git a/tests/SqlClient.SqlServerTypes.Tests/SqlClient.SqlServerTypes.Tests.fsproj b/tests/SqlClient.SqlServerTypes.Tests/SqlClient.SqlServerTypes.Tests.fsproj
index 6ab3f5bf..afe37d35 100644
--- a/tests/SqlClient.SqlServerTypes.Tests/SqlClient.SqlServerTypes.Tests.fsproj
+++ b/tests/SqlClient.SqlServerTypes.Tests/SqlClient.SqlServerTypes.Tests.fsproj
@@ -5,6 +5,12 @@
net461
true
+
+ $(NoWarn);0044
+ $(DefineConstants);WITH_LEGACY_NAMESPACE
diff --git a/tests/SqlClient.Tests/FreeVarDoubleDeclTests.fs b/tests/SqlClient.Tests/FreeVarDoubleDeclTests.fs
index 2cdb3b6a..ba81491d 100644
--- a/tests/SqlClient.Tests/FreeVarDoubleDeclTests.fs
+++ b/tests/SqlClient.Tests/FreeVarDoubleDeclTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.``The undeclared parameter 'X' is used more than once in the batch being analyzed``
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.``The undeclared parameter 'X' is used more than once in the batch being analyzed``
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.``The undeclared parameter 'X' is used more than once in the batch being analyzed``
+#endif
open System
open Xunit
diff --git a/tests/SqlClient.Tests/OptionalParamsTests.fs b/tests/SqlClient.Tests/OptionalParamsTests.fs
index f206c3cb..221f88f0 100644
--- a/tests/SqlClient.Tests/OptionalParamsTests.fs
+++ b/tests/SqlClient.Tests/OptionalParamsTests.fs
@@ -1,4 +1,10 @@
-module FSharp.Data.OptionalParamsTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.OptionalParamsTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.OptionalParamsTests
+#endif
+
open Xunit
[]
diff --git a/tests/SqlClient.Tests/ProgrammabilityTests.fs b/tests/SqlClient.Tests/ProgrammabilityTests.fs
index c70aebb1..6069e175 100644
--- a/tests/SqlClient.Tests/ProgrammabilityTests.fs
+++ b/tests/SqlClient.Tests/ProgrammabilityTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.ProgrammabilityTest
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.ProgrammabilityTest
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.ProgrammabilityTest
+#endif
open System
open System.Data.SqlClient
diff --git a/tests/SqlClient.Tests/ResultTypeTests.fs b/tests/SqlClient.Tests/ResultTypeTests.fs
index f045f4d4..b17c8660 100644
--- a/tests/SqlClient.Tests/ResultTypeTests.fs
+++ b/tests/SqlClient.Tests/ResultTypeTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.ResultTypeTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.ResultTypeTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.ResultTypeTests
+#endif
open FSharp.Data
open Xunit
diff --git a/tests/SqlClient.Tests/SpReturnValueTests.fs b/tests/SqlClient.Tests/SpReturnValueTests.fs
index 754d9a4b..d996c812 100644
--- a/tests/SqlClient.Tests/SpReturnValueTests.fs
+++ b/tests/SqlClient.Tests/SpReturnValueTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.SpReturnValueTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.SpReturnValueTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.SpReturnValueTests
+#endif
open System
open Xunit
diff --git a/tests/SqlClient.Tests/SqlClient.Tests.fsproj b/tests/SqlClient.Tests/SqlClient.Tests.fsproj
index 5143b0f7..458179f5 100644
--- a/tests/SqlClient.Tests/SqlClient.Tests.fsproj
+++ b/tests/SqlClient.Tests/SqlClient.Tests.fsproj
@@ -7,7 +7,13 @@
SqlClient.Tests
false
true
+ $(DefineConstants);WITH_LEGACY_NAMESPACE
101
+
+ $(NoWarn);0044
true
diff --git a/tests/SqlClient.Tests/SqlEnumTests.fs b/tests/SqlClient.Tests/SqlEnumTests.fs
index 875b0749..77043929 100644
--- a/tests/SqlClient.Tests/SqlEnumTests.fs
+++ b/tests/SqlClient.Tests/SqlEnumTests.fs
@@ -1,5 +1,9 @@
-module FSharp.Data.EnumTests
-
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.EnumTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.EnumTests
+#endif
open System
open Xunit
diff --git a/tests/SqlClient.Tests/TVPTests.fs b/tests/SqlClient.Tests/TVPTests.fs
index c1a2747f..79eade7b 100644
--- a/tests/SqlClient.Tests/TVPTests.fs
+++ b/tests/SqlClient.Tests/TVPTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.TVPTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.TVPTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.TVPTests
+#endif
open FSharp.Data
open Xunit
diff --git a/tests/SqlClient.Tests/TempTableTests.fs b/tests/SqlClient.Tests/TempTableTests.fs
index afe39753..08150930 100644
--- a/tests/SqlClient.Tests/TempTableTests.fs
+++ b/tests/SqlClient.Tests/TempTableTests.fs
@@ -1,4 +1,9 @@
-module FSharp.Data.TempTableTests
+#if WITH_LEGACY_NAMESPACE
+module FSharp.Data.TempTableTests
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.TempTableTests
+#endif
open FSharp.Data
open Xunit
diff --git a/tests/SqlClient.Tests/TypeProviderTest.fs b/tests/SqlClient.Tests/TypeProviderTest.fs
index 3ff7b069..a788a4a4 100644
--- a/tests/SqlClient.Tests/TypeProviderTest.fs
+++ b/tests/SqlClient.Tests/TypeProviderTest.fs
@@ -1,4 +1,9 @@
+#if WITH_LEGACY_NAMESPACE
module FSharp.Data.TypeProviderTest
+open FSharp.Data.SqlClient
+#else
+module FSharp.Data.SqlClient.TypeProviderTest
+#endif
open System
open System.Data
diff --git a/tests/SqlClient.Tests/app.config b/tests/SqlClient.Tests/app.config
index 1b96523f..ac20342e 100644
--- a/tests/SqlClient.Tests/app.config
+++ b/tests/SqlClient.Tests/app.config
@@ -8,4 +8,10 @@
-
\ No newline at end of file
+
+
+ True
+
+
+
+
\ No newline at end of file