From 089df230d3a78af53526cc6dde7ee98ae88e5254 Mon Sep 17 00:00:00 2001 From: Daniel Little Date: Tue, 18 Aug 2020 10:47:45 +1000 Subject: [PATCH] WIP --- SqlClient.sln | 7 +- docker-compose.yml | 16 + netfx.props | 2 +- paket.dependencies | 29 +- paket.lock | 2933 +++++++---------- src/SqlClient.DesignTime/DesignTime.fs | 6 +- .../SingleFileChangeMonitor.fs | 49 +- .../SingleRootTypeProvider.fs | 4 +- .../SqlClient.DesignTime.fsproj | 28 +- src/SqlClient.DesignTime/SqlClientProvider.fs | 1 + .../SqlCommandProvider.fs | 7 +- src/SqlClient.DesignTime/paket.references | 7 - .../WebApi.Controllers.fsproj | 212 +- src/SqlClient.Samples/WebApi/WebApi.csproj | 219 +- .../WpfDataBinding/WpfDataBinding.fsproj | 201 +- .../Lib/paket.references | 5 +- ...sproj => SqlClient.Tests.NET40.fsproj.txt} | 0 ...{paket.references => paket.references.txt} | 0 .../paket.references | 5 +- src/SqlClient/Extensions.fs | 13 +- src/SqlClient/Properties/launchSettings.json | 5 +- src/SqlClient/SqlClient.fsproj | 17 +- .../paket.references | 4 +- .../paket.references | 7 +- tests/SqlClient.Tests/ConnectionStrings.fs | 2 +- tests/SqlClient.Tests/CreateCommand.fs | 6 +- tests/SqlClient.Tests/DataTablesTests.fs | 2 +- tests/SqlClient.Tests/ProgrammabilityTests.fs | 2 +- tests/SqlClient.Tests/ResultTypeTests.fs | 2 +- .../SqlClient.Tests/Scripts/CreateCommand.fsx | 2 +- tests/SqlClient.Tests/Scripts/SqlCommand.fsx | 4 +- tests/SqlClient.Tests/SqlClient.Tests.fsproj | 7 +- tests/SqlClient.Tests/SynonymsTests.fs | 2 +- tests/SqlClient.Tests/TVPTests.fs | 2 +- tests/SqlClient.Tests/TempTableTests.fs | 2 +- tests/SqlClient.Tests/TransactionTests.fs | 2 +- tests/SqlClient.Tests/TypeProviderTest.fs | 6 +- tests/SqlClient.Tests/app.config | 4 +- .../SqlClient.Tests/connectionStrings.config | 6 +- tests/SqlClient.Tests/paket.references | 4 +- 40 files changed, 1910 insertions(+), 1922 deletions(-) create mode 100644 docker-compose.yml rename src/SqlClient.TestProjects/SqlClient.Tests.NET40/{SqlClient.Tests.NET40.fsproj => SqlClient.Tests.NET40.fsproj.txt} (100%) rename src/SqlClient.TestProjects/SqlClient.Tests.NET40/{paket.references => paket.references.txt} (100%) diff --git a/SqlClient.sln b/SqlClient.sln index 719109ad..3c45048c 100644 --- a/SqlClient.sln +++ b/SqlClient.sln @@ -1,11 +1,12 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28010.2041 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30011.22 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{FD7933BD-2A90-49EB-A4B2-95F9D3076BBD}" ProjectSection(SolutionItems) = preProject paket.dependencies = paket.dependencies + paket.lock = paket.lock EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{7ECDF2A7-A71C-43B5-AFF2-64468098B7B6}" @@ -17,7 +18,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ProjectSection(SolutionItems) = preProject build.cmd = build.cmd build.fsx = build.fsx + fsc.props = fsc.props LICENSE.md = LICENSE.md + netfx.props = netfx.props README.md = README.md RELEASE_NOTES.md = RELEASE_NOTES.md EndProjectSection diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..1546b399 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,16 @@ +version: '3' +services: + + fsharpdata-sql: + image: nuitsjp/adventureworks:latest + #image: microsoft/mssql-server-linux:2017-latest + environment: + - SA_PASSWORD=M=qX7kYsg#Z@Ag3mX-tm + - ACCEPT_EULA=Y + - MSSQL_AGENT_ENABLED=true + ports: + - "1434:1433" + # volumes: + # - C:\\data:/sqldb + +#Server=tcp:localhost,1434;Initial Catalog=AdventureWorks;User ID=sa;Password=P@ssw0rd! \ No newline at end of file diff --git a/netfx.props b/netfx.props index 93ab7913..f8ae2738 100644 --- a/netfx.props +++ b/netfx.props @@ -45,7 +45,7 @@ - + diff --git a/paket.dependencies b/paket.dependencies index 213f34eb..0f8a5a45 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -7,7 +7,7 @@ github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875 group Build source https://www.nuget.org/api/v2/ - framework: >= net451 + framework: netstandard20 generate_load_scripts: on nuget FAKE = 5.8.4 @@ -21,47 +21,32 @@ group Build group DesignTime source https://www.nuget.org/api/v2/ - framework: >= net461,netstandard20 + framework: netcoreapp2.0 - nuget System.Configuration.ConfigurationManager - nuget System.Data.Common - nuget Microsoft.Data.SqlClient - nuget System.Runtime.Caching nuget FSharp.Core - nuget Microsoft.SqlServer.TransactSql.ScriptDom - nuget Microsoft.SqlServer.Types - + group Test source https://www.nuget.org/api/v2/ - framework: net461, netcoreapp2.0 + framework: netcoreapp2.0 nuget FSharp.Core = 4.5.2 nuget Microsoft.Data.SqlClient - nuget System.Configuration.ConfigurationManager - - nuget Microsoft.SqlServer.Types ~> 12 + nuget Newtonsoft.Json nuget xunit = 2.4.1 nuget xunit.runner.visualstudio = 2.4.1 -group Net40 - source https://www.nuget.org/api/v2/ - framework: net40 - - nuget FSharp.Core = 4.1.18 - group TestProjects source https://www.nuget.org/api/v2/ - framework: >= net40, netcoreapp2.0, netstandard2.0 + framework: netcoreapp2.0, netstandard2.0 nuget FSharp.Core = 4.3.4 nuget Microsoft.Data.SqlClient - nuget System.Configuration.ConfigurationManager group Samples source https://www.nuget.org/api/v2/ - framework: >= net40 + framework: netcoreapp2.0 nuget FSharp.Core = 4.5.2 diff --git a/paket.lock b/paket.lock index e64717bf..2f3d5a50 100644 --- a/paket.lock +++ b/paket.lock @@ -6,7 +6,7 @@ GITHUB src/ProvidedTypesTesting.fs (28a24a69ada68ebd1ad25226634f4608e4875493) GROUP Build GENERATE-LOAD-SCRIPTS: ON -RESTRICTION: >= net451 +RESTRICTION: == netstandard2.0 NUGET remote: https://www.nuget.org/api/v2 FAKE (5.8.4) @@ -17,738 +17,177 @@ NUGET Microsoft.AspNet.Razor (>= 2.0.30506) RazorEngine (>= 3.3) Microsoft.AspNet.Razor (3.2.6) - NuGet.CommandLine (4.7.1) + NuGet.CommandLine (5.5.1) RazorEngine (3.3) Microsoft.AspNet.Razor (>= 2.0.30506) GROUP DesignTime -RESTRICTION: || (== netstandard2.0) (>= net461) +RESTRICTION: == netcoreapp2.0 NUGET remote: https://www.nuget.org/api/v2 - FSharp.Core (4.6.2) - Microsoft.CSharp (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - Microsoft.Data.SqlClient (1.1.1) - Microsoft.Data.SqlClient.SNI (>= 1.1 < 1.2) - restriction: || (&& (== netstandard2.0) (>= net46)) (>= net461) - Microsoft.Identity.Client (>= 3.0.8) - Microsoft.IdentityModel.JsonWebTokens (>= 5.5) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.5) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.Win32.Registry (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) - runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) - System.Buffers (>= 4.4) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) - System.Data.Common (>= 4.3) - restriction: || (&& (== netstandard2.0) (>= net46)) (>= net461) - System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Memory (>= 4.5.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Security.Principal.Windows (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) - System.Text.Encoding.CodePages (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) - Microsoft.Data.SqlClient.SNI (1.1.1) - restriction: || (&& (== netstandard2.0) (>= net46)) (>= net461) - Microsoft.Identity.Client (4.8.2) - Microsoft.CSharp (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - NETStandard.Library (>= 1.6.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Diagnostics.Process (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Private.Uri (>= 4.3.2) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) - System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - System.Runtime.Serialization.Json (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Security.SecureString (>= 4.3) - restriction: || (== netstandard2.0) (&& (>= monoandroid9.0) (>= net461)) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - System.Xml.XDocument (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= xamarinios)) - Microsoft.IdentityModel.JsonWebTokens (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Tokens (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - Microsoft.IdentityModel.Logging (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Protocols (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Logging (>= 5.6) - Microsoft.IdentityModel.Tokens (>= 5.6) - Microsoft.IdentityModel.Protocols.OpenIdConnect (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Protocols (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - System.IdentityModel.Tokens.Jwt (>= 5.6) - Microsoft.IdentityModel.Tokens (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.Logging (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - Microsoft.NETCore.Platforms (2.2) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (2.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.SqlServer.TransactSql.ScriptDom (15.0.4200.1) - Microsoft.SqlServer.Types (14.0.1016.290) - Microsoft.Win32.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - 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) - NETStandard.Library (2.0.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - Newtonsoft.Json (12.0.3) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.native.System (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1.1) - Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) - 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.native.System.Net.Http (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1.1) - Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - 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)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Collections.Concurrent (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Collections.NonGeneric (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net462)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net462) (>= netcoreapp2.1)) (&& (>= net462) (>= xamarinios)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Collections.Specialized (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.ComponentModel (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.ComponentModel.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net462)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (< netstandard1.0) (>= win8)) (&& (>= net461) (>= wp8)) (&& (>= net461) (>= wpa81)) (&& (>= net461) (>= xamarinios)) (&& (>= net462) (>= netcoreapp2.1)) (&& (>= net462) (>= xamarinios)) - System.ComponentModel (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.ComponentModel.TypeConverter (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (>= net462) - System.Collections.Specialized (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.ComponentModel (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.ComponentModel.Primitives (>= 4.3) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Configuration.ConfigurationManager (4.5) - System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: == netstandard2.0 - System.Security.Permissions (>= 4.5) - 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.Debug (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) - System.Diagnostics.Process (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - runtime.native.System (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.Thread (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.ThreadPool (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Diagnostics.Tools (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Tracing (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Dynamic.Runtime (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Linq.Expressions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.ObjectModel (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization.Calendars (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization.Extensions (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IdentityModel.Tokens.Jwt (5.6) - restriction: || (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (>= net461) - Microsoft.IdentityModel.JsonWebTokens (>= 5.6) - Microsoft.IdentityModel.Tokens (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - 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)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.IO.FileSystem (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Linq (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Linq.Expressions (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.ObjectModel (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - 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.ObjectModel (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Private.DataContractSerialization (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Collections.Concurrent (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Serialization.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.XDocument (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.XmlDocument (>= 4.3) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Private.Uri (4.3.2) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) - Microsoft.NETCore.Platforms (>= 1.1.1) - Microsoft.NETCore.Targets (>= 1.1.3) - System.Reflection (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Emit (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (>= net461) (< netstandard1.1)) (&& (>= net461) (< netstandard2.0) (>= wpa81)) (&& (>= net461) (>= uap10.1)) - System.Reflection.Emit.ILGeneration (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (>= net461) (< netstandard1.1)) (&& (>= net461) (< netstandard2.0) (>= wpa81)) (&& (>= net461) (>= uap10.1)) - System.Reflection.Emit.Lightweight (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (>= net461) (< netstandard2.0) (>= wpa81)) (&& (>= net461) (< portable-net45+wp8)) (&& (>= net461) (>= uap10.1)) - System.Reflection.Extensions (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= xamarinios)) - System.Resources.ResourceManager (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net451) (>= net461)) - 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)) - 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)) - 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)) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime.Handles (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (>= net462) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) - System.Runtime.Numerics (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Serialization.Primitives (>= 4.3) - System.Runtime.Serialization.Json (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Security.AccessControl (4.5) - System.Security.Principal.Windows (>= 4.5) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime.Numerics (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Cng (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Csp (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.Encoding (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Collections.Concurrent (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.OpenSsl (4.7) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Primitives (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.ProtectedData (4.5) - restriction: == netstandard2.0 - System.Memory (>= 4.5) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - runtime.native.System (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Globalization.Calendars (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (< netstandard1.4)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Runtime.Numerics (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461) (>= netstandard1.6)) - 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.Security.SecureString (4.3) - restriction: || (== netstandard2.0) (&& (>= monoandroid9.0) (>= net461)) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) (&& (>= net461) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - 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.Encoding.Extensions (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Threading (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks (4.3) - restriction: || (== netstandard2.0) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks.Extensions (4.5.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - System.Threading.Thread (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading.ThreadPool (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Xml.XDocument (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Xml.XmlDocument (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net46) (>= net461)) - System.Xml.XmlSerializer (4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Linq (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (== netstandard2.0) (&& (< net45) (>= net461)) - -GROUP Net40 -RESTRICTION: == net40 -NUGET - remote: https://www.nuget.org/api/v2 - FSharp.Core (4.1.18) + FSharp.Core (4.7.2) GROUP Samples -RESTRICTION: >= net40 +RESTRICTION: == netcoreapp2.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) - 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) + FSharp.Data.SqlClient (2.0.6) + FSharp.Core (>= 4.3.4) + System.Configuration.ConfigurationManager (>= 4.5) + System.Data.SqlClient (>= 4.5.1) + Microsoft.AspNet.WebApi (5.2.7) + Microsoft.AspNet.WebApi.WebHost (>= 5.2.7 < 5.3) + Microsoft.AspNet.WebApi.Client (5.2.7) + Newtonsoft.Json (>= 10.0.1) + Newtonsoft.Json.Bson (>= 1.0.1) + 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 (3.1.1) + Microsoft.Win32.Registry (4.7) + System.Memory (>= 4.5.3) + System.Security.AccessControl (>= 4.7) + System.Security.Principal.Windows (>= 4.7) + Newtonsoft.Json (12.0.3) + Newtonsoft.Json.Bson (1.0.2) + Newtonsoft.Json (>= 12.0.1) + runtime.native.System.Data.SqlClient.sni (4.7) + 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) + runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) + runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) + System.Configuration.ConfigurationManager (4.7) + System.Security.Cryptography.ProtectedData (>= 4.7) + System.Security.Permissions (>= 4.7) + System.Data.SqlClient (4.8.1) + Microsoft.Win32.Registry (>= 4.7) + runtime.native.System.Data.SqlClient.sni (>= 4.7) + System.Diagnostics.DiagnosticSource (>= 4.7) + System.Memory (>= 4.5.3) + System.Security.Principal.Windows (>= 4.7) + System.Text.Encoding.CodePages (>= 4.7) + System.Diagnostics.DiagnosticSource (4.7.1) + System.Memory (>= 4.5.4) + System.Memory (4.5.4) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) + System.Runtime.CompilerServices.Unsafe (4.7.1) + System.Security.AccessControl (4.7) + Microsoft.NETCore.Platforms (>= 3.1) + System.Security.Principal.Windows (>= 4.7) + System.Security.Cryptography.ProtectedData (4.7) + System.Memory (>= 4.5.3) + System.Security.Permissions (4.7) + System.Security.AccessControl (>= 4.7) + System.Security.Principal.Windows (4.7) + Microsoft.NETCore.Platforms (>= 3.1) + System.Text.Encoding.CodePages (4.7.1) + Microsoft.NETCore.Platforms (>= 3.1.1) + System.Runtime.CompilerServices.Unsafe (>= 4.7.1) GROUP Test -RESTRICTION: || (== net461) (== netcoreapp2.0) +RESTRICTION: == netcoreapp2.0 NUGET remote: https://www.nuget.org/api/v2 FSharp.Core (4.5.2) - Microsoft.CodeCoverage (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) - Microsoft.CSharp (4.7) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.Data.SqlClient (1.1.1) - Microsoft.Data.SqlClient.SNI (>= 1.1 < 1.2) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) + Microsoft.CodeCoverage (15.9) + Microsoft.CSharp (4.7) + Microsoft.Data.SqlClient (1.1.3) Microsoft.Identity.Client (>= 3.0.8) - Microsoft.IdentityModel.JsonWebTokens (>= 5.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.5) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - System.Buffers (>= 4.4) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) - System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - System.Data.Common (>= 4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) - System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) - System.Memory (>= 4.5.1) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) - System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - Microsoft.Data.SqlClient.SNI (1.1.1) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) - 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) + Microsoft.Win32.Registry (>= 4.5) + runtime.native.System.Data.SqlClient.sni (>= 4.4) + System.Buffers (>= 4.4) + System.Configuration.ConfigurationManager (>= 4.5) + System.Diagnostics.DiagnosticSource (>= 4.5) + System.Memory (>= 4.5.1) + System.Security.Principal.Windows (>= 4.5) + System.Text.Encoding.CodePages (>= 4.5) + Microsoft.DotNet.PlatformAbstractions (2.1) + System.AppContext (>= 4.1) + System.Collections (>= 4.0.11) + System.IO (>= 4.1) + System.IO.FileSystem (>= 4.0.1) + System.Reflection.TypeExtensions (>= 4.1) + System.Runtime.Extensions (>= 4.1) + System.Runtime.InteropServices (>= 4.1) System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - Microsoft.Extensions.DependencyModel (2.1) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) + Microsoft.Extensions.DependencyModel (2.1) 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) + System.Diagnostics.Debug (>= 4.0.11) + System.Dynamic.Runtime (>= 4.0.11) + System.Linq (>= 4.1) Microsoft.Identity.Client (4.8.2) - Microsoft.CSharp (>= 4.5) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Diagnostics.Process (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Private.Uri (>= 4.3.2) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) - System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Runtime.Serialization.Json (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Security.SecureString (>= 4.3) - restriction: || (&& (== net461) (>= monoandroid9.0)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.IdentityModel.JsonWebTokens (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Tokens (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - Microsoft.IdentityModel.Logging (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Protocols (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Logging (>= 5.6) - Microsoft.IdentityModel.Tokens (>= 5.6) - Microsoft.IdentityModel.Protocols.OpenIdConnect (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Protocols (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - System.IdentityModel.Tokens.Jwt (>= 5.6) - Microsoft.IdentityModel.Tokens (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.Logging (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - Microsoft.NET.Test.Sdk (15.9) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) + Microsoft.CSharp (>= 4.5) + NETStandard.Library (>= 1.6.1) + System.ComponentModel.TypeConverter (>= 4.3) + System.Diagnostics.Process (>= 4.3) + System.Dynamic.Runtime (>= 4.3) + System.Private.Uri (>= 4.3.2) + System.Runtime.Serialization.Formatters (>= 4.3) + System.Runtime.Serialization.Json (>= 4.3) + System.Runtime.Serialization.Primitives (>= 4.3) + System.Security.Cryptography.X509Certificates (>= 4.3) + System.Security.SecureString (>= 4.3) + System.Xml.XDocument (>= 4.3) + System.Xml.XmlDocument (>= 4.3) + Microsoft.NET.Test.Sdk (15.9) 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== 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.TestHost (>= 15.9) + Microsoft.NETCore.Platforms (2.1.1) + Microsoft.NETCore.Targets (2.1) + Microsoft.TestPlatform.ObjectModel (15.9) + NETStandard.Library (>= 1.6) + System.ComponentModel.EventBasedAsync (>= 4.0.11) + System.ComponentModel.TypeConverter (>= 4.1) + System.Diagnostics.Process (>= 4.1) + System.Diagnostics.TextWriterTraceListener (>= 4.0) + System.Diagnostics.TraceSource (>= 4.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) (< net45)) (== 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.Reflection.TypeExtensions (>= 4.1) + System.Runtime.InteropServices.RuntimeInformation (>= 4.0) + System.Runtime.Loader (>= 4.0) + System.Runtime.Serialization.Json (>= 4.0.2) + System.Runtime.Serialization.Primitives (>= 4.1.1) + System.Threading.Thread (>= 4.0) + System.Xml.XPath.XmlDocument (>= 4.0.1) + Microsoft.TestPlatform.TestHost (15.9) + Microsoft.Extensions.DependencyModel (>= 1.0.3) + Microsoft.TestPlatform.ObjectModel (>= 15.9) + Newtonsoft.Json (>= 9.0.1) + Microsoft.Win32.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + Microsoft.Win32.Registry (4.5) + System.Memory (>= 4.5) System.Security.AccessControl (>= 4.5) System.Security.Principal.Windows (>= 4.5) - NETStandard.Library (2.0.3) - restriction: || (&& (== net461) (< net452)) (== netcoreapp2.0) + NETStandard.Library (2.0.3) Microsoft.NETCore.Platforms (>= 1.1) - Newtonsoft.Json (11.0.2) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System (4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) + Newtonsoft.Json (12.0.3) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.native.System (4.3.1) 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.5) 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.native.System.Net.Http (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) + runtime.native.System.Net.Http (4.3.1) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.Apple (4.3.1) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -764,547 +203,535 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - 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)) (== netcoreapp2.0) - System.Buffers (4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) - System.Collections (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Collections.Concurrent (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 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.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Collections.Immutable (1.5) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) - System.Collections.NonGeneric (4.3) - restriction: || (&& (== net461) (< net45) (>= net462)) (&& (== net461) (< net45) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== 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) (< net45) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.ComponentModel.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (< netstandard1.0) (>= win8)) (&& (== net461) (>= wp8)) (&& (== net461) (>= wpa81)) (&& (== net461) (>= xamarinios)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== 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) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + 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) + System.AppContext (4.3) + System.Runtime (>= 4.3) + System.Buffers (4.5) + System.Collections (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Collections.Concurrent (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tracing (>= 4.3) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Collections.Immutable (1.5) + System.Collections.NonGeneric (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Collections.Specialized (4.3) + System.Collections.NonGeneric (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Extensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.ComponentModel (4.3) + System.Runtime (>= 4.3) + System.ComponentModel.EventBasedAsync (4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.ComponentModel.Primitives (4.3) + System.ComponentModel (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.ComponentModel.TypeConverter (4.3) + System.Collections (>= 4.3) + System.Collections.NonGeneric (>= 4.3) + System.Collections.Specialized (>= 4.3) + System.ComponentModel (>= 4.3) 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.Globalization (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) System.Configuration.ConfigurationManager (4.5) - System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: == netcoreapp2.0 + System.Security.Cryptography.ProtectedData (>= 4.5) System.Security.Permissions (>= 4.5) - System.Data.Common (4.3) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) - 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) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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) (< net45)) (== 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.Debug (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.DiagnosticSource (4.5.1) + System.Diagnostics.Process (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) + Microsoft.Win32.Registry (>= 4.3) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Thread (>= 4.3) + System.Threading.ThreadPool (>= 4.3) + System.Diagnostics.TextWriterTraceListener (4.3) 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Dynamic.Runtime (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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)) (== 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.Globalization (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization.Calendars (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Globalization.Extensions (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== 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.IdentityModel.Tokens.Jwt (5.6) - restriction: || (== net461) (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) - Microsoft.IdentityModel.JsonWebTokens (>= 5.6) - Microsoft.IdentityModel.Tokens (>= 5.6) - Newtonsoft.Json (>= 10.0.1) - System.IO (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem (4.3) - restriction: || (&& (== net461) (< net45)) (== 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.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Diagnostics.Tools (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.TraceSource (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Diagnostics.Tracing (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Dynamic.Runtime (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Linq (>= 4.3) + System.Linq.Expressions (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Globalization (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Globalization.Calendars (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Runtime (>= 4.3) + System.Globalization.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.IO (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) System.IO.FileSystem.Primitives (>= 4.3) - System.Runtime (>= 4.3) - 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) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Linq (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Linq.Expressions (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.ObjectModel (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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)) (== netcoreapp2.0) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Memory (4.5.1) - restriction: || (&& (== net461) (< net451) (>= netstandard2.0)) (&& (== net461) (>= netcoreapp2.0)) (&& (== net461) (>= uap10.1)) (== netcoreapp2.0) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem.Primitives (4.3) + System.Runtime (>= 4.3) + System.Linq (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Linq.Expressions (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Memory (4.5.1) System.Runtime.CompilerServices.Unsafe (>= 4.5) - System.ObjectModel (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 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.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Private.DataContractSerialization (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Collections.Concurrent (>= 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.Linq (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== 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)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) + System.ObjectModel (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Private.DataContractSerialization (4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) System.Reflection.TypeExtensions (>= 4.3) - System.Resources.ResourceManager (>= 4.3) - 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.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 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.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XDocument (>= 4.3) System.Xml.XmlDocument (>= 4.3) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Private.Uri (4.3.2) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (== netcoreapp2.0) + System.Xml.XmlSerializer (>= 4.3) + System.Private.Uri (4.3.2) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - System.Reflection (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO (>= 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 (4.3) - restriction: || (&& (== net461) (< net45)) (== 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) (< net45)) (== 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) (< net45) (>= netstandard1.6)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection.Metadata (1.6) - restriction: || (&& (== net461) (>= netcoreapp1.0)) (== netcoreapp2.0) + System.Reflection (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Emit (4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Emit.ILGeneration (4.3) + System.Reflection (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Emit.Lightweight (4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Metadata (1.6) System.Collections.Immutable (>= 1.5) - System.Reflection.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (== net461) (< net45) (>= netstandard1.5)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Resources.ResourceManager (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== 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) (>= xamarintvos)) (&& (== net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (== net461) (>= uap10.1)) (&& (== net461) (>= xamarinios)) (&& (== net461) (>= xamarinmac)) (== netcoreapp2.0) - System.Runtime.Extensions (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.Handles (4.3) - restriction: || (&& (== net461) (< net45)) (== 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) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= net462)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== 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)) (== netcoreapp2.0) - System.Reflection.Extensions (>= 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.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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.Numerics (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - System.Globalization (>= 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.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Reflection (>= 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.Reflection.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Reflection.TypeExtensions (4.5.1) + System.Resources.ResourceManager (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime.CompilerServices.Unsafe (4.5.2) + System.Runtime.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Runtime.Handles (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Runtime.InteropServices (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices.RuntimeInformation (4.3) + runtime.native.System (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Threading (>= 4.3) + System.Runtime.Loader (4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Numerics (4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Serialization.Formatters (4.3) + System.Collections (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) System.Runtime.Serialization.Primitives (>= 4.3) - System.Runtime.Serialization.Json (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) + System.Runtime.Serialization.Json (4.3) + System.IO (>= 4.3) + System.Private.DataContractSerialization (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Serialization.Primitives (4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) System.Security.AccessControl (4.5) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) + Microsoft.NETCore.Platforms (>= 2.0) System.Security.Principal.Windows (>= 4.5) - System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (&& (== net461) (>= net463)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (&& (== net461) (>= net463)) (== netcoreapp2.0) + System.Security.Cryptography.Algorithms (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Security.Cryptography.Cng (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Reflection (>= 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) + System.Security.Cryptography.Cng (4.5) + Microsoft.NETCore.Platforms (>= 2.0) + System.Security.Cryptography.Csp (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Security.Cryptography.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Linq (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) System.Security.Cryptography.Primitives (>= 4.3) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Linq (>= 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.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (&& (== net461) (>= netcoreapp2.0)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (== net461) (< net45) (>= netstandard1.6)) (== 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.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.ProtectedData (4.5) - restriction: == netcoreapp2.0 - System.Memory (>= 4.5) - restriction: || (&& (== net461) (< net46) (>= netstandard2.0)) (== netcoreapp2.0) - System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Globalization.Calendars (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Runtime.Numerics (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) + System.Text.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (4.5) + Microsoft.NETCore.Platforms (>= 2.0) + System.Security.Cryptography.Primitives (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Security.Cryptography.ProtectedData (4.5) + System.Memory (>= 4.5) + System.Security.Cryptography.X509Certificates (4.3.2) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System (>= 4.3) + runtime.native.System.Net.Http (>= 4.3) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Calendars (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) System.Security.Cryptography.Algorithms (>= 4.3) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) + System.Security.Cryptography.Cng (>= 4.3) + System.Security.Cryptography.Csp (>= 4.3) System.Security.Cryptography.Encoding (>= 4.3) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net46) (>= netstandard1.6)) (== netcoreapp2.0) + System.Security.Cryptography.OpenSsl (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) 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.Security.SecureString (4.3) - restriction: || (&& (== net461) (>= monoandroid9.0)) (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - 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.Handles (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Security.Cryptography.Primitives (>= 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.Text.Encoding (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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.Security.Principal.Windows (4.5.1) + Microsoft.NETCore.Platforms (>= 2.0) + System.Security.SecureString (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding.CodePages (4.5) + Microsoft.NETCore.Platforms (>= 2.0) System.Runtime.CompilerServices.Unsafe (>= 4.5) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.RegularExpressions (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp1.1)) (== netcoreapp2.0) - System.Threading (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= xamarinios)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) + System.Text.Encoding.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.RegularExpressions (4.3) + System.Runtime (>= 4.3) + System.Threading (4.3) + System.Runtime (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Tasks (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Threading.Tasks.Extensions (4.5.1) System.Runtime.CompilerServices.Unsafe (>= 4.5) - System.Threading.Thread (4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (== net461) (< net46)) (== netcoreapp2.0) - System.Threading.ThreadPool (4.3) - restriction: || (&& (== net461) (< net45)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO.FileSystem.Primitives (>= 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.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Xml.XDocument (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 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.Runtime.Extensions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Text.Encoding (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Xml.XmlDocument (4.3) - restriction: || (&& (== net461) (< net45)) (&& (== net461) (>= xamarinios)) (== 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) (< net45)) (&& (== net461) (>= netcoreapp2.1)) (&& (== net461) (>= uap10.0)) (== netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Globalization (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Linq (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Reflection (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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.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)) (== 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.Text.RegularExpressions (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Threading (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== netcoreapp2.0) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (== net461) (< net45)) (== 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.Threading.Thread (4.3) + System.Runtime (>= 4.3) + System.Threading.ThreadPool (4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Xml.ReaderWriter (4.3.1) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.3) + System.Xml.XDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tools (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlSerializer (4.3) + System.Collections (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XPath (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XPath.XmlDocument (4.3) + System.Collections (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) System.Xml.XmlDocument (>= 4.3) System.Xml.XPath (>= 4.3) xunit (2.4.1) @@ -1314,101 +741,81 @@ 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) 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) 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) 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) GROUP TestProjects -RESTRICTION: || (== netcoreapp2.0) (== netstandard2.0) (>= net40) +RESTRICTION: || (== netcoreapp2.0) (== netstandard2.0) NUGET remote: https://www.nuget.org/api/v2 FSharp.Core (4.3.4) - Microsoft.CSharp (4.7) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.Data.SqlClient (1.1.1) - Microsoft.Data.SqlClient.SNI (>= 1.1 < 1.2) - restriction: >= net46 - Microsoft.Identity.Client (>= 3.0.8) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard2.0)) (>= net46) - Microsoft.IdentityModel.JsonWebTokens (>= 5.5) - restriction: || (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (>= net46) - Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.5) - restriction: || (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (>= net46) - Microsoft.Win32.Registry (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) - runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) - System.Buffers (>= 4.4) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Configuration.ConfigurationManager (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) - System.Data.Common (>= 4.3) - restriction: >= net46 - System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Memory (>= 4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Security.Principal.Windows (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) - System.Text.Encoding.CodePages (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) - Microsoft.Data.SqlClient.SNI (1.1.1) - restriction: >= net46 - Microsoft.Identity.Client (4.8.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard2.0)) (>= net46) - Microsoft.CSharp (>= 4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) - NETStandard.Library (>= 1.6.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) - System.Diagnostics.Process (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Dynamic.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Private.Uri (>= 4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) - System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) - System.Runtime.Serialization.Json (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) - System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Security.SecureString (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid9.0) (>= net40)) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) - System.Xml.XDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.0)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) (&& (>= net40) (>= xamarinios)) - Microsoft.IdentityModel.JsonWebTokens (5.6) - restriction: || (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (>= net46) - Microsoft.IdentityModel.Tokens (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Newtonsoft.Json (>= 10.0.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Logging (5.6) - restriction: || (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Protocols (5.6) - restriction: || (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Logging (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Tokens (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Protocols.OpenIdConnect (5.6) - restriction: || (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (>= net46) - Microsoft.IdentityModel.Protocols (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Newtonsoft.Json (>= 10.0.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - System.IdentityModel.Tokens.Jwt (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Tokens (5.6) - restriction: || (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Logging (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Newtonsoft.Json (>= 10.0.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.NETCore.Platforms (2.1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) - Microsoft.NETCore.Targets (3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) - Microsoft.Win32.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - 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) - NETStandard.Library (2.0.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.0) (>= portable-net45+win8)) (&& (>= net40) (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.0) (>= win8)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard1.5) (>= uap10.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= wp8)) (&& (>= net45) (< netstandard1.3)) (&& (>= net46) (< netstandard1.4)) (>= net461) - Newtonsoft.Json (12.0.3) - restriction: || (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4)) (>= net461) - runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.native.System (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) + Microsoft.CSharp (4.7) + Microsoft.Data.SqlClient (1.1.3) + Microsoft.Identity.Client (>= 3.0.8) + Microsoft.Win32.Registry (>= 4.5) + runtime.native.System.Data.SqlClient.sni (>= 4.4) + System.Buffers (>= 4.4) + System.Configuration.ConfigurationManager (>= 4.5) + System.Diagnostics.DiagnosticSource (>= 4.5) + System.Memory (>= 4.5.1) + System.Security.Principal.Windows (>= 4.5) + System.Text.Encoding.CodePages (>= 4.5) + Microsoft.Identity.Client (4.8.2) + Microsoft.CSharp (>= 4.5) + NETStandard.Library (>= 1.6.1) + System.ComponentModel.TypeConverter (>= 4.3) + System.Diagnostics.Process (>= 4.3) + System.Dynamic.Runtime (>= 4.3) + System.Private.Uri (>= 4.3.2) + System.Runtime.Serialization.Formatters (>= 4.3) + System.Runtime.Serialization.Json (>= 4.3) + System.Runtime.Serialization.Primitives (>= 4.3) + System.Security.Cryptography.X509Certificates (>= 4.3) + System.Security.SecureString (>= 4.3) + System.Xml.XDocument (>= 4.3) + System.Xml.XmlDocument (>= 4.3) + Microsoft.NETCore.Platforms (2.1.1) + Microsoft.NETCore.Targets (3.1) + Microsoft.Win32.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + Microsoft.Win32.Registry (4.5) + System.Buffers (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= monoandroid) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Memory (>= 4.5) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (>= 4.5) + NETStandard.Library (2.0.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.native.System (4.3.1) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Data.SqlClient.sni (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) + runtime.native.System.Data.SqlClient.sni (4.5) 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.native.System.Net.Http (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) + runtime.native.System.Net.Http (4.3.1) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6)) + runtime.native.System.Security.Cryptography.Apple (4.3.1) runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) + runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) @@ -1424,486 +831,472 @@ NUGET runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3) - runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6)) - runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - 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) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Collections (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= netstandard1.6) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Collections.Concurrent (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Collections.NonGeneric (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net462)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) (&& (>= net462) (>= netcoreapp2.1)) (&& (>= net462) (>= xamarinios)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Collections.Specialized (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.ComponentModel (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.ComponentModel.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (>= net40) (>= netstandard2.0) (>= wp8)) (&& (>= net40) (>= netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarinios)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.5)) (&& (>= net45) (< netstandard1.5) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net462)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (< netstandard1.0) (>= win8)) (&& (>= net46) (>= wp8)) (&& (>= net46) (>= wpa81)) (&& (>= net46) (>= xamarinios)) (&& (>= net462) (>= netcoreapp2.1)) (&& (>= net462) (>= xamarinios)) - System.ComponentModel (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.ComponentModel.TypeConverter (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.5)) (>= net462) - System.Collections.Specialized (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.ComponentModel (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.ComponentModel.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (< netstandard1.0) (>= win8)) (&& (>= net40) (>= wp8)) (&& (>= net40) (>= wpa81)) (&& (>= net45) (< netstandard1.5)) (>= net462) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) + runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) + runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) + 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) + System.Buffers (4.5) + System.Collections (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Collections.Concurrent (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tracing (>= 4.3) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Collections.NonGeneric (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Collections.Specialized (4.3) + System.Collections.NonGeneric (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Extensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.ComponentModel (4.3) + System.Runtime (>= 4.3) + System.ComponentModel.Primitives (4.3) + System.ComponentModel (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.ComponentModel.TypeConverter (4.3) + System.Collections (>= 4.3) + System.Collections.NonGeneric (>= 4.3) + System.Collections.Specialized (>= 4.3) + System.ComponentModel (>= 4.3) + System.ComponentModel.Primitives (>= 4.3) + System.Globalization (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) System.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) (>= 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) - 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.Debug (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.DiagnosticSource (4.5.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) - System.Diagnostics.Process (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - runtime.native.System (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Threading.Thread (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Threading.ThreadPool (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Diagnostics.Tools (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Diagnostics.Tracing (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Dynamic.Runtime (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Linq.Expressions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.ObjectModel (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= netstandard1.6) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization.Calendars (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization.Extensions (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IdentityModel.Tokens.Jwt (5.6) - restriction: || (&& (== netcoreapp2.0) (>= net46)) (&& (== netcoreapp2.0) (>= netcoreapp2.1)) (&& (== netstandard2.0) (>= net46)) (&& (== netstandard2.0) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard2.0)) (&& (>= net451) (>= netcoreapp2.1) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.JsonWebTokens (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Microsoft.IdentityModel.Tokens (>= 5.6) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - Newtonsoft.Json (>= 10.0.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.4)) (&& (>= net451) (< netstandard1.4)) (>= net461) - System.IO (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) (&& (< net45) (>= net46) (< netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.IO.FileSystem (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO.FileSystem.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Linq (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Linq.Expressions (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.ObjectModel (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - 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.ObjectModel (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Private.DataContractSerialization (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Collections.Concurrent (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.XDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Private.Uri (4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) + System.Security.Cryptography.ProtectedData (>= 4.5) + System.Security.Permissions (>= 4.5) + System.Diagnostics.Debug (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.DiagnosticSource (4.5.1) + System.Diagnostics.Process (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.Win32.Primitives (>= 4.3) + Microsoft.Win32.Registry (>= 4.3) + runtime.native.System (>= 4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Thread (>= 4.3) + System.Threading.ThreadPool (>= 4.3) + System.Diagnostics.Tools (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Diagnostics.Tracing (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Dynamic.Runtime (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Linq (>= 4.3) + System.Linq.Expressions (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Globalization (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Globalization.Calendars (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Runtime (>= 4.3) + System.Globalization.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.IO (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.IO.FileSystem.Primitives (4.3) + System.Runtime (>= 4.3) + System.Linq (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Linq.Expressions (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.ObjectModel (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Threading (>= 4.3) + System.Memory (4.5.1) + System.Buffers (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= monotouch)) (&& (== netcoreapp2.0) (>= net461)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= xamarinios)) (&& (== netcoreapp2.0) (>= xamarinmac)) (&& (== netcoreapp2.0) (>= xamarintvos)) (&& (== netcoreapp2.0) (>= xamarinwatchos)) (== netstandard2.0) + System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Numerics.Vectors (4.5) - restriction: || (&& (== netcoreapp2.0) (>= net461)) (== netstandard2.0) + System.ObjectModel (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Private.DataContractSerialization (4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Emit.Lightweight (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Serialization.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XDocument (>= 4.3) + System.Xml.XmlDocument (>= 4.3) + System.Xml.XmlSerializer (>= 4.3) + System.Private.Uri (4.3.2) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + System.Reflection (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.IO (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Emit (4.7) + System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Emit.ILGeneration (4.7) + System.Reflection.Emit.Lightweight (4.7) + System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+wp8)) (&& (== netcoreapp2.0) (>= uap10.1)) (== netstandard2.0) + System.Reflection.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Reflection.Primitives (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Reflection.TypeExtensions (4.7) + System.Resources.ResourceManager (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Globalization (>= 4.3) + System.Reflection (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime (4.3.1) Microsoft.NETCore.Platforms (>= 1.1.1) Microsoft.NETCore.Targets (>= 1.1.3) - System.Reflection (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Reflection.Emit (4.7) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netstandard1.1)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (>= uap10.1)) (== netstandard2.0) (&& (>= 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) (>= uap10.1)) - System.Reflection.Emit.ILGeneration (4.7) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (>= netstandard2.0) (>= uap10.1)) (&& (< net45) (>= net46)) (&& (>= net46) (< netstandard1.1)) (&& (>= net46) (< netstandard2.0) (>= wpa81)) (&& (>= net46) (>= uap10.1)) - System.Reflection.Emit.Lightweight (4.7) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netstandard2.0)) (&& (== netcoreapp2.0) (< portable-net45+wp8)) (&& (== netcoreapp2.0) (>= uap10.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+wp8)) (&& (>= net40) (< portable-net45+wp8) (>= win8)) (&& (>= net40) (>= uap10.1)) - System.Reflection.Extensions (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Reflection.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Reflection.TypeExtensions (4.7) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - System.Resources.ResourceManager (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= netstandard1.6) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0)) - System.Runtime (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (< netstandard1.3)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monotouch) (>= net40) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard1.0) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= netstandard2.0) (>= wp8)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1)) (&& (>= net45) (>= netstandard2.0) (>= uap10.0)) (&& (>= net45) (>= uap10.1)) (&& (< net45) (>= net46)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (< netstandard1.0)) (&& (>= net46) (< netstandard2.0) (>= wpa81)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= wp8)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) - System.Runtime.Extensions (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= netstandard1.6) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime (>= 4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) - System.Runtime.Handles (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) (&& (< net45) (>= net46) (< netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.InteropServices (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.2)) (&& (>= net40) (< net45) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) (>= net462) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.5)) (&& (>= net40) (< net45) (>= netstandard1.5)) (&& (>= net40) (>= netcoreapp1.1)) - System.Runtime.Numerics (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Serialization.Formatters (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (>= netstandard1.4)) (>= net46) - System.Runtime.Serialization.Json (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Security.AccessControl (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netstandard2.0)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (>= 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.Algorithms (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) (>= net463) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) (>= net463) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.Numerics (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) (>= net463) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Cng (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0)) - System.Security.Cryptography.Csp (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.3)) (>= net46) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.Encoding (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< net45) (>= net46) (< netstandard1.4)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Collections.Concurrent (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.OpenSsl (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.0)) - System.Security.Cryptography.Primitives (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - 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.Cryptography.X509Certificates (4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - runtime.native.System (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - runtime.native.System.Net.Http (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Globalization.Calendars (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Runtime.Numerics (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.Cng (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Csp (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (>= net40) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net40) (< net46) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461) - System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.6)) - System.Security.Permissions (4.5) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= netstandard2.0)) (&& (>= 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.Security.SecureString (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= monoandroid9.0) (>= net40)) (&& (>= monoandroid9.0) (>= net46)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) (&& (< net45) (>= net46) (< netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - 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) - System.Text.Encoding.Extensions (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.RegularExpressions (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Runtime (>= 4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard1.6)) (&& (>= net40) (< net45) (>= netstandard1.6)) (&& (>= net40) (>= netcoreapp1.1)) - System.Runtime.Extensions (>= 4.3.1) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (>= net40)) (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.6)) - System.Threading (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46) (>= netstandard1.5)) (&& (< net45) (>= net46) (< netstandard1.5)) (&& (< net45) (>= net46) (>= netstandard1.6)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= netstandard1.6) (>= uap10.0)) (&& (>= net46) (>= xamarinios)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks.Extensions (4.5.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (>= netstandard1.0) (< netstandard2.0)) (&& (>= net40) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81)) (&& (>= net40) (< netstandard1.0) (>= win8)) (&& (>= net40) (>= netstandard2.0)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= wp8)) (>= net45) - System.Threading.Thread (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading.ThreadPool (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (< net45) (>= net46) (>= netstandard1.4)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Handles (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.ReaderWriter (4.3.1) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.IO.FileSystem (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Xml.XDocument (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Xml.XmlDocument (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= xamarinios)) (&& (< net45) (>= net46)) (&& (>= net46) (>= xamarinios)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Text.Encoding (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net46) (>= netstandard1.3)) - System.Xml.XmlSerializer (4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netstandard2.0) (>= uap10.0)) (&& (< net45) (>= net46)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.0)) - System.Collections (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Globalization (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.IO (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Linq (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Emit (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.Primitives (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Runtime.Extensions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Threading (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.0) (< netstandard1.3)) (&& (>= net40) (< net45) (>= netstandard1.3)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (== netcoreapp2.0) (== netstandard2.0) (&& (>= net40) (< net45) (>= netstandard1.3)) + System.Runtime.CompilerServices.Unsafe (4.5.2) + System.Runtime.Extensions (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1.1) + Microsoft.NETCore.Targets (>= 1.1.3) + System.Runtime (>= 4.3.1) + System.Runtime.Handles (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Runtime.InteropServices (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Reflection (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.Numerics (4.3) + System.Globalization (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Serialization.Formatters (4.3) + System.Collections (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Serialization.Primitives (>= 4.3) + System.Runtime.Serialization.Json (4.3) + System.IO (>= 4.3) + System.Private.DataContractSerialization (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Serialization.Primitives (4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Security.AccessControl (4.5) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Principal.Windows (>= 4.5) + System.Security.Cryptography.Algorithms (4.3.1) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Security.Cryptography.Cng (4.5) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Csp (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Security.Cryptography.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) + System.Collections (>= 4.3) + System.Collections.Concurrent (>= 4.3) + System.Linq (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (4.5) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.Cryptography.Primitives (4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Threading (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Security.Cryptography.ProtectedData (4.5) + System.Memory (>= 4.5) + System.Security.Cryptography.X509Certificates (4.3.2) + Microsoft.NETCore.Platforms (>= 1.1) + runtime.native.System (>= 4.3) + runtime.native.System.Net.Http (>= 4.3) + runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.Globalization.Calendars (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Runtime.Numerics (>= 4.3) + System.Security.Cryptography.Algorithms (>= 4.3) + System.Security.Cryptography.Cng (>= 4.3) + System.Security.Cryptography.Csp (>= 4.3) + System.Security.Cryptography.Encoding (>= 4.3) + System.Security.Cryptography.OpenSsl (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Security.Permissions (4.5) + System.Security.AccessControl (>= 4.5) + System.Security.Principal.Windows (4.5.1) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Security.SecureString (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Security.Cryptography.Primitives (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding.CodePages (4.5) + Microsoft.NETCore.Platforms (>= 2.0) - restriction: || (== netcoreapp2.0) (&& (== netstandard2.0) (>= netcoreapp2.0)) + System.Runtime.CompilerServices.Unsafe (>= 4.5) + System.Text.Encoding.Extensions (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.RegularExpressions (4.3.1) + System.Collections (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Globalization (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Runtime (>= 4.3.1) + System.Runtime.Extensions (>= 4.3.1) - restriction: || (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (>= 4.3) - restriction: || (&& (== netcoreapp2.0) (< netcoreapp1.1)) (== netstandard2.0) + System.Threading (4.3) + System.Runtime (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Tasks (4.3) + Microsoft.NETCore.Platforms (>= 1.1) + Microsoft.NETCore.Targets (>= 1.1) + System.Runtime (>= 4.3) + System.Threading.Tasks.Extensions (4.5.3) + System.Runtime.CompilerServices.Unsafe (>= 4.5.2) + System.Threading.Thread (4.3) + System.Runtime (>= 4.3) + System.Threading.ThreadPool (4.3) + System.Runtime (>= 4.3) + System.Runtime.Handles (>= 4.3) + System.Xml.ReaderWriter (4.3.1) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.IO.FileSystem (>= 4.3) + System.IO.FileSystem.Primitives (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Runtime.InteropServices (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Text.Encoding.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading.Tasks (>= 4.3) + System.Threading.Tasks.Extensions (>= 4.3) + System.Xml.XDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Diagnostics.Tools (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Reflection (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (4.3) + System.Collections (>= 4.3) + System.Diagnostics.Debug (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.Encoding (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlSerializer (4.3) + System.Collections (>= 4.3) + System.Globalization (>= 4.3) + System.IO (>= 4.3) + System.Linq (>= 4.3) + System.Reflection (>= 4.3) + System.Reflection.Emit (>= 4.3) + System.Reflection.Emit.ILGeneration (>= 4.3) + System.Reflection.Extensions (>= 4.3) + System.Reflection.Primitives (>= 4.3) + System.Reflection.TypeExtensions (>= 4.3) + System.Resources.ResourceManager (>= 4.3) + System.Runtime (>= 4.3) + System.Runtime.Extensions (>= 4.3) + System.Text.RegularExpressions (>= 4.3) + System.Threading (>= 4.3) + System.Xml.ReaderWriter (>= 4.3) + System.Xml.XmlDocument (>= 4.3) diff --git a/src/SqlClient.DesignTime/DesignTime.fs b/src/SqlClient.DesignTime/DesignTime.fs index 7a082290..28e84425 100644 --- a/src/SqlClient.DesignTime/DesignTime.fs +++ b/src/SqlClient.DesignTime/DesignTime.fs @@ -4,7 +4,7 @@ open System open System.Reflection open System.Data open Microsoft.Data.SqlClient -open Microsoft.SqlServer.Server +open Microsoft.Data.SqlClient.Server open System.Collections.Generic open System.Diagnostics open Microsoft.FSharp.Quotations @@ -572,10 +572,8 @@ type DesignTime private() = rowType.AddMember ctor rowType.AddXmlDoc "User-Defined Table Type" - rowType - static member internal GetExecuteArgs(cmdProvidedType: ProvidedTypeDefinition, sqlParameters: Parameter list, udttsPerSchema: Dictionary<_, ProvidedTypeDefinition>, ?unitsOfMeasurePerSchema) = [ for p in sqlParameters do @@ -593,7 +591,7 @@ type DesignTime private() = if p.Direction.HasFlag(ParameterDirection.Output) then ProvidedParameter(parameterName, parameterType = p.TypeInfo.ClrType.MakeByRefType(), isOut = true) - else + else ProvidedParameter(parameterName, parameterType = p.GetProvidedType(?unitsOfMeasurePerSchema = unitsOfMeasurePerSchema), ?optionalValue = p.DefaultValue) else assert(p.Direction = ParameterDirection.Input) diff --git a/src/SqlClient.DesignTime/SingleFileChangeMonitor.fs b/src/SqlClient.DesignTime/SingleFileChangeMonitor.fs index 205a1e5a..be073ae9 100644 --- a/src/SqlClient.DesignTime/SingleFileChangeMonitor.fs +++ b/src/SqlClient.DesignTime/SingleFileChangeMonitor.fs @@ -2,37 +2,46 @@ open System open System.IO -open System.Runtime.Caching +//open System.Runtime.Caching + +type ChangeMonitor = + inherit IDisposable + abstract member NotifyOnChanged : (obj -> unit) -> unit + abstract member UniqueId : string [] type internal SingleFileChangeMonitor(path) as this = - inherit ChangeMonitor() + //inherit ChangeMonitor() let file = new FileInfo(path) let watcher = new FileSystemWatcher( Path.GetDirectoryName(path) ) do - let dispose = ref true - try - watcher.NotifyFilter <- NotifyFilters.LastWrite ||| NotifyFilters.FileName - watcher.Changed.Add <| fun args -> this.TriggerOnFileChange(args.Name) - watcher.Deleted.Add <| fun args -> this.TriggerOnFileChange(args.Name) - watcher.Renamed.Add <| fun args -> this.TriggerOnFileChange(args.OldName) - watcher.Error.Add <| fun _ -> this.TriggerOnChange() - watcher.EnableRaisingEvents <- true - dispose := false - finally - base.InitializationComplete() - if !dispose - then - base.Dispose() - - member private __.TriggerOnChange() = base.OnChanged(state = null) + watcher.NotifyFilter <- NotifyFilters.LastWrite ||| NotifyFilters.FileName + watcher.Changed.Add <| fun args -> this.TriggerOnFileChange(args.Name) + watcher.Deleted.Add <| fun args -> this.TriggerOnFileChange(args.Name) + watcher.Renamed.Add <| fun args -> this.TriggerOnFileChange(args.OldName) + watcher.Error.Add <| fun _ -> this.TriggerOnChange() + watcher.EnableRaisingEvents <- true + + let onChangedEvent = new Event<_>() + + [] + member this.OnChanged = onChangedEvent.Publish + + member private this.TriggerOnChange() = + onChangedEvent.Trigger null + member private __.TriggerOnFileChange(fileName) = if String.Compare(file.Name, fileName, StringComparison.OrdinalIgnoreCase) = 0 then this.TriggerOnChange() - override __.UniqueId = path + string file.LastWriteTimeUtc.Ticks + string file.Length; - override __.Dispose( disposing) = if disposing then watcher.Dispose() + interface ChangeMonitor with + member __.NotifyOnChanged(callback) = + this.OnChanged.Add callback + + member __.UniqueId = path + string file.LastWriteTimeUtc.Ticks + string file.Length; + interface IDisposable with + member this.Dispose() = watcher.Dispose() diff --git a/src/SqlClient.DesignTime/SingleRootTypeProvider.fs b/src/SqlClient.DesignTime/SingleRootTypeProvider.fs index 543370cb..f3d4b8c4 100644 --- a/src/SqlClient.DesignTime/SingleRootTypeProvider.fs +++ b/src/SqlClient.DesignTime/SingleRootTypeProvider.fs @@ -19,7 +19,7 @@ type SingleRootTypeProvider(config: TypeProviderConfig, providerName, parameters let providerType = ProvidedTypeDefinition(assembly, nameSpace, providerName, Some typeof, hideObjectMethods = true, isErased = isErased) providerType.DefineStaticParameters( - parameters = parameters, + parameters = parameters, instantiationFunction = fun typeName args -> match cache.TryGetValue(typeName) with | true, cachedType -> cachedType.Value @@ -28,7 +28,7 @@ type SingleRootTypeProvider(config: TypeProviderConfig, providerName, parameters monitors |> Seq.iter(fun m -> match m with - | :? System.Runtime.Caching.ChangeMonitor as monitor -> + | :? ChangeMonitor as monitor -> monitor.NotifyOnChanged(fun _ -> cache.Remove(typeName) this.Invalidate() diff --git a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj index e0b17643..62c6ade2 100644 --- a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj +++ b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj @@ -2,7 +2,8 @@ - net461;netstandard2.0 + netcoreapp2.0 + FSharp.Data.SqlClient.DesignTime false true @@ -12,8 +13,14 @@ - - + + + + + + + + + + --> + ProvidedTypes.fsi @@ -67,13 +76,18 @@ + - - + + + + + + \ No newline at end of file diff --git a/src/SqlClient.DesignTime/SqlClientProvider.fs b/src/SqlClient.DesignTime/SqlClientProvider.fs index c71e0db4..77d05ccb 100644 --- a/src/SqlClient.DesignTime/SqlClientProvider.fs +++ b/src/SqlClient.DesignTime/SqlClientProvider.fs @@ -77,6 +77,7 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this = AppDomain.CurrentDomain.SetData("DataDirectory", dataDirectoryFullPath) let conn = new SqlConnection(designTimeConnectionString.Value) + failwith "Whaa" use closeConn = conn.UseLocally() conn.CheckVersion() conn.LoadDataTypesMap() diff --git a/src/SqlClient.DesignTime/SqlCommandProvider.fs b/src/SqlClient.DesignTime/SqlCommandProvider.fs index 399f7981..a04038a6 100644 --- a/src/SqlClient.DesignTime/SqlCommandProvider.fs +++ b/src/SqlClient.DesignTime/SqlCommandProvider.fs @@ -99,7 +99,12 @@ type SqlCommandProvider(config : TypeProviderConfig) as this = AppDomain.CurrentDomain.SetData("DataDirectory", dataDirectoryFullPath) let conn = new SqlConnection(designTimeConnectionString.Value) - use closeConn = conn.UseLocally() + use closeConn = + try + conn.OpenWithCloseOnDispose() + with + _ -> failwith "Could not open a connection to the database" + conn.CheckVersion() conn.LoadDataTypesMap() diff --git a/src/SqlClient.DesignTime/paket.references b/src/SqlClient.DesignTime/paket.references index 2fca29b4..1a6adee8 100644 --- a/src/SqlClient.DesignTime/paket.references +++ b/src/SqlClient.DesignTime/paket.references @@ -1,9 +1,2 @@ group DesignTime -System.Configuration.ConfigurationManager -System.Data.Common -System.Data.SqlClient -System.Runtime.Caching -Microsoft.SqlServer.TransactSql.ScriptDom -Microsoft.SqlServer.Types -Microsoft.Data.SqlClient diff --git a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj b/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj index b4d635d4..a753658c 100644 --- a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj +++ b/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj @@ -79,10 +79,10 @@ --> - + - ..\..\..\packages\samples\FSharp.Core\lib\net45\FSharp.Core.dll + ..\..\..\packages\samples\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll True True @@ -90,10 +90,10 @@ - + - ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net40\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll True True @@ -101,10 +101,10 @@ - + - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard2.0\System.Net.Http.Formatting.dll True True @@ -112,30 +112,214 @@ - + - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll True True + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + - + - ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll True True - + + + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard2.0\Newtonsoft.Json.Bson.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\ref\netstandard2.0\System.Data.SqlClient.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\ref\netstandard2.0\System.Security.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\ref\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\lib\netstandard2.0\System.Security.Permissions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\ref\netstandard2.0\System.Security.Permissions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.CodePages\lib\netstandard2.0\System.Text.Encoding.CodePages.dll True True diff --git a/src/SqlClient.Samples/WebApi/WebApi.csproj b/src/SqlClient.Samples/WebApi/WebApi.csproj index c08b1110..321efbdf 100644 --- a/src/SqlClient.Samples/WebApi/WebApi.csproj +++ b/src/SqlClient.Samples/WebApi/WebApi.csproj @@ -42,9 +42,6 @@ 4 - - True - @@ -117,10 +114,21 @@ --> - + + + + ..\..\..\packages\samples\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll + True + True + + + + + + - ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net40\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll True True @@ -128,10 +136,10 @@ - + - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll + ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\netstandard2.0\System.Net.Http.Formatting.dll True True @@ -139,21 +147,30 @@ - + - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll True True + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + - + - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.WebHost\lib\net45\System.Web.Http.WebHost.dll + + ..\..\..\packages\samples\Newtonsoft.Json\lib\netstandard2.0\Newtonsoft.Json.dll True True @@ -161,19 +178,183 @@ - + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll + + ..\..\..\packages\samples\Newtonsoft.Json.Bson\lib\netstandard2.0\Newtonsoft.Json.Bson.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll True True - + - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\ref\netstandard2.0\System.Data.SqlClient.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\ref\netstandard2.0\System.Security.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\ref\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\lib\netstandard2.0\System.Security.Permissions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\ref\netstandard2.0\System.Security.Permissions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.CodePages\lib\netstandard2.0\System.Text.Encoding.CodePages.dll True True diff --git a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj index cb41156d..6ddf3807 100644 --- a/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj +++ b/src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj @@ -97,10 +97,10 @@ --> - + - ..\..\..\packages\samples\FSharp.Core\lib\net45\FSharp.Core.dll + ..\..\..\packages\samples\FSharp.Core\lib\netstandard1.6\FSharp.Core.dll True True @@ -108,10 +108,203 @@ - + - ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net40\FSharp.Data.SqlClient.dll + ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\netstandard2.0\FSharp.Data.SqlClient.dll + True + True + + + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\lib\netstandard2.0\Microsoft.Win32.Registry.dll + True + True + + + + + + + ..\..\..\packages\samples\Microsoft.Win32.Registry\ref\netstandard2.0\Microsoft.Win32.Registry.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\lib\netstandard2.0\System.Configuration.ConfigurationManager.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Configuration.ConfigurationManager\ref\netstandard2.0\System.Configuration.ConfigurationManager.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\lib\netstandard2.0\System.Data.SqlClient.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Data.SqlClient\ref\netstandard2.0\System.Data.SqlClient.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Diagnostics.DiagnosticSource\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Memory\lib\netstandard2.0\System.Memory.dll + True + True + + + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Runtime.CompilerServices.Unsafe\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\lib\netstandard2.0\System.Security.AccessControl.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.AccessControl\ref\netstandard2.0\System.Security.AccessControl.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Cryptography.ProtectedData\ref\netstandard2.0\System.Security.Cryptography.ProtectedData.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\lib\netstandard2.0\System.Security.Permissions.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Permissions\ref\netstandard2.0\System.Security.Permissions.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\lib\netstandard2.0\System.Security.Principal.Windows.dll + True + True + + + + + + + ..\..\..\packages\samples\System.Security.Principal.Windows\ref\netstandard2.0\System.Security.Principal.Windows.dll + False + True + + + + + + + + + ..\..\..\packages\samples\System.Text.Encoding.CodePages\lib\netstandard2.0\System.Text.Encoding.CodePages.dll True True diff --git a/src/SqlClient.TestProjects/Lib/paket.references b/src/SqlClient.TestProjects/Lib/paket.references index fcc18951..95b8a37d 100644 --- a/src/SqlClient.TestProjects/Lib/paket.references +++ b/src/SqlClient.TestProjects/Lib/paket.references @@ -1,4 +1,5 @@ group TestProjects FSharp.Core - System.Data.SqlClient - System.Configuration.ConfigurationManager + #System.Data.SqlClient + #System.Configuration.ConfigurationManager + Microsoft.Data.SqlClient \ No newline at end of file diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj.txt similarity index 100% rename from src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj rename to src/SqlClient.TestProjects/SqlClient.Tests.NET40/SqlClient.Tests.NET40.fsproj.txt diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references b/src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references.txt similarity index 100% rename from src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references rename to src/SqlClient.TestProjects/SqlClient.Tests.NET40/paket.references.txt diff --git a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references index eeaf7709..95b8a37d 100644 --- a/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references +++ b/src/SqlClient.TestProjects/SqlClient.Tests.NetCoreApp/paket.references @@ -1,4 +1,5 @@ group TestProjects FSharp.Core - System.Data.SqlClient - System.Configuration.ConfigurationManager \ No newline at end of file + #System.Data.SqlClient + #System.Configuration.ConfigurationManager + Microsoft.Data.SqlClient \ No newline at end of file diff --git a/src/SqlClient/Extensions.fs b/src/SqlClient/Extensions.fs index c5f6e0b5..f1c3e9a9 100644 --- a/src/SqlClient/Extensions.fs +++ b/src/SqlClient/Extensions.fs @@ -51,14 +51,17 @@ module Extensions = type SqlConnection with - //address an issue when regular Dispose on SqlConnection needed for async computation - //wipes out all properties like ConnectionString in addition to closing connection to db + member this.OpenWithCloseOnDispose() = + this.Open() + { new IDisposable with member __.Dispose() = this.Close() } + + //address an issue when regular Dispose on SqlConnection needed for async computation + //wipes out all properties like ConnectionString in addition to closing connection to db member this.UseLocally(?privateConnection) = - if this.State = ConnectionState.Closed + if this.State = ConnectionState.Closed && defaultArg privateConnection true then - this.Open() - { new IDisposable with member __.Dispose() = this.Close() } + this.OpenWithCloseOnDispose() else { new IDisposable with member __.Dispose() = () } member this.IsSqlAzure = diff --git a/src/SqlClient/Properties/launchSettings.json b/src/SqlClient/Properties/launchSettings.json index c5369615..847a7e0b 100644 --- a/src/SqlClient/Properties/launchSettings.json +++ b/src/SqlClient/Properties/launchSettings.json @@ -2,8 +2,9 @@ "profiles": { "SqlClient": { "commandName": "Executable", - "executablePath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Professional\\Common7\\IDE\\devenv.exe", - "commandLineArgs": "..\\..\\Tests.sln" + "executablePath": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Professional\\Common7\\IDE\\devenv.exe", + "commandLineArgs": "..\\..\\Tests.sln", + "workingDirectory": "C:\\Projects\\FSharp.Data.SqlClient\\src\\SqlClient" } } } \ No newline at end of file diff --git a/src/SqlClient/SqlClient.fsproj b/src/SqlClient/SqlClient.fsproj index b66e2335..779f523b 100644 --- a/src/SqlClient/SqlClient.fsproj +++ b/src/SqlClient/SqlClient.fsproj @@ -2,7 +2,7 @@ - netstandard2.0 + netcoreapp2.0 FSharp.Data.SqlClient false true @@ -17,15 +17,18 @@ ..\..\bin\net40\FSharp.Data.SqlClient.XML + - + - + + + @@ -42,10 +45,12 @@ + - - + + + \ No newline at end of file diff --git a/tests/SqlClient.DesignTime.Tests/paket.references b/tests/SqlClient.DesignTime.Tests/paket.references index 4a30f472..3dbc467a 100644 --- a/tests/SqlClient.DesignTime.Tests/paket.references +++ b/tests/SqlClient.DesignTime.Tests/paket.references @@ -1,6 +1,6 @@ group Test FSharp.Core - System.Data.SqlClient - System.Configuration.ConfigurationManager + Microsoft.Data.SqlClient + #System.Configuration.ConfigurationManager xunit xunit.runner.visualstudio diff --git a/tests/SqlClient.SqlServerTypes.Tests/paket.references b/tests/SqlClient.SqlServerTypes.Tests/paket.references index efe1a3f2..e5647a67 100644 --- a/tests/SqlClient.SqlServerTypes.Tests/paket.references +++ b/tests/SqlClient.SqlServerTypes.Tests/paket.references @@ -1,8 +1,9 @@ group Test FSharp.Core - System.Data.SqlClient - System.Configuration.ConfigurationManager - Microsoft.SqlServer.Types redirects: force + #System.Data.SqlClient + #System.Configuration.ConfigurationManager + #Microsoft.SqlServer.Types redirects: force + Microsoft.Data.SqlClient Newtonsoft.Json xunit xunit.runner.visualstudio diff --git a/tests/SqlClient.Tests/ConnectionStrings.fs b/tests/SqlClient.Tests/ConnectionStrings.fs index ff336be5..016faca3 100644 --- a/tests/SqlClient.Tests/ConnectionStrings.fs +++ b/tests/SqlClient.Tests/ConnectionStrings.fs @@ -4,7 +4,7 @@ let server = @"." [] -let AdventureWorksLiteral = @"Data Source=" + server + ";Initial Catalog=AdventureWorks2012;Integrated Security=True" +let AdventureWorksLiteral = @"Data Source=mhknbn2kdz.database.windows.net;Initial Catalog=AdventureWorks2012;User ID=sqlfamily;Pwd=sqlf@m1ly"//@"Data Source=" + server + ";Initial Catalog=AdventureWorks2012;Integrated Security=True" [] let AdventureWorksDesignOnly = @"name=AdventureWorksDesignOnly" [] diff --git a/tests/SqlClient.Tests/CreateCommand.fs b/tests/SqlClient.Tests/CreateCommand.fs index 5c66a8c8..72f6077c 100644 --- a/tests/SqlClient.Tests/CreateCommand.fs +++ b/tests/SqlClient.Tests/CreateCommand.fs @@ -98,7 +98,7 @@ let toTraceString() = let resultSetMapping() = let cmd = DB.CreateCommand<"SELECT * FROM (VALUES ('F#', 2005), ('Scala', 2003), ('foo bar',NULL)) AS T(lang, DOB)", ResultType.DataReader>() - let readToMap(reader : System.Data.SqlClient.SqlDataReader) = + let readToMap(reader : Microsoft.Data.SqlClient.SqlDataReader) = seq { try while(reader.Read()) do @@ -135,7 +135,7 @@ let ``Runtime column names``() = use cmd = DB.CreateCommand<"exec dbo.[Get]", ResultType.DataReader>() Assert.False( cmd.Execute().NextResult()) -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { @@ -152,7 +152,7 @@ let CreareDynamicRecords() = use cmd = DB.CreateCommand() use conn = new SqlConnection(ConnectionStrings.AdventureWorksLiteral) conn.Open() - let cmd = new System.Data.SqlClient.SqlCommand(getDatesQuery, conn) + let cmd = new Microsoft.Data.SqlClient.SqlCommand(getDatesQuery, conn) cmd.ExecuteReader().ToRecords() |> Seq.toArray diff --git a/tests/SqlClient.Tests/DataTablesTests.fs b/tests/SqlClient.Tests/DataTablesTests.fs index 2c89ff7d..ad0e3b8f 100644 --- a/tests/SqlClient.Tests/DataTablesTests.fs +++ b/tests/SqlClient.Tests/DataTablesTests.fs @@ -3,7 +3,7 @@ open System open System.Configuration open System.Transactions -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Data open FSharp.Data open FSharp.Data.SqlClient diff --git a/tests/SqlClient.Tests/ProgrammabilityTests.fs b/tests/SqlClient.Tests/ProgrammabilityTests.fs index c70aebb1..4b8ac68a 100644 --- a/tests/SqlClient.Tests/ProgrammabilityTests.fs +++ b/tests/SqlClient.Tests/ProgrammabilityTests.fs @@ -1,7 +1,7 @@ module FSharp.Data.ProgrammabilityTest open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit type AdventureWorks = SqlProgrammabilityProvider diff --git a/tests/SqlClient.Tests/ResultTypeTests.fs b/tests/SqlClient.Tests/ResultTypeTests.fs index f045f4d4..43aee269 100644 --- a/tests/SqlClient.Tests/ResultTypeTests.fs +++ b/tests/SqlClient.Tests/ResultTypeTests.fs @@ -11,7 +11,7 @@ let command = "SELECT * FROM (VALUES ('F#', 2005), ('Scala', 2003), ('foo bar',N type ResultTypeReader = SqlCommandProvider -let ReadToMaps(reader : System.Data.SqlClient.SqlDataReader) = +let ReadToMaps(reader : Microsoft.Data.SqlClient.SqlDataReader) = seq { try while(reader.Read()) do diff --git a/tests/SqlClient.Tests/Scripts/CreateCommand.fsx b/tests/SqlClient.Tests/Scripts/CreateCommand.fsx index 3bdf619c..9c5278f2 100644 --- a/tests/SqlClient.Tests/Scripts/CreateCommand.fsx +++ b/tests/SqlClient.Tests/Scripts/CreateCommand.fsx @@ -3,7 +3,7 @@ open System open System.Data open FSharp.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] let connectionString = "Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True" diff --git a/tests/SqlClient.Tests/Scripts/SqlCommand.fsx b/tests/SqlClient.Tests/Scripts/SqlCommand.fsx index b3265057..40d4bd75 100644 --- a/tests/SqlClient.Tests/Scripts/SqlCommand.fsx +++ b/tests/SqlClient.Tests/Scripts/SqlCommand.fsx @@ -159,7 +159,7 @@ let getDatesQuery = "SELECT GETDATE() AS Now, GETUTCDATE() AS UtcNow" let localhost = "Data Source=.;Integrated Security=True;" type GetDates = SqlCommandProvider -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { @@ -171,7 +171,7 @@ type SqlDataReader with let xs = use conn = new SqlConnection(localhost) conn.Open() - let cmd = new System.Data.SqlClient.SqlCommand(getDatesQuery, conn) + let cmd = new Microsoft.Data.SqlClient.SqlCommand(getDatesQuery, conn) cmd.ExecuteReader().ToRecords() |> Seq.toArray diff --git a/tests/SqlClient.Tests/SqlClient.Tests.fsproj b/tests/SqlClient.Tests/SqlClient.Tests.fsproj index 5143b0f7..b64da63b 100644 --- a/tests/SqlClient.Tests/SqlClient.Tests.fsproj +++ b/tests/SqlClient.Tests/SqlClient.Tests.fsproj @@ -1,9 +1,10 @@  - + - net461;netcoreapp2.0 + netcoreapp2.0 + SqlClient.Tests false true @@ -47,7 +48,7 @@ - ..\..\bin\netstandard2.0\FSharp.Data.SqlClient.dll + ..\..\bin\netcoreapp2.0\FSharp.Data.SqlClient.dll diff --git a/tests/SqlClient.Tests/SynonymsTests.fs b/tests/SqlClient.Tests/SynonymsTests.fs index c1fefa1b..ed8fc15f 100644 --- a/tests/SqlClient.Tests/SynonymsTests.fs +++ b/tests/SqlClient.Tests/SynonymsTests.fs @@ -2,7 +2,7 @@ open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open ProgrammabilityTest open Xunit diff --git a/tests/SqlClient.Tests/TVPTests.fs b/tests/SqlClient.Tests/TVPTests.fs index 7bce8727..b77e04b5 100644 --- a/tests/SqlClient.Tests/TVPTests.fs +++ b/tests/SqlClient.Tests/TVPTests.fs @@ -103,7 +103,7 @@ let TwoTVPParameterOfSameUDTT() = let expected = [ for id, name in xs @ ys -> MyFunc.Record(id, name) ] Assert.Equal<_ list>(expected, cmd.Execute(xs', ys') |> Seq.toList) -open System.Data.SqlClient +open Microsoft.Data.SqlClient [] let ReuseTVPTypeForDynamicADONET() = diff --git a/tests/SqlClient.Tests/TempTableTests.fs b/tests/SqlClient.Tests/TempTableTests.fs index afe39753..bc2b14a5 100644 --- a/tests/SqlClient.Tests/TempTableTests.fs +++ b/tests/SqlClient.Tests/TempTableTests.fs @@ -2,7 +2,7 @@ open FSharp.Data open Xunit -open System.Data.SqlClient +open Microsoft.Data.SqlClient type TempTable = SqlCommandProvider< diff --git a/tests/SqlClient.Tests/TransactionTests.fs b/tests/SqlClient.Tests/TransactionTests.fs index 7d31a560..0b55dc9e 100644 --- a/tests/SqlClient.Tests/TransactionTests.fs +++ b/tests/SqlClient.Tests/TransactionTests.fs @@ -3,7 +3,7 @@ open System open System.Data open System.Transactions -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit diff --git a/tests/SqlClient.Tests/TypeProviderTest.fs b/tests/SqlClient.Tests/TypeProviderTest.fs index 294020be..0dd1c6c9 100644 --- a/tests/SqlClient.Tests/TypeProviderTest.fs +++ b/tests/SqlClient.Tests/TypeProviderTest.fs @@ -2,7 +2,7 @@ module FSharp.Data.TypeProviderTest open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open Xunit type GetEvenNumbers = SqlCommandProvider<"select * from (values (2), (4), (8), (24)) as T(value)", ConnectionStrings.AdventureWorksNamed> @@ -14,7 +14,7 @@ let asyncSinlgeColumn() = [] let emptyResultset() = - use cmd = new SqlCommandProvider<"SELECT 42 WHERE 0 > 1", ConnectionStrings.AdventureWorksNamed>() + use cmd = new SqlCommandProvider<"SELECT 42 WHERE 0 > 2", ConnectionStrings.AdventureWorksNamed>() Assert.Equal<_ []>( Array.empty, cmd.Execute() |> Seq.toArray) [] @@ -101,7 +101,7 @@ let ToTraceString() = let runString query = use conn = new SqlConnection(ConnectionStrings.AdventureWorks) conn.Open() - use cmd = new System.Data.SqlClient.SqlCommand() + use cmd = new Microsoft.Data.SqlClient.SqlCommand() cmd.Connection <- conn cmd.CommandText <- query cmd.ExecuteNonQuery() diff --git a/tests/SqlClient.Tests/app.config b/tests/SqlClient.Tests/app.config index 1b96523f..87f0926f 100644 --- a/tests/SqlClient.Tests/app.config +++ b/tests/SqlClient.Tests/app.config @@ -5,7 +5,7 @@ - - + + \ No newline at end of file diff --git a/tests/SqlClient.Tests/connectionStrings.config b/tests/SqlClient.Tests/connectionStrings.config index bf7df50c..f9f236d6 100644 --- a/tests/SqlClient.Tests/connectionStrings.config +++ b/tests/SqlClient.Tests/connectionStrings.config @@ -1,5 +1,5 @@  - - - + + + diff --git a/tests/SqlClient.Tests/paket.references b/tests/SqlClient.Tests/paket.references index d7f63edd..e43cdf56 100644 --- a/tests/SqlClient.Tests/paket.references +++ b/tests/SqlClient.Tests/paket.references @@ -1,8 +1,8 @@ group Test FSharp.Core - System.Data.SqlClient + Microsoft.Data.SqlClient System.Configuration.ConfigurationManager Newtonsoft.Json xunit - xunit.runner.visualstudio \ No newline at end of file + xunit.runner.visualstudio