From 7cf7f0012f64f1fdb00ad34f6d5de8b47d749633 Mon Sep 17 00:00:00 2001 From: Daniel Little Dev Date: Mon, 6 Mar 2023 23:08:47 +1000 Subject: [PATCH] Target Microsoft.Data.SqlClient --- .gitignore | 1 + Samples.sln | 39 - build.fsx | 76 +- docs/content/configuration and Input.fsx | 4 +- docs/content/data modification.fsx | 4 +- docs/content/faq.fsx | 4 +- docs/content/output.fsx | 2 +- docs/content/sqlenumprovider.quickstart.fsx | 4 +- docs/content/transactions.fsx | 2 +- docs/content/whatsnew.fsx | 2 +- fsc.props | 57 - global.json | 2 +- netfx.props | 51 - nuget/SqlClient.nuspec | 11 +- paket.dependencies | 65 +- paket.lock | 1790 ++++++++++------- src/SqlClient.DesignTime/AssemblyInfo.fs | 13 + src/SqlClient.DesignTime/DesignTime.fs | 7 +- .../DesignTimeConnectionString.fs | 6 +- src/SqlClient.DesignTime/QuotationsFactory.fs | 4 +- .../Scripts/Scratchpad.fsx | 2 +- .../Scripts/{XE.fsx => XE.fsx.txt} | 4 +- .../SingleRootTypeProvider.fs | 6 +- .../SqlClient.DesignTime.fsproj | 43 +- .../SqlClientExtensions.fs | 4 +- src/SqlClient.DesignTime/SqlClientProvider.fs | 63 +- .../SqlCommandProvider.fs | 8 +- src/SqlClient.DesignTime/SqlEnumProvider.fs | 23 +- src/SqlClient.DesignTime/SqlFileProvider.fs | 2 +- src/SqlClient.DesignTime/paket.references | 5 +- .../WebApi.Controllers/App.config | 11 - .../WebApi.Controllers/DataAccess.fs | 14 - .../WebApi.Controllers/HomeController.fs | 40 - .../WebApi.Controllers/T-SQL/Products.sql | 8 - .../WebApi.Controllers.fsproj | 145 -- .../WebApi.Controllers/paket.references | 6 - src/SqlClient.Samples/WebApi/Global.asax | 1 - src/SqlClient.Samples/WebApi/Global.asax.cs | 21 - .../WebApi/Properties/AssemblyInfo.cs | 35 - src/SqlClient.Samples/WebApi/Web.Debug.config | 30 - .../WebApi/Web.Release.config | 31 - src/SqlClient.Samples/WebApi/WebApi.csproj | 191 -- src/SqlClient.Samples/WebApi/paket.references | 8 - src/SqlClient.Samples/WebApi/web.config | 38 - .../WpfDataBinding/App.config | 21 - .../WpfDataBinding/MainWindow.xaml | 21 - .../WpfDataBinding/Program.fs | 33 - .../WpfDataBinding/WpfDataBinding.fsproj | 137 -- .../WpfDataBinding/paket.references | 4 - src/SqlClient.TestProjects/Lib/Lib.fsproj | 13 +- .../Lib/paket.references | 2 +- .../SqlClient.Tests.NET40.fsproj | 12 +- .../SqlClient.Tests.NET40/paket.references | 3 +- .../SqlClient.Tests.NetCoreApp.fsproj | 5 +- .../paket.references | 2 +- src/SqlClient/DataTable.fs | 9 +- src/SqlClient/Extensions.fs | 18 +- src/SqlClient/ISqlCommand.fs | 4 +- src/SqlClient/Shared.fs | 4 +- src/SqlClient/SqlClient.fsproj | 26 +- .../SqlClient.DesignTime.Tests.fsproj | 6 +- tests/SqlClient.DesignTime.Tests/app.config | 5 + .../paket.references | 2 +- .../SqlClient.SqlServerTypes.Tests/App.config | 7 +- .../SpatialTypesTests.fs | 8 +- .../SqlClient.SqlServerTypes.Tests.fsproj | 10 +- .../paket.references | 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 | 11 +- 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/paket.references | 2 +- 80 files changed, 1312 insertions(+), 1970 deletions(-) delete mode 100644 Samples.sln delete mode 100644 fsc.props delete mode 100644 netfx.props rename src/SqlClient.DesignTime/Scripts/{XE.fsx => XE.fsx.txt} (97%) delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/App.config delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/DataAccess.fs delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/HomeController.fs delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/T-SQL/Products.sql delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj delete mode 100644 src/SqlClient.Samples/WebApi.Controllers/paket.references delete mode 100644 src/SqlClient.Samples/WebApi/Global.asax delete mode 100644 src/SqlClient.Samples/WebApi/Global.asax.cs delete mode 100644 src/SqlClient.Samples/WebApi/Properties/AssemblyInfo.cs delete mode 100644 src/SqlClient.Samples/WebApi/Web.Debug.config delete mode 100644 src/SqlClient.Samples/WebApi/Web.Release.config delete mode 100644 src/SqlClient.Samples/WebApi/WebApi.csproj delete mode 100644 src/SqlClient.Samples/WebApi/paket.references delete mode 100644 src/SqlClient.Samples/WebApi/web.config delete mode 100644 src/SqlClient.Samples/WpfDataBinding/App.config delete mode 100644 src/SqlClient.Samples/WpfDataBinding/MainWindow.xaml delete mode 100644 src/SqlClient.Samples/WpfDataBinding/Program.fs delete mode 100644 src/SqlClient.Samples/WpfDataBinding/WpfDataBinding.fsproj delete mode 100644 src/SqlClient.Samples/WpfDataBinding/paket.references diff --git a/.gitignore b/.gitignore index d02dbaf6..92741f85 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ nuget/*.nupkg packages docs/output temp +ignore/ .vs/ ################# diff --git a/Samples.sln b/Samples.sln deleted file mode 100644 index 902382fb..00000000 --- a/Samples.sln +++ /dev/null @@ -1,39 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.30110.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{3F96B803-B577-49EF-80BE-9185D114135F}" - ProjectSection(SolutionItems) = preProject - paket.dependencies = paket.dependencies - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApi", "src\SqlClient.Samples\WebApi\WebApi.csproj", "{EB1F8003-352C-448B-81AC-9823BEB1B325}" -EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "WebApi.Controllers", "src\SqlClient.Samples\WebApi.Controllers\WebApi.Controllers.fsproj", "{92308B2E-43B4-4C4C-9446-87D02C4E455D}" -EndProject -Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "WpfDataBinding", "src\SqlClient.Samples\WpfDataBinding\WpfDataBinding.fsproj", "{3BA10AE4-4E31-4588-B77F-AB971DB27219}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {EB1F8003-352C-448B-81AC-9823BEB1B325}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EB1F8003-352C-448B-81AC-9823BEB1B325}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EB1F8003-352C-448B-81AC-9823BEB1B325}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EB1F8003-352C-448B-81AC-9823BEB1B325}.Release|Any CPU.Build.0 = Release|Any CPU - {92308B2E-43B4-4C4C-9446-87D02C4E455D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {92308B2E-43B4-4C4C-9446-87D02C4E455D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {92308B2E-43B4-4C4C-9446-87D02C4E455D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {92308B2E-43B4-4C4C-9446-87D02C4E455D}.Release|Any CPU.Build.0 = Release|Any CPU - {3BA10AE4-4E31-4588-B77F-AB971DB27219}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3BA10AE4-4E31-4588-B77F-AB971DB27219}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3BA10AE4-4E31-4588-B77F-AB971DB27219}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3BA10AE4-4E31-4588-B77F-AB971DB27219}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/build.fsx b/build.fsx index c51b24da..6c6ad7be 100644 --- a/build.fsx +++ b/build.fsx @@ -1,6 +1,6 @@ open Fake.DotNet // -------------------------------------------------------------------------------------- -// FAKE build script +// FAKE build script // -------------------------------------------------------------------------------------- #r @"packages/build/FAKE/tools/FakeLib.dll" @@ -19,10 +19,10 @@ open Fake.DotNet Environment.CurrentDirectory <- __SOURCE_DIRECTORY__ -let files includes = +let files includes = { BaseDirectory = __SOURCE_DIRECTORY__ Includes = includes - Excludes = [] } + Excludes = [] } // Information about the project to be used at NuGet and in AssemblyInfo files let project = "FSharp.Data.SqlClient" @@ -31,13 +31,13 @@ let authors = ["Dmitry Morozov, Dmitry Sevastianov"] let summary = "SqlClient F# type providers" let description = "SqlCommandProvider provides statically typed access to input parameters and result set of T-SQL command in idiomatic F# way.\nSqlProgrammabilityProvider exposes Stored Procedures, User-Defined Types and User-Defined Functions in F# code." let tags = "F# fsharp data typeprovider sql" - + let gitHome = "https://github.com/fsprojects" let gitName = "FSharp.Data.SqlClient" // Read release notes & version info from RELEASE_NOTES.md -let release = - File.ReadLines "RELEASE_NOTES.md" +let release = + File.ReadLines "RELEASE_NOTES.md" |> Fake.Core.ReleaseNotes.parse let version = release.AssemblyVersion @@ -76,7 +76,7 @@ let testProjectsSlnPath = "TestProjects.sln" let testSlnPath = "Tests.sln" let testProjectPath = "tests/SqlClient.Tests/SqlClient.Tests.fsproj" let runMsBuild project = - Fake.DotNet.MSBuild.build + Fake.DotNet.MSBuild.build (fun args -> let toolPath = [ @@ -90,13 +90,13 @@ let runMsBuild project = @"C:\Program Files (x86)\MSBuild\15.0\Bin" @"\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin" args.ToolPath - ] + ] |> List.map (fun p -> Path.Combine(p, "MSBuild.exe")) |> List.find File.Exists - let properties = + let properties = [ yield "Configuration", "Release" - for n,v in args.Properties do - if n <> "Configuration" then + for n,v in args.Properties do + if n <> "Configuration" then yield n,v ] { args @@ -118,14 +118,14 @@ Target.create "CleanDocs" (fun _ -> Target.create "Build" (fun _ -> DotNet.build - (fun args -> - { - args with + (fun args -> + { + args with Configuration = DotNet.Release //Common = { args.Common with Verbosity = Some DotNet.Verbosity.Detailed } } |> dnDefault) slnPath - + ) #r "System.Data" @@ -134,7 +134,9 @@ Target.create "Build" (fun _ -> #r "System.IO.Compression" #r "System.IO.Compression.FileSystem" -open System.Data.SqlClient +#r "nuget: Microsoft.Data.SqlClient" + +open Microsoft.Data.SqlClient open System.Configuration open System.IO.Compression @@ -142,8 +144,8 @@ Target.create "DeployTestDB" (fun _ -> let testsSourceRoot = Path.GetFullPath(@"tests\SqlClient.Tests") let map = ExeConfigurationFileMap() map.ExeConfigFilename <- testsSourceRoot @@ "app.config" - let connStr = - let x = + let connStr = + let x = ConfigurationManager .OpenMappedExeConfiguration(map, ConfigurationUserLevel.None) .ConnectionStrings @@ -152,34 +154,34 @@ Target.create "DeployTestDB" (fun _ -> SqlConnectionStringBuilder(x) let database = connStr.InitialCatalog - use conn = + use conn = connStr.InitialCatalog <- "" new SqlConnection(string connStr) conn.Open() do //attach - let dbIsMissing = + let dbIsMissing = let query = sprintf "SELECT COUNT(*) FROM sys.databases WHERE name = '%s'" database use cmd = new SqlCommand(query, conn) cmd.ExecuteScalar() = box 0 if dbIsMissing - then + then let dataFileName = "AdventureWorks2012_Data" //unzip let sourceMdf = testsSourceRoot @@ (dataFileName + ".mdf") - + if File.Exists(sourceMdf) then File.Delete(sourceMdf) - + ZipFile.ExtractToDirectory(testsSourceRoot @@ (dataFileName + ".zip"), testsSourceRoot) - let dataPath = + let dataPath = use cmd = new SqlCommand("SELECT SERVERPROPERTY('InstanceDefaultDataPath')", conn) cmd.ExecuteScalar() |> string do - let destFileName = dataPath @@ Path.GetFileName(sourceMdf) + let destFileName = dataPath @@ Path.GetFileName(sourceMdf) File.Copy(sourceMdf, destFileName, overwrite = true) File.Delete( sourceMdf) use cmd = new SqlCommand(Connection = conn) @@ -199,15 +201,15 @@ Target.create "BuildTestProjects" (fun _ -> ) // -------------------------------------------------------------------------------------- -// Run the unit tests -Target.create "RunTests" (fun _ -> +// Run the unit tests +Target.create "RunTests" (fun _ -> // if we don't compile the targets sequentially, we get an error with the generated types: // System.IO.IOException: The process cannot access the file 'C:\Users\foo\AppData\Local\Temp\tmpF38.dll' because it is being used by another process. DotNet.restore dnDefault testSlnPath runMsBuild testSlnPath - try + try DotNet.test (fun args -> { args with Framework = Some "net461"; Common = args.Common |> dnDefault }) testSlnPath - DotNet.test (fun args -> { args with Framework = Some "netcoreapp2.0"; Common = args.Common |> dnDefault }) testProjectPath + DotNet.test (fun args -> { args with Framework = Some "netcoreapp3.1"; Common = args.Common |> dnDefault }) testProjectPath with | ex -> Trace.log (sprintf "Test exception: %A" ex) @@ -222,9 +224,9 @@ Target.create "NuGet" (fun _ -> // Format the description to fit on a single line (remove \r\n and double-spaces) let description = description.Replace("\r", "").Replace("\n", "").Replace(" ", " ") let nugetPath = "packages/build/NuGet.CommandLine/tools/NuGet.exe" - - Fake.DotNet.NuGet.NuGet.NuGet (fun p -> - { p with + + Fake.DotNet.NuGet.NuGet.NuGet (fun p -> + { p with Authors = authors Project = project Summary = summary @@ -247,7 +249,7 @@ Target.create "GenerateDocs" (fun _ -> Fake.FSIHelper.executeFSIWithArgs "docs/tools" "generate.fsx" ["--define:RELEASE"] [] |> ignore ) -Target.create "ServeDocs" (fun _ -> +Target.create "ServeDocs" (fun _ -> Fakeiisexpress.HostStaticWebsite id (__SOURCE_DIRECTORY__ @@ @"docs\output\") |> ignore Fakeiisexpress.OpenUrlInBrowser "http://localhost:8080" ) @@ -274,16 +276,16 @@ open Fake.Core.TargetOperators // for ==> "Clean" ==> "AssemblyInfo" ==> "Build" - ==> "DeployTestDB" - ==> "BuildTestProjects" + ==> "DeployTestDB" + ==> "BuildTestProjects" ==> "RunTests" ==> "All" -"All" +"All" ==> "NuGet" ==> "Release" -"All" +"All" ==> "CleanDocs" ==> "GenerateDocs" ==> "ReleaseDocs" diff --git a/docs/content/configuration and Input.fsx b/docs/content/configuration and Input.fsx index f5a8be4e..eefb3004 100644 --- a/docs/content/configuration and Input.fsx +++ b/docs/content/configuration and Input.fsx @@ -227,7 +227,7 @@ module DB = [] let connStr = @"Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True" - open System.Data.SqlClient + open Microsoft.Data.SqlClient type MyCmd1 = SqlCommandProvider<"SELECT 42", connStr> type MyCmd2 = SqlCommandProvider<"SELECT 42", connStr> @@ -291,7 +291,7 @@ type GetBitCoin = do let cmd = new DeleteBitCoin(connStr) in cmd.Execute(bitCoinCode) |> ignore - let conn = new System.Data.SqlClient.SqlConnection(connStr) + let conn = new Microsoft.Data.SqlClient.SqlConnection(connStr) conn.Open() let tran = conn.BeginTransaction() diff --git a/docs/content/data modification.fsx b/docs/content/data modification.fsx index 5914be03..7ff11280 100644 --- a/docs/content/data modification.fsx +++ b/docs/content/data modification.fsx @@ -276,7 +276,7 @@ do currencyRates.Rows.Add newRow //Insert many more rows here - currencyRates.BulkCopy(copyOptions = System.Data.SqlClient.SqlBulkCopyOptions.TableLock) + currencyRates.BulkCopy(copyOptions = Microsoft.Data.SqlClient.SqlBulkCopyOptions.TableLock) (** @@ -291,7 +291,7 @@ customize update behavior by creating your own instance of [SqlDataAdapter](http Pseudocode for custom data adapter: *) -open System.Data.SqlClient +open Microsoft.Data.SqlClient do let currencyRates = new AdventureWorks.Sales.Tables.CurrencyRate() diff --git a/docs/content/faq.fsx b/docs/content/faq.fsx index b2c72522..36a4dfbf 100644 --- a/docs/content/faq.fsx +++ b/docs/content/faq.fsx @@ -103,7 +103,7 @@ With a datareader obtained from a custom command you can still reuse the typed r let getDatesQuery = "SELECT GETDATE() AS Now, GETUTCDATE() AS UtcNow" type GetDates = SqlCommandProvider -open System.Data.SqlClient +open Microsoft.Data.SqlClient type SqlDataReader with member this.ToRecords<'T>() = seq { @@ -120,7 +120,7 @@ type SqlDataReader with let xs = use conn = new SqlConnection(connectionString) 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/docs/content/output.fsx b/docs/content/output.fsx index dfb57761..7502c307 100644 --- a/docs/content/output.fsx +++ b/docs/content/output.fsx @@ -248,7 +248,7 @@ In later case, resulting `SqlDataReader` can be wrapped into something like that *) module SqlDataReader = - open System.Data.SqlClient + open Microsoft.Data.SqlClient let toMaps (reader: SqlDataReader) = seq { use __ = reader diff --git a/docs/content/sqlenumprovider.quickstart.fsx b/docs/content/sqlenumprovider.quickstart.fsx index ff6b9109..a1a00c11 100644 --- a/docs/content/sqlenumprovider.quickstart.fsx +++ b/docs/content/sqlenumprovider.quickstart.fsx @@ -40,7 +40,7 @@ A typical implementation for overnight orders shipped since Jan 1, 2008 is follo let connStr = @"Data Source=.;Initial Catalog=AdventureWorks2012;Integrated Security=True" open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient let conn = new SqlConnection (connStr) conn.Open() @@ -220,7 +220,7 @@ Miscellaneous ### Any ADO.NET supported database SqlEnumProvider has a static parameter "Provider" which allows to pass ADO.NET provider [invariant name](http://msdn.microsoft.com/en-us/library/h508h681.aspx). -This makes it usable with any ADO.NET supported database. "System.Data.SqlClient" is default value for ADO.NET provider. +This makes it usable with any ADO.NET supported database. "Microsoft.Data.SqlClient" is default value for ADO.NET provider. Invariant names of available ADO.NET providers can be retrieved as follows: *) diff --git a/docs/content/transactions.fsx b/docs/content/transactions.fsx index bda6224b..ceb1be8f 100644 --- a/docs/content/transactions.fsx +++ b/docs/content/transactions.fsx @@ -32,7 +32,7 @@ This conforms to familiar [ADO.NET conventions](https://msdn.microsoft.com/en-us *) open System -open System.Data.SqlClient +open Microsoft.Data.SqlClient type CurrencyCode = SqlEnumProvider<"SELECT Name, CurrencyCode FROM Sales.Currency", connectionString> diff --git a/docs/content/whatsnew.fsx b/docs/content/whatsnew.fsx index f3c401ff..fcc2b74e 100644 --- a/docs/content/whatsnew.fsx +++ b/docs/content/whatsnew.fsx @@ -43,7 +43,7 @@ Any of these parameters can be ommited. #r "System.Transactions" do - use conn = new System.Data.SqlClient.SqlConnection( connectionString) + use conn = new Microsoft.Data.SqlClient.SqlConnection( connectionString) conn.Open() use tran = conn.BeginTransaction() use cmd = diff --git a/fsc.props b/fsc.props deleted file mode 100644 index f6b3061c..00000000 --- a/fsc.props +++ /dev/null @@ -1,57 +0,0 @@ - - - - - true - true - true - - - C:\Program Files (x86)\Microsoft SDKs\F#\4.1\Framework\v4.0 - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp - fsc.exe - - - C:\Program Files (x86)\Microsoft SDKs\F#\10.1\Framework\v4.0 - fsc.exe - - - /Library/Frameworks/Mono.framework/Versions/Current/Commands - fsharpc - - - /usr/bin - fsharpc - - \ No newline at end of file diff --git a/global.json b/global.json index aac6be5e..19b5ce21 100644 --- a/global.json +++ b/global.json @@ -1 +1 @@ -{ "sdk": { "version": "2.1.402" } } \ No newline at end of file +{ "sdk": { "version": "6.0.406" } } \ No newline at end of file diff --git a/netfx.props b/netfx.props deleted file mode 100644 index 1f542a42..00000000 --- a/netfx.props +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - true - - - /Library/Frameworks/Mono.framework/Versions/Current/lib/mono - /usr/lib/mono - /usr/local/lib/mono - - - $(BaseFrameworkPathOverrideForMono)/4.5-api - $(BaseFrameworkPathOverrideForMono)/4.5.1-api - $(BaseFrameworkPathOverrideForMono)/4.5.2-api - $(BaseFrameworkPathOverrideForMono)/4.6-api - $(BaseFrameworkPathOverrideForMono)/4.6.1-api - $(BaseFrameworkPathOverrideForMono)/4.6.2-api - $(BaseFrameworkPathOverrideForMono)/4.7-api - $(BaseFrameworkPathOverrideForMono)/4.7.1-api - true - - - $(FrameworkPathOverride)/Facades;$(AssemblySearchPaths) - - - - - - - - - - - - - - $(DefineConstants);USE_SQL_SERVER_TYPES_ASSEMBLY;USE_SYSTEM_DATA_COMMON_DBPROVIDERFACTORIES - - - - - - - \ No newline at end of file diff --git a/nuget/SqlClient.nuspec b/nuget/SqlClient.nuspec index 6226fd0c..60c667a2 100644 --- a/nuget/SqlClient.nuspec +++ b/nuget/SqlClient.nuspec @@ -14,20 +14,13 @@ @releaseNotes@ Copyright 2015 @tags@ - - - - - - - - + - + diff --git a/paket.dependencies b/paket.dependencies index a53d9356..97d267c1 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,4 +1,4 @@ -source https://www.nuget.org/api/v2/ +source https://api.nuget.org/v3/index.json generate_load_scripts: on storage: none github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875493 src/ProvidedTypes.fs @@ -6,70 +6,66 @@ github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875 github fsprojects/FSharp.TypeProviders.SDK:28a24a69ada68ebd1ad25226634f4608e4875493 src/ProvidedTypesTesting.fs group Build - source https://www.nuget.org/api/v2/ - framework: >= net451 + source https://api.nuget.org/v3/index.json + framework: >= netcoreapp3.1 generate_load_scripts: on - - nuget FAKE = 5.8.4 - nuget Fake.Lib = 5.8.4 + + nuget fake-cli = 6.0.0 nuget FSharp.Formatting = 2.4.1 - nuget FSharp.Compiler.Service = 0.0.36 - nuget RazorEngine = 3.3.0 + nuget FSharp.Compiler.Service = 43.7.200 + nuget RazorEngine = 3.10.0 + + nuget Microsoft.Data.SqlClient nuget NuGet.CommandLine group DesignTime - source https://www.nuget.org/api/v2/ - framework: >= net461, >= netstandard20 + source https://api.nuget.org/v3/index.json + framework: >= netstandard2.1 storage: none + + nuget FSharp.Core = 4.3.4 - nuget System.Configuration.ConfigurationManager + nuget System.Configuration.ConfigurationManager = 4.7.0 nuget System.Data.Common - nuget System.Data.SqlClient nuget System.Runtime.Caching - nuget FSharp.Core - nuget Microsoft.SqlServer.TransactSql.ScriptDom + + nuget Microsoft.Data.SqlClient = 2.1.2 copy_local: true nuget Microsoft.SqlServer.Types - + nuget Microsoft.SqlServer.TransactSql.ScriptDom + group Test - source https://www.nuget.org/api/v2/ - framework: >= net461, >= netcoreapp2.0 + source https://api.nuget.org/v3/index.json + framework: >= netcoreapp3.1 storage: none nuget FSharp.Core = 5.0.0 redirects:force - nuget System.Data.SqlClient + nuget Microsoft.Data.SqlClient nuget System.Configuration.ConfigurationManager - - nuget Microsoft.SqlServer.Types ~> 12 + + nuget Microsoft.SqlServer.Types = 160.1000.6 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 - storage: none - - nuget FSharp.Core = 4.1.18 - group TestProjects - source https://www.nuget.org/api/v2/ - framework: >= net40, >= netcoreapp2.0, >= netstandard2.0 + source https://api.nuget.org/v3/index.json + framework: >= netcoreapp3.1, >= netstandard2.1 storage: none nuget FSharp.Core = 4.3.4 - nuget System.Data.SqlClient + nuget Microsoft.Data.SqlClient nuget System.Configuration.ConfigurationManager group Samples - source https://www.nuget.org/api/v2/ - framework: >= net40, >= netcoreapp2.0, >= netstandard2.0 + source https://api.nuget.org/v3/index.json + framework: >= netcoreapp3.1, >= netstandard2.1 redirects: on - + nuget FSharp.Core = 4.5.2 redirects: force - + nuget Microsoft.AspNet.WebApi nuget Microsoft.AspNet.WebApi.Client nuget Microsoft.AspNet.WebApi.Core @@ -78,4 +74,3 @@ group Samples nuget Newtonsoft.Json redirects: force nuget FSharp.Data.SqlClient - \ No newline at end of file diff --git a/paket.lock b/paket.lock index 3f1e96a3..18e2113f 100644 --- a/paket.lock +++ b/paket.lock @@ -7,807 +7,1087 @@ GITHUB src/ProvidedTypesTesting.fs (28a24a69ada68ebd1ad25226634f4608e4875493) GROUP Build GENERATE-LOAD-SCRIPTS: ON -RESTRICTION: >= net451 +RESTRICTION: >= netcoreapp3.1 NUGET - remote: https://www.nuget.org/api/v2 - FAKE (5.8.4) - FAKE.Lib (5.8.4) - FSharp.Compiler.Service (0.0.36) + remote: https://api.nuget.org/v3/index.json + Azure.Core (1.29) + Microsoft.Bcl.AsyncInterfaces (>= 1.1.1) + System.Diagnostics.DiagnosticSource (>= 4.6) + System.Memory.Data (>= 1.0.2) + System.Numerics.Vectors (>= 4.5) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) + Azure.Identity (1.8.2) + Azure.Core (>= 1.25) + Microsoft.Identity.Client (>= 4.49.1) + Microsoft.Identity.Client.Extensions.Msal (>= 2.25.3) + System.Memory (>= 4.5.4) + System.Security.Cryptography.ProtectedData (>= 4.7) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) + fake-cli (6.0) + FSharp.Compiler.Service (43.7.200) + FSharp.Core (7.0.200) + System.Buffers (>= 4.5.1) + System.Collections.Immutable (>= 6.0) + System.Diagnostics.DiagnosticSource (>= 6.0) + System.Memory (>= 4.5.5) + System.Reflection.Emit (>= 4.7) + System.Reflection.Metadata (>= 6.0) + System.Runtime.CompilerServices.Unsafe (>= 6.0) + FSharp.Core (7.0.200) FSharp.Formatting (2.4.1) FSharp.Compiler.Service (>= 0.0.32) Microsoft.AspNet.Razor (>= 2.0.30506) RazorEngine (>= 3.3) - Microsoft.AspNet.Razor (3.2.6) - NuGet.CommandLine (5.8) - RazorEngine (3.3) - Microsoft.AspNet.Razor (>= 2.0.30506) + Microsoft.AspNet.Razor (3.2.9) + Microsoft.Bcl.AsyncInterfaces (7.0) + Microsoft.CSharp (4.7) + Microsoft.Data.SqlClient (5.1) + Azure.Identity (>= 1.7) + Microsoft.Data.SqlClient.SNI.runtime (>= 5.1) + Microsoft.Identity.Client (>= 4.47.2) + Microsoft.IdentityModel.JsonWebTokens (>= 6.24) + Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.24) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.Win32.Registry (>= 5.0) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Configuration.ConfigurationManager (>= 6.0.1) + System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: >= net6.0 + System.Runtime.Caching (>= 6.0) + System.Runtime.Loader (>= 4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Security.Cryptography.Cng (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + System.Text.Encoding.CodePages (>= 6.0) + System.Text.Encodings.Web (>= 6.0) + Microsoft.Data.SqlClient.SNI.runtime (5.1) + Microsoft.Identity.Client (4.50) + Microsoft.CSharp (>= 4.5) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Microsoft.IdentityModel.Abstractions (>= 6.22) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid9.0) (>= net6.0) (< xamarinios)) (&& (< monoandroid9.0) (< net6.0) (>= netcoreapp3.1) (< xamarinios)) (&& (< monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1) (< xamarinios)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) (>= net6.0-windows10.0.17763.0) + Microsoft.Web.WebView2 (>= 1.0.864.35) - restriction: >= net6.0-windows10.0.17763.0 + System.ComponentModel.TypeConverter (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1) - restriction: >= net6.0-ios + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Security.SecureString (>= 4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Xamarin.AndroidX.Browser (>= 1.0) - restriction: && (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1) + Microsoft.Identity.Client.Extensions.Msal (2.26) + Microsoft.Identity.Client (>= 4.50) + System.IO.FileSystem.AccessControl (>= 5.0) + System.Security.Cryptography.ProtectedData (>= 4.5) + Microsoft.IdentityModel.Abstractions (6.27) + Microsoft.IdentityModel.JsonWebTokens (6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.Text.Encoding (>= 4.3) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + Microsoft.IdentityModel.Logging (6.27) + Microsoft.IdentityModel.Abstractions (>= 6.27) + Microsoft.IdentityModel.Protocols (6.27) + Microsoft.IdentityModel.Logging (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + Microsoft.IdentityModel.Protocols.OpenIdConnect (6.27) + Microsoft.IdentityModel.Protocols (>= 6.27) + System.IdentityModel.Tokens.Jwt (>= 6.27) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + Microsoft.IdentityModel.Tokens (6.27) + Microsoft.CSharp (>= 4.5) + Microsoft.IdentityModel.Logging (>= 6.27) + System.Security.Cryptography.Cng (>= 4.5) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + Microsoft.NETCore.Platforms (7.0) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.SqlServer.Server (1.0) + Microsoft.Web.WebView2 (1.0.1587.40) - restriction: >= net6.0-windows10.0.17763.0 + Microsoft.Win32.Registry (5.0) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Security.AccessControl (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + Microsoft.Win32.SystemEvents (7.0) - restriction: >= net6.0 + NuGet.CommandLine (6.4) + RazorEngine (3.10) + System.Buffers (4.5.1) + System.Collections.Immutable (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.ComponentModel.TypeConverter (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Configuration.ConfigurationManager (7.0) + System.Diagnostics.EventLog (>= 7.0) - restriction: >= net7.0 + System.Security.Cryptography.ProtectedData (>= 7.0) + System.Security.Permissions (>= 7.0) + System.Diagnostics.DiagnosticSource (7.0.1) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Diagnostics.EventLog (7.0) - restriction: >= net7.0 + System.Drawing.Common (7.0) - restriction: >= net6.0 + Microsoft.Win32.SystemEvents (>= 7.0) - restriction: >= net6.0 + System.Formats.Asn1 (7.0) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.IdentityModel.Tokens.Jwt (6.27) + Microsoft.IdentityModel.JsonWebTokens (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.IO (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.AccessControl (5.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Security.AccessControl (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + System.Memory (4.5.5) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Memory.Data (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 7.0) + System.Numerics.Vectors (4.5) + System.Reflection (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Emit (4.7) + System.Reflection.Metadata (7.0) + System.Collections.Immutable (>= 7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Caching (7.0) + System.Configuration.ConfigurationManager (>= 7.0) + System.Runtime.CompilerServices.Unsafe (6.0) + System.Runtime.InteropServices.NFloat.Internal (6.0.1) - restriction: >= net6.0-ios + System.Runtime.Loader (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.IO (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Serialization.Formatters (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.Serialization.Primitives (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Security.AccessControl (6.0) + System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Security.Cryptography.Cng (5.0) + System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.ProtectedData (7.0.1) + System.Memory (>= 4.5.5) - restriction: && (< net6.0) (>= netcoreapp3.1) + System.Security.Permissions (7.0) + System.Security.AccessControl (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Windows.Extensions (>= 7.0) - restriction: >= net6.0 + System.Security.Principal.Windows (5.0) + System.Security.SecureString (4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.CodePages (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (7.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (7.0.2) + Microsoft.Bcl.AsyncInterfaces (>= 7.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Numerics.Vectors (>= 4.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 7.0) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.5.4) + System.Windows.Extensions (7.0) - restriction: >= net6.0 + System.Drawing.Common (>= 7.0) - restriction: >= net6.0 + System.Xml.XmlDocument (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Xamarin.AndroidX.Annotation (1.5.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Migration (>= 1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0-android) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation.Experimental (1.3.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Runtime (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Browser (1.4.0.4) - restriction: && (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Core (>= 1.9.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Interpolator (>= 1.0.0.16) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (1.2.0.6) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (1.1.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Core (1.9.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation.Experimental (>= 1.3.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Runtime (>= 2.5.1.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.VersionedParcelable (>= 1.1.1.16) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Interpolator (1.0.0.16) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Common (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Runtime (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Runtime (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Common (>= 2.5.1.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Migration (1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.VersionedParcelable (1.1.1.16) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (1.0.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Jetbrains.Annotations (24.0.0.1) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Jetbrains.Annotations (>= 24.0.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib.Common (>= 1.8.10) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib.Common (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) GROUP DesignTime STORAGE: NONE -RESTRICTION: || (>= net461) (>= netstandard2.0) +RESTRICTION: >= netstandard2.1 NUGET - remote: https://www.nuget.org/api/v2 - FSharp.Core (5.0) - Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= net50)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) + remote: https://api.nuget.org/v3/index.json + FSharp.Core (4.3.4) + Microsoft.Bcl.AsyncInterfaces (7.0) - copy_local: true, restriction: || (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) + Microsoft.CSharp (4.7) - copy_local: true, restriction: || (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net46) (>= xamarinios)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= xamarinios)) (>= netcoreapp3.1) + Microsoft.Data.SqlClient (2.1.2) - copy_local: true + Microsoft.Data.SqlClient.SNI.runtime (>= 2.1.1) - restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.Identity.Client (>= 4.21.1) - restriction: || (&& (>= net46) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.JsonWebTokens (>= 6.8) - restriction: || (&& (>= net46) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.8) - restriction: || (&& (>= net46) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Buffers (>= 4.5.1) - restriction: && (< netcoreapp2.1) (>= netstandard2.1) + System.Configuration.ConfigurationManager (>= 4.7) - restriction: >= netcoreapp3.1 + System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: >= netcoreapp3.1 + System.Memory (>= 4.5.4) - restriction: && (< netcoreapp2.1) (>= netstandard2.1) + System.Runtime.Caching (>= 4.7) - restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.Data.SqlClient.SNI.runtime (5.1) - copy_local: true, restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.Identity.Client (4.50) - copy_local: true, restriction: || (&& (>= net46) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.CSharp (>= 4.5) - restriction: && (< net6.0) (>= xamarinios) + Microsoft.IdentityModel.Abstractions (>= 6.22) - restriction: || (&& (>= monoandroid10.0) (< net6.0)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid9.0) (>= net6.0) (< xamarinios)) (&& (< monoandroid9.0) (< net6.0) (>= netcoreapp2.1) (>= netstandard2.1) (< xamarinios)) (&& (< monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) (>= net6.0-windows10.0.17763.0) + Microsoft.Web.WebView2 (>= 1.0.864.35) - restriction: >= net6.0-windows10.0.17763.0 + System.ComponentModel.TypeConverter (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1) - restriction: >= net6.0-ios + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Security.SecureString (>= 4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + Xamarin.AndroidX.Browser (>= 1.0) - restriction: && (>= monoandroid10.0) (< net6.0) + Microsoft.IdentityModel.Abstractions (6.27) - copy_local: true, restriction: || (&& (>= monoandroid10.0) (>= net46)) (&& (>= monoandroid10.0) (< netcoreapp2.1)) (&& (< monoandroid9.0) (>= net6.0) (< xamarinios)) (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net46) (>= xamarinios)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= xamarinios)) (>= netcoreapp3.1) + Microsoft.IdentityModel.JsonWebTokens (6.27) - copy_local: true, restriction: || (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.Text.Encoding (>= 4.3) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + Microsoft.IdentityModel.Logging (6.27) - copy_local: true, restriction: || (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.Abstractions (>= 6.27) + Microsoft.IdentityModel.Protocols (6.27) - copy_local: true, restriction: || (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.Logging (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + Microsoft.IdentityModel.Protocols.OpenIdConnect (6.27) - copy_local: true, restriction: || (&& (>= net46) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.Protocols (>= 6.27) + System.IdentityModel.Tokens.Jwt (>= 6.27) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + Microsoft.IdentityModel.Tokens (6.27) - copy_local: true, restriction: || (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.CSharp (>= 4.5) + Microsoft.IdentityModel.Logging (>= 6.27) + System.Security.Cryptography.Cng (>= 4.5) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + Microsoft.NETCore.Platforms (7.0) - restriction: || (&& (< monoandroid) (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) + Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) + Microsoft.SqlServer.Server (1.0) Microsoft.SqlServer.TransactSql.ScriptDom (150.4897.1) - Microsoft.SqlServer.Types (14.0.1016.290) - Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net461)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= xamarintvos)) (&& (>= net461) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) + Microsoft.SqlServer.Types (160.1000.6) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.Web.WebView2 (1.0.1587.40) - copy_local: true, restriction: >= net6.0-windows10.0.17763.0 + Microsoft.Win32.Registry (5.0) - copy_local: true, restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) System.Security.AccessControl (>= 5.0) System.Security.Principal.Windows (>= 5.0) - Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) - System.Collections (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Configuration.ConfigurationManager (5.0) - System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Permissions (>= 5.0) + Microsoft.Win32.SystemEvents (7.0) - restriction: >= net6.0 + System.Buffers (4.5.1) - copy_local: true, restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp3.0) (< netstandard2.0)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netcoreapp3.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Collections (4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.ComponentModel.TypeConverter (4.3) - copy_local: true, restriction: || (&& (>= net46) (>= xamarinios)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinios)) + System.Configuration.ConfigurationManager (4.7) + System.Security.Cryptography.ProtectedData (>= 4.7) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Permissions (>= 4.7) System.Data.Common (4.3) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Data.SqlClient (4.8.2) - Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) - System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net46) (>= netstandard2.0)) (>= net461) (&& (>= netstandard2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net46) (>= netstandard2.0)) (>= net461) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0 - Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO (4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime.Caching (5.0) - System.Configuration.ConfigurationManager (>= 5.0) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (>= net461) (< netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net45) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net451) (>= net46) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard1.3)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (< netstandard2.0) (>= xamarintvos)) (&& (>= net461) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) - System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Security.AccessControl (5.0) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 5.0) - System.Security.Cryptography.ProtectedData (5.0) - restriction: && (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Security.Permissions (5.0) - System.Security.AccessControl (>= 5.0) - System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0 - System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) - System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (>= net50) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) - System.Text.RegularExpressions (4.3) - restriction: || (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Threading (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net451) (>= netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0 - System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0 - -GROUP Net40 -STORAGE: NONE -RESTRICTION: == net40 -NUGET - remote: https://www.nuget.org/api/v2 - FSharp.Core (4.1.18) + System.Collections (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.IO (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Text.RegularExpressions (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.DiagnosticSource (7.0.1) - copy_local: true, restriction: >= netcoreapp3.1 + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Drawing.Common (7.0) - restriction: >= net6.0 + Microsoft.Win32.SystemEvents (>= 7.0) - restriction: >= net6.0 + System.Formats.Asn1 (7.0) - copy_local: true, restriction: || (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp3.0) (< netstandard2.0)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netcoreapp3.0)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Globalization (4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IdentityModel.Tokens.Jwt (6.27) - copy_local: true, restriction: || (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.IdentityModel.JsonWebTokens (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.IO (4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Memory (4.5.5) - copy_local: true, restriction: || (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp3.0) (< netstandard2.0)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netcoreapp3.0)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Numerics.Vectors (>= 4.4) - restriction: && (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Numerics.Vectors (4.5) - copy_local: true, restriction: || (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netstandard2.1)) + System.Reflection (4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Caching (4.7) + System.Configuration.ConfigurationManager (>= 4.7) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.CompilerServices.Unsafe (6.0) - copy_local: true, restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= net6.0) (< netstandard1.0)) (&& (< monoandroid) (>= net6.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.0)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (>= net6.0) (< netstandard1.0) (>= win8)) (&& (>= net6.0) (< netstandard2.0) (>= wpa81)) (&& (>= net6.0) (>= wp8)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= wp8)) (&& (< netstandard1.0) (>= netstandard2.1) (>= win8)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= wp8)) + System.Runtime.Extensions (4.3.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.InteropServices.NFloat.Internal (6.0.1) - copy_local: true, restriction: >= net6.0-ios + System.Runtime.Serialization.Formatters (4.3) - copy_local: true, restriction: || (&& (>= net46) (>= xamarinios)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinios)) + System.Runtime.Serialization.Primitives (4.3) - copy_local: true, restriction: || (&& (>= net46) (>= xamarinios)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinios)) + System.Security.AccessControl (6.0) + System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Security.Cryptography.Cng (5.0) - copy_local: true, restriction: || (&& (>= net45) (>= net6.0) (< netstandard2.0)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= net6.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.ProtectedData (7.0.1) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Memory (>= 4.5.5) - restriction: && (< net6.0) (>= netstandard2.1) + System.Security.Permissions (7.0) + System.Security.AccessControl (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Windows.Extensions (>= 7.0) - restriction: >= net6.0 + System.Security.Principal.Windows (5.0) - copy_local: true + System.Security.SecureString (4.3) - copy_local: true, restriction: || (&& (>= monoandroid10.0) (>= net46)) (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid10.0) (< netcoreapp2.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (>= monoandroid9.0) (>= net46) (>= netstandard2.1)) (&& (>= net46) (>= xamarinios)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) (&& (< netcoreapp2.1) (>= xamarinios)) + System.Text.Encoding (4.3) - copy_local: true + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.CodePages (7.0) - copy_local: true, restriction: || (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (7.0) - copy_local: true, restriction: || (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (7.0.2) - copy_local: true, restriction: || (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1) + Microsoft.Bcl.AsyncInterfaces (>= 7.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Numerics.Vectors (>= 4.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 7.0) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.RegularExpressions (4.3.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Collections (>= 4.3) - restriction: && (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Globalization (>= 4.3) - restriction: && (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Resources.ResourceManager (>= 4.3) - restriction: && (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.6) (>= netstandard2.1)) (&& (>= netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Extensions (>= 4.3.1) - restriction: && (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (>= 4.3) - restriction: && (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Threading (4.3) - restriction: && (< monoandroid) (< netcoreapp1.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.5.4) - copy_local: true, restriction: || (&& (>= net46) (>= net6.0)) (&& (>= net46) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.1)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard1.0) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= wp8)) + System.Windows.Extensions (7.0) - restriction: >= net6.0 + System.Drawing.Common (>= 7.0) - restriction: >= net6.0 + System.Xml.XmlDocument (4.3) - copy_local: true, restriction: || (&& (>= net46) (>= xamarinios)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinios)) + Xamarin.AndroidX.Annotation (1.5.0.2) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Migration (>= 1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0-android) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Annotation.Experimental (1.3.0.2) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (2.1.0.17) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Runtime (2.1.0.17) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Browser (1.4.0.4) - copy_local: true, restriction: || (&& (>= monoandroid10.0) (>= net46)) (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid10.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Core (>= 1.9.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Interpolator (>= 1.0.0.16) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (1.2.0.6) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (1.1.0.11) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Core (1.9.0.2) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Annotation.Experimental (>= 1.3.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Runtime (>= 2.5.1.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.VersionedParcelable (>= 1.1.1.16) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Interpolator (1.0.0.16) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Common (2.5.1.2) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Runtime (2.5.1.2) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Runtime (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Common (>= 2.5.1.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Migration (1.0.10) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.VersionedParcelable (1.1.1.16) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (1.0.0.11) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.Jetbrains.Annotations (24.0.0.1) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.Kotlin.StdLib (1.8.10) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) + Xamarin.Jetbrains.Annotations (>= 24.0.0.1) - restriction: >= monoandroid12.0 + Xamarin.Kotlin.StdLib.Common (>= 1.8.10) - restriction: >= monoandroid12.0 + Xamarin.Kotlin.StdLib.Common (1.8.10) - copy_local: true, restriction: || (&& (>= monoandroid12.0) (>= net46)) (&& (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1)) (&& (>= monoandroid12.0) (< netcoreapp2.1)) GROUP Samples REDIRECTS: ON -RESTRICTION: || (>= net40) (>= netstandard2.0) +RESTRICTION: >= netstandard2.1 NUGET - remote: https://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json FSharp.Core (4.5.2) - redirects: force - FSharp.Data.SqlClient (2.0.7) - FSharp.Core (>= 4.1.18) - restriction: >= net40 - FSharp.Core (>= 4.3.4) - restriction: && (< net40) (>= netstandard2.0) - System.Configuration.ConfigurationManager (>= 4.5) - restriction: && (< net40) (>= netstandard2.0) - System.Data.SqlClient (>= 4.5.1) - restriction: && (< net40) (>= netstandard2.0) - Microsoft.AspNet.WebApi (5.2.7) - Microsoft.AspNet.WebApi.WebHost (>= 5.2.7 < 5.3) - Microsoft.AspNet.WebApi.Client (5.2.7) - Newtonsoft.Json (>= 6.0.4) - restriction: || (&& (>= net40) (< netstandard2.0) (>= portable-net45+win8+wp8+wp81+wpa81)) (>= net45) - Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0) - Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0) - Microsoft.AspNet.WebApi.Core (5.2.7) - Microsoft.AspNet.WebApi.Client (>= 5.2.7) - Microsoft.AspNet.WebApi.WebHost (5.2.7) - Microsoft.AspNet.WebApi.Core (>= 5.2.7 < 5.3) - Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= net50)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.SqlServer.Types (14.0.1016.290) - Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - Newtonsoft.Json (12.0.3) - redirects: force - Newtonsoft.Json.Bson (1.0.2) - restriction: && (< net45) (>= netstandard2.0) - Newtonsoft.Json (>= 12.0.1) - restriction: || (&& (>= net40) (>= netstandard1.3)) (>= net45) (>= netstandard2.0) - runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + FSharp.Data.SqlClient (2.1.2) + FSharp.Core (>= 4.3.4) + System.Configuration.ConfigurationManager (>= 4.5) + System.Data.SqlClient (>= 4.5.1) + Microsoft.AspNet.WebApi (5.2.9) + Microsoft.AspNet.WebApi.WebHost (>= 5.2.9 < 5.3) + Microsoft.AspNet.WebApi.Client (5.2.9) + Newtonsoft.Json (>= 10.0.1) + Newtonsoft.Json.Bson (>= 1.0.1) + Microsoft.AspNet.WebApi.Core (5.2.9) + Microsoft.AspNet.WebApi.Client (>= 5.2.9) + Microsoft.AspNet.WebApi.WebHost (5.2.9) + Microsoft.AspNet.WebApi.Core (>= 5.2.9 < 5.3) + Microsoft.SqlServer.Server (1.0) + Microsoft.SqlServer.Types (160.1000.6) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Security.AccessControl (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + Microsoft.Win32.SystemEvents (7.0) - restriction: >= net6.0 + Newtonsoft.Json (13.0.2) - redirects: force + Newtonsoft.Json.Bson (1.0.2) + Newtonsoft.Json (>= 12.0.1) + runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4) runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4) runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.5.1) - restriction: && (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Configuration.ConfigurationManager (5.0) - restriction: && (< net40) (>= netstandard2.0) - System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0)) - System.Security.Permissions (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0) - System.Data.SqlClient (4.8.2) - restriction: && (< net40) (>= netstandard2.0) - Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) - System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (>= netstandard2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0 - Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net40) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (< net40) (>= net45) (< netstandard1.3) (>= netstandard2.0)) (&& (< net40) (>= net46) (>= netstandard2.0)) (&& (< net40) (>= net461) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) - System.Security.AccessControl (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= monoandroid) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (< net40) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) - System.Security.Cryptography.ProtectedData (5.0) - restriction: && (< monoandroid) (< net40) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Security.Permissions (5.0) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net40) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) - System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0) - System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0 - System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (< net40) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) - System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net40) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (>= net50) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461) - System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0 - System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0 + runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (4.5.1) - restriction: && (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Configuration.ConfigurationManager (7.0) + System.Diagnostics.EventLog (>= 7.0) - restriction: >= net7.0 + System.Security.Cryptography.ProtectedData (>= 7.0) + System.Security.Permissions (>= 7.0) + System.Data.SqlClient (4.8.5) + Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Buffers (>= 4.5.1) - restriction: && (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Diagnostics.DiagnosticSource (7.0.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Diagnostics.EventLog (7.0) - restriction: >= net7.0 + System.Drawing.Common (7.0) - restriction: >= net6.0 + Microsoft.Win32.SystemEvents (>= 7.0) - restriction: >= net6.0 + System.Memory (4.5.5) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Numerics.Vectors (>= 4.4) - restriction: && (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Numerics.Vectors (4.5) - restriction: || (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Runtime.CompilerServices.Unsafe (6.0) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= net6.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net6.0) (>= uap10.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) + System.Security.AccessControl (6.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Security.Cryptography.ProtectedData (7.0.1) + System.Memory (>= 4.5.5) - restriction: && (< net6.0) (>= netstandard2.1) + System.Security.Permissions (7.0) + System.Security.AccessControl (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Windows.Extensions (>= 7.0) - restriction: >= net6.0 + System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Text.Encoding.CodePages (7.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Windows.Extensions (7.0) - restriction: >= net6.0 + System.Drawing.Common (>= 7.0) - restriction: >= net6.0 GROUP Test STORAGE: NONE -RESTRICTION: || (>= net461) (>= netcoreapp2.0) +RESTRICTION: >= netcoreapp3.1 NUGET - remote: https://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json + Azure.Core (1.29) + Microsoft.Bcl.AsyncInterfaces (>= 1.1.1) + System.Diagnostics.DiagnosticSource (>= 4.6) + System.Memory.Data (>= 1.0.2) + System.Numerics.Vectors (>= 4.5) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) + Azure.Identity (1.8.2) + Azure.Core (>= 1.25) + Microsoft.Identity.Client (>= 4.49.1) + Microsoft.Identity.Client.Extensions.Msal (>= 2.25.3) + System.Memory (>= 4.5.4) + System.Security.Cryptography.ProtectedData (>= 4.7) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) FSharp.Core (5.0) - redirects: force - Microsoft.CodeCoverage (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.AppContext (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.Collections (>= 4.0.11) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.IO (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.IO.FileSystem (>= 4.0.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.Runtime.Extensions (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.Runtime.InteropServices (>= 4.1) - restriction: || (&& (< net45) (>= net461)) (>= netcoreapp2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - Microsoft.Extensions.DependencyModel (2.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.DotNet.PlatformAbstractions (>= 2.1) - Newtonsoft.Json (>= 9.0.1) - System.Diagnostics.Debug (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0) - System.Dynamic.Runtime (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0) - System.Linq (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.6)) (&& (< net451) (>= net461) (< netstandard1.6)) (>= netcoreapp2.0) - Microsoft.NET.Test.Sdk (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.CodeCoverage (>= 15.9) - Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net452) (>= net461)) (&& (>= net461) (>= net50)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (< netstandard1.0)) (&& (>= net461) (< netstandard1.3) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= uap10.0)) (&& (>= net461) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= wp8)) (&& (>= net50) (>= uap10.1)) (>= netcoreapp2.0) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Targets (2.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.SqlServer.Types (12.0.5000) - Microsoft.TestPlatform.ObjectModel (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - NETStandard.Library (>= 1.6) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (&& (< net451) (>= net461) (< netstandard1.5)) (>= netcoreapp2.0) - System.Diagnostics.Process (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Diagnostics.TextWriterTraceListener (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Diagnostics.TraceSource (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Reflection.Metadata (>= 1.3) - System.Reflection.TypeExtensions (>= 4.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (&& (< net451) (>= net461) (< netstandard1.5)) (>= netcoreapp2.0) - System.Runtime.Loader (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Runtime.Serialization.Json (>= 4.0.2) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Threading.Thread (>= 4.0) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: || (&& (< net451) (>= net461) (>= netstandard1.5)) (>= netcoreapp2.0) - Microsoft.TestPlatform.TestHost (15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= uap10.0)) (>= netcoreapp2.0) - Newtonsoft.Json (>= 9.0.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= uap10.0)) (>= netcoreapp2.0) - Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) + Microsoft.Bcl.AsyncInterfaces (7.0) + Microsoft.CodeCoverage (17.5) + Microsoft.CSharp (4.7) + Microsoft.Data.SqlClient (5.1) + Azure.Identity (>= 1.7) + Microsoft.Data.SqlClient.SNI.runtime (>= 5.1) + Microsoft.Identity.Client (>= 4.47.2) + Microsoft.IdentityModel.JsonWebTokens (>= 6.24) + Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.24) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.Win32.Registry (>= 5.0) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Configuration.ConfigurationManager (>= 6.0.1) + System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: >= net6.0 + System.Runtime.Caching (>= 6.0) + System.Runtime.Loader (>= 4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Security.Cryptography.Cng (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + System.Text.Encoding.CodePages (>= 6.0) + System.Text.Encodings.Web (>= 6.0) + Microsoft.Data.SqlClient.SNI.runtime (5.1) + Microsoft.Identity.Client (4.50) + Microsoft.CSharp (>= 4.5) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Microsoft.IdentityModel.Abstractions (>= 6.22) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid9.0) (>= net6.0) (< xamarinios)) (&& (< monoandroid9.0) (< net6.0) (>= netcoreapp3.1) (< xamarinios)) (&& (< monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1) (< xamarinios)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) (>= net6.0-windows10.0.17763.0) + Microsoft.Web.WebView2 (>= 1.0.864.35) - restriction: >= net6.0-windows10.0.17763.0 + System.ComponentModel.TypeConverter (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1) - restriction: >= net6.0-ios + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Security.SecureString (>= 4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Xamarin.AndroidX.Browser (>= 1.0) - restriction: && (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1) + Microsoft.Identity.Client.Extensions.Msal (2.26) + Microsoft.Identity.Client (>= 4.50) + System.IO.FileSystem.AccessControl (>= 5.0) + System.Security.Cryptography.ProtectedData (>= 4.5) + Microsoft.IdentityModel.Abstractions (6.27) + Microsoft.IdentityModel.JsonWebTokens (6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.Text.Encoding (>= 4.3) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + Microsoft.IdentityModel.Logging (6.27) + Microsoft.IdentityModel.Abstractions (>= 6.27) + Microsoft.IdentityModel.Protocols (6.27) + Microsoft.IdentityModel.Logging (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + Microsoft.IdentityModel.Protocols.OpenIdConnect (6.27) + Microsoft.IdentityModel.Protocols (>= 6.27) + System.IdentityModel.Tokens.Jwt (>= 6.27) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + Microsoft.IdentityModel.Tokens (6.27) + Microsoft.CSharp (>= 4.5) + Microsoft.IdentityModel.Logging (>= 6.27) + System.Security.Cryptography.Cng (>= 4.5) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + Microsoft.NET.Test.Sdk (17.5) + Microsoft.CodeCoverage (>= 17.5) + Microsoft.TestPlatform.TestHost (>= 17.5) + Microsoft.NETCore.Platforms (7.0) + Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.SqlServer.Server (1.0) + Microsoft.SqlServer.Types (160.1000.6) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.TestPlatform.ObjectModel (17.5) + NuGet.Frameworks (>= 5.11) + System.Reflection.Metadata (>= 1.6) + Microsoft.TestPlatform.TestHost (17.5) + Microsoft.TestPlatform.ObjectModel (>= 17.5) + Newtonsoft.Json (>= 13.0.1) + Microsoft.Web.WebView2 (1.0.1587.40) - restriction: >= net6.0-windows10.0.17763.0 + Microsoft.Win32.Registry (5.0) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) System.Security.AccessControl (>= 5.0) System.Security.Principal.Windows (>= 5.0) - Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - NETStandard.Library (2.0.3) - restriction: || (&& (< net452) (>= net461)) (>= netcoreapp2.0) + Microsoft.Win32.SystemEvents (7.0) - restriction: >= net6.0 + NETStandard.Library (2.0.3) Microsoft.NETCore.Platforms (>= 1.1) - Newtonsoft.Json (12.0.3) - runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1.1) - Microsoft.NETCore.Targets (>= 1.1.3) - runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.AppContext (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard1.6)) (&& (< net46) (>= net461) (< netstandard1.6)) - System.Collections (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Collections.Concurrent (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Collections.Immutable (1.5) - restriction: || (&& (>= net45) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1)) (&& (>= netcoreapp2.0) (< netstandard2.0)) - System.Collections.NonGeneric (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (>= netcoreapp2.0)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Collections.Specialized (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.ComponentModel.EventBasedAsync (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.ComponentModel.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net462) (>= netcoreapp1.0)) (&& (>= net462) (>= netcoreapp2.0)) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (>= wp8)) (&& (>= netcoreapp2.0) (>= wpa81)) - System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.ComponentModel.TypeConverter (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Collections.NonGeneric (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (>= net462) - System.Collections.Specialized (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.ComponentModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (>= net461) (< netstandard1.0) (>= win8)) (&& (>= net461) (< netstandard1.5)) (&& (>= net461) (>= wp8)) (&& (>= net461) (>= wpa81)) (>= net462) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (>= wp8)) (&& (>= netcoreapp2.0) (>= wpa81)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Configuration.ConfigurationManager (5.0) - System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) - System.Security.Permissions (>= 5.0) - System.Data.SqlClient (4.8.2) - Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Diagnostics.Debug (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Diagnostics.Process (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.Win32.Registry (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.Thread (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.TextWriterTraceListener (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Tools (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.TraceSource (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Tracing (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0 - Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Dynamic.Runtime (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.IO.FileSystem (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Linq (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.ObjectModel (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (>= netstandard1.6)) - System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= xamarinios)) (&& (>= netcoreapp2.0) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= xamarintvos)) (&& (>= netcoreapp2.0) (>= xamarinwatchos)) - System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Private.DataContractSerialization (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.XDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Xml.XmlSerializer (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Reflection (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Reflection.Emit (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Metadata (1.6) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Collections.Immutable (>= 1.5) - restriction: || (&& (>= net45) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netstandard1.1)) (&& (>= netcoreapp2.0) (< netstandard2.0)) - System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (>= net461) (< netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net461)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net451) (>= net461) (< netstandard1.3)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (< netstandard2.0) (>= xamarintvos)) (&& (>= net461) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= uap10.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) - System.Runtime.Extensions (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) - System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.InteropServices (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (>= net462) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - runtime.native.System (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Loader (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< net462) (>= netstandard1.5)) - System.Runtime.Serialization.Json (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Private.DataContractSerialization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Security.AccessControl (5.0) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 5.0) - System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461) (>= netstandard2.0)) - System.Security.Permissions (5.0) + Newtonsoft.Json (13.0.2) + NuGet.Frameworks (6.5) + System.Buffers (4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Collections.Immutable (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.ComponentModel.TypeConverter (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Configuration.ConfigurationManager (7.0) + System.Diagnostics.EventLog (>= 7.0) - restriction: >= net7.0 + System.Security.Cryptography.ProtectedData (>= 7.0) + System.Security.Permissions (>= 7.0) + System.Diagnostics.DiagnosticSource (7.0.1) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Diagnostics.EventLog (7.0) - restriction: >= net7.0 + System.Drawing.Common (7.0) - restriction: >= net6.0 + Microsoft.Win32.SystemEvents (>= 7.0) - restriction: >= net6.0 + System.Formats.Asn1 (7.0) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.IdentityModel.Tokens.Jwt (6.27) + Microsoft.IdentityModel.JsonWebTokens (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.IO (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.AccessControl (5.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) System.Security.AccessControl (>= 5.0) - System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0 - System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net461) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net461) (>= netstandard2.0)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net461) (>= netstandard2.0) (>= uap10.1)) (&& (>= net461) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net461) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) - System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.4)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (>= net50) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) - System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Threading (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (>= netcoreapp2.0)) (>= net461) (&& (>= netcoreapp2.0) (< netstandard1.0) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= wp8)) - System.Threading.Thread (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading.ThreadPool (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0 - System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0 - System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO.FileSystem (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.XDocument (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.XmlDocument (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.XmlSerializer (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net461)) - System.Xml.XPath (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp1.0)) (&& (>= net461) (>= netcoreapp2.0)) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.XPath.XmlDocument (4.3) - restriction: || (&& (>= net461) (>= netcoreapp1.0)) (>= netcoreapp2.0) - System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net461)) - System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) - System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= netcoreapp2.0)) (>= net461) + System.Security.Principal.Windows (>= 5.0) + System.Memory (4.5.5) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= xamarinios)) (&& (>= netcoreapp3.1) (>= xamarinmac)) (&& (>= netcoreapp3.1) (>= xamarintvos)) (&& (>= netcoreapp3.1) (>= xamarinwatchos)) + System.Memory.Data (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (>= 7.0) + System.Numerics.Vectors (4.5) + System.Reflection (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Metadata (7.0) + System.Collections.Immutable (>= 7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.2)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Caching (7.0) + System.Configuration.ConfigurationManager (>= 7.0) + System.Runtime.CompilerServices.Unsafe (6.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net45) (>= netcoreapp3.1) (< netstandard2.0)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) (&& (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp3.1) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp3.1) (>= uap10.1)) + System.Runtime.InteropServices.NFloat.Internal (6.0.1) - restriction: >= net6.0-ios + System.Runtime.Loader (4.3) - restriction: || (&& (< net6.0) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< netstandard2.1)) + System.IO (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Serialization.Formatters (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Runtime.Serialization.Primitives (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + System.Security.AccessControl (6.0) + System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net461) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Security.Cryptography.Cng (5.0) + System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.ProtectedData (7.0.1) + System.Memory (>= 4.5.5) - restriction: && (< net6.0) (>= netcoreapp3.1) + System.Security.Permissions (7.0) + System.Security.AccessControl (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Windows.Extensions (>= 7.0) - restriction: >= net6.0 + System.Security.Principal.Windows (5.0) + System.Security.SecureString (4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.CodePages (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (7.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Json (7.0.2) + Microsoft.Bcl.AsyncInterfaces (>= 7.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Numerics.Vectors (>= 4.5) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Text.Encodings.Web (>= 7.0) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (>= net462) (>= netcoreapp3.1)) (&& (< net6.0) (>= netcoreapp3.1)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.5)) (&& (< net6.0) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (>= netcoreapp3.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.5.4) + System.Windows.Extensions (7.0) - restriction: >= net6.0 + System.Drawing.Common (>= 7.0) - restriction: >= net6.0 + System.Xml.XmlDocument (4.3) - restriction: && (< net6.0) (>= netcoreapp3.1) (>= xamarinios) + Xamarin.AndroidX.Annotation (1.5.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Migration (>= 1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0-android) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation.Experimental (1.3.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Runtime (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Browser (1.4.0.4) - restriction: && (>= monoandroid10.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Core (>= 1.9.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Interpolator (>= 1.0.0.16) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (1.2.0.6) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (1.1.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Core (1.9.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation.Experimental (>= 1.3.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Runtime (>= 2.5.1.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.VersionedParcelable (>= 1.1.1.16) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Interpolator (1.0.0.16) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Common (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Runtime (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Arch.Core.Runtime (>= 2.1.0.17) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Lifecycle.Common (>= 2.5.1.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Migration (1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.VersionedParcelable (1.1.1.16) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Google.Guava.ListenableFuture (1.0.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Jetbrains.Annotations (24.0.0.1) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) + Xamarin.Jetbrains.Annotations (>= 24.0.0.1) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib.Common (>= 1.8.10) - restriction: && (>= monoandroid12.0) (>= netcoreapp3.1) + Xamarin.Kotlin.StdLib.Common (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) (>= netcoreapp3.1) xunit (2.4.1) xunit.analyzers (>= 0.10) xunit.assert (2.4.1) xunit.core (2.4.1) xunit.abstractions (2.0.3) - xunit.analyzers (0.10) + xunit.analyzers (1.1) xunit.assert (2.4.1) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net452) (>= net461)) (>= 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: || (&& (< net452) (>= net461)) (>= netcoreapp2.0) + NETStandard.Library (>= 1.6.1) xunit.abstractions (>= 2.0.3) xunit.extensibility.execution (2.4.1) - NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net452) (>= net461)) (>= 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 STORAGE: NONE -RESTRICTION: || (>= net40) (>= netstandard2.0) +RESTRICTION: >= netstandard2.1 NUGET - remote: https://www.nuget.org/api/v2 + remote: https://api.nuget.org/v3/index.json + Azure.Core (1.29) + Microsoft.Bcl.AsyncInterfaces (>= 1.1.1) + System.Diagnostics.DiagnosticSource (>= 4.6) + System.Memory.Data (>= 1.0.2) + System.Numerics.Vectors (>= 4.5) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) + Azure.Identity (1.8.2) + Azure.Core (>= 1.25) + Microsoft.Identity.Client (>= 4.49.1) + Microsoft.Identity.Client.Extensions.Msal (>= 2.25.3) + System.Memory (>= 4.5.4) + System.Security.Cryptography.ProtectedData (>= 4.7) + System.Text.Json (>= 4.7.2) + System.Threading.Tasks.Extensions (>= 4.5.4) FSharp.Core (4.3.4) - Microsoft.NETCore.Platforms (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= net50) (< netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net50) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= net50)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= net50) (>= uap10.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.Win32.Registry (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - Microsoft.Win32.SystemEvents (5.0) - restriction: || (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - runtime.native.System.Data.SqlClient.sni (4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4) - runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) - System.Configuration.ConfigurationManager (5.0) - System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0)) - System.Security.Permissions (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0) - System.Data.Common (4.3) - restriction: || (&& (< monoandroid) (< net451) (< netstandard1.3) (>= netstandard2.0) (< win81) (< wpa81)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.0) (< win81)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard2.0) (< win81) (>= wpa81)) - System.Data.SqlClient (4.8.2) - Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - runtime.native.System.Data.SqlClient.sni (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Buffers (>= 4.5.1) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) - System.Data.Common (>= 4.3) - restriction: || (&& (< monoandroid) (< net451) (< netstandard1.3) (>= netstandard2.0) (< win81) (< wpa81)) (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.0) (< win81)) (&& (>= net40) (< net451) (>= netstandard1.2) (< netstandard1.3)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.2) (>= portable-net451+win81+wpa81)) (&& (>= net40) (< netstandard1.3) (>= wpa81)) (&& (>= net40) (< netstandard2.0) (>= win81)) (&& (>= net451) (< netstandard1.3)) (&& (>= net46) (< net461) (< netstandard2.0)) (&& (< netstandard1.3) (>= netstandard2.0) (< win81) (>= wpa81)) - System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Diagnostics.DiagnosticSource (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (>= netstandard2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.1) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< netstandard1.3)) (>= net46) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Drawing.Common (5.0) - restriction: >= netcoreapp3.0 - Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp3.0)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) - System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (>= 4.4) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0)) - System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.1) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (< netstandard1.1) (>= portable-net45+win8+wpa81)) (&& (>= net40) (< netstandard1.1) (>= win8)) (&& (>= net40) (< netstandard2.0) (>= wpa81)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) - System.Numerics.Vectors (4.5) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= netstandard2.0) (>= uap10.1)) - System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= net40) (>= netstandard1.3) (< netstandard2.0)) (&& (>= monoandroid) (>= net40) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard1.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= net40)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net45) (>= netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (< netstandard1.1) (>= netstandard2.0)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (< netstandard2.0) (>= xamarintvos)) (&& (>= net40) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= uap10.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (>= net45) (< net451) (< netstandard1.3) (>= netstandard2.0)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= net45) (>= netcoreapp2.0) (< netstandard2.0)) (&& (>= net45) (>= netcoreapp2.1) (< netstandard1.3)) (&& (>= net45) (>= uap10.1)) (&& (< net451) (>= net46) (>= netstandard2.0)) (&& (< net451) (>= net46) (< netstandard2.0)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (< net451) (>= net461) (< netstandard2.0)) (&& (>= net46) (>= netcoreapp2.0)) (&& (>= net46) (>= netcoreapp2.1)) (&& (>= net46) (>= uap10.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= uap10.1)) (&& (>= netcoreapp2.0) (< netstandard1.1) (>= win8)) (&& (>= netcoreapp2.0) (< netstandard2.0) (>= wpa81)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac)) - System.Security.AccessControl (5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (>= net461) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0 - System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net40) (< net46) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) - System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< monoandroid) (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net461) (>= netstandard2.0)) - System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) - System.Security.Permissions (5.0) - restriction: || (&& (>= monoandroid) (>= net40)) (&& (>= monotouch) (>= net40)) (&& (>= net40) (>= xamarintvos)) (&& (>= net40) (>= xamarinwatchos)) (>= net461) (>= netstandard2.0) - System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0) - System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0 - System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (>= net40) (>= netstandard2.0)) (&& (>= monoandroid) (< netcoreapp2.0) (>= netcoreapp3.1)) (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp3.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= netcoreapp3.1)) (&& (>= net40) (>= netstandard2.0) (>= xamarintvos)) (&& (>= net40) (>= netstandard2.0) (>= xamarinwatchos)) (&& (>= net40) (>= xamarinios)) (&& (>= net40) (>= xamarinmac)) (&& (< net451) (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp3.1)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (>= uap10.1)) (&& (>= netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) - System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< monoandroid) (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net451) (>= netstandard1.3) (< netstandard2.0)) (&& (>= net40) (< net451) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (&& (>= net40) (>= netcoreapp2.1)) (&& (>= net40) (>= uap10.1)) (&& (>= netstandard2.0) (>= uap10.1)) - Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (>= netcoreapp2.0)) (>= net50) - System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net50) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net40) (< net46) (>= netstandard2.0)) (&& (>= net40) (>= netcoreapp2.0)) (>= net461) - System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0 - System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0 + Microsoft.Bcl.AsyncInterfaces (7.0) + Microsoft.CSharp (4.7) + Microsoft.Data.SqlClient (5.1) + Azure.Identity (>= 1.7) + Microsoft.Data.SqlClient.SNI.runtime (>= 5.1) + Microsoft.Identity.Client (>= 4.47.2) + Microsoft.IdentityModel.JsonWebTokens (>= 6.24) + Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.24) + Microsoft.SqlServer.Server (>= 1.0) + Microsoft.Win32.Registry (>= 5.0) - restriction: && (< net6.0) (>= netstandard2.1) + System.Configuration.ConfigurationManager (>= 6.0.1) + System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: >= net6.0 + System.Runtime.Caching (>= 6.0) + System.Runtime.Loader (>= 4.3) - restriction: && (< net6.0) (>= netstandard2.1) + System.Security.Cryptography.Cng (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + System.Text.Encoding.CodePages (>= 6.0) + System.Text.Encodings.Web (>= 6.0) + Microsoft.Data.SqlClient.SNI.runtime (5.1) + Microsoft.Identity.Client (4.50) + Microsoft.CSharp (>= 4.5) - restriction: && (< net6.0) (>= xamarinios) + Microsoft.IdentityModel.Abstractions (>= 6.22) - restriction: || (&& (>= monoandroid10.0) (< net6.0)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid9.0) (>= net6.0) (< xamarinios)) (&& (< monoandroid9.0) (< net6.0) (>= netcoreapp2.1) (>= netstandard2.1) (< xamarinios)) (&& (< monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) (>= net6.0-windows10.0.17763.0) + Microsoft.Web.WebView2 (>= 1.0.864.35) - restriction: >= net6.0-windows10.0.17763.0 + System.ComponentModel.TypeConverter (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Runtime.InteropServices.NFloat.Internal (>= 6.0.1) - restriction: >= net6.0-ios + System.Runtime.Serialization.Formatters (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Runtime.Serialization.Primitives (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Security.SecureString (>= 4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Xml.XmlDocument (>= 4.3) - restriction: && (< net6.0) (>= xamarinios) + Xamarin.AndroidX.Browser (>= 1.0) - restriction: && (>= monoandroid10.0) (< net6.0) + Microsoft.Identity.Client.Extensions.Msal (2.26) + Microsoft.Identity.Client (>= 4.50) + System.IO.FileSystem.AccessControl (>= 5.0) + System.Security.Cryptography.ProtectedData (>= 4.5) + Microsoft.IdentityModel.Abstractions (6.27) + Microsoft.IdentityModel.JsonWebTokens (6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.Text.Encoding (>= 4.3) + System.Text.Encodings.Web (>= 4.7.2) + System.Text.Json (>= 4.7.2) + Microsoft.IdentityModel.Logging (6.27) + Microsoft.IdentityModel.Abstractions (>= 6.27) + Microsoft.IdentityModel.Protocols (6.27) + Microsoft.IdentityModel.Logging (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + Microsoft.IdentityModel.Protocols.OpenIdConnect (6.27) + Microsoft.IdentityModel.Protocols (>= 6.27) + System.IdentityModel.Tokens.Jwt (>= 6.27) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + Microsoft.IdentityModel.Tokens (6.27) + Microsoft.CSharp (>= 4.5) + Microsoft.IdentityModel.Logging (>= 6.27) + System.Security.Cryptography.Cng (>= 4.5) + System.Text.Encoding (>= 4.3) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (>= 4.7.2) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + Microsoft.NETCore.Platforms (7.0) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.SqlServer.Server (1.0) + Microsoft.Web.WebView2 (1.0.1587.40) - restriction: >= net6.0-windows10.0.17763.0 + Microsoft.Win32.Registry (5.0) - restriction: && (< net6.0) (>= netstandard2.1) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Security.AccessControl (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + Microsoft.Win32.SystemEvents (7.0) - restriction: >= net6.0 + System.Buffers (4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net462) (>= netcoreapp3.0)) (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netcoreapp3.0) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.ComponentModel.TypeConverter (4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Configuration.ConfigurationManager (7.0) + System.Diagnostics.EventLog (>= 7.0) - restriction: >= net7.0 + System.Security.Cryptography.ProtectedData (>= 7.0) + System.Security.Permissions (>= 7.0) + System.Diagnostics.DiagnosticSource (7.0.1) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Diagnostics.EventLog (7.0) - restriction: >= net7.0 + System.Drawing.Common (7.0) - restriction: >= net6.0 + Microsoft.Win32.SystemEvents (>= 7.0) - restriction: >= net6.0 + System.Formats.Asn1 (7.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.IdentityModel.Tokens.Jwt (6.27) + Microsoft.IdentityModel.JsonWebTokens (>= 6.27) + Microsoft.IdentityModel.Tokens (>= 6.27) + System.IO (4.3) - restriction: && (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO.FileSystem.AccessControl (5.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) + System.Security.AccessControl (>= 5.0) + System.Security.Principal.Windows (>= 5.0) + System.Memory (4.5.5) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Numerics.Vectors (>= 4.4) - restriction: && (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac) + System.Memory.Data (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (>= 7.0) + System.Numerics.Vectors (4.5) + System.Reflection (4.3) - restriction: && (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< netstandard1.2) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime.Caching (7.0) + System.Configuration.ConfigurationManager (>= 7.0) + System.Runtime.CompilerServices.Unsafe (6.0) - restriction: || (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net462) (>= net6.0)) (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (&& (< net6.0) (>= xamarinmac)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard1.0) (>= netstandard2.1) (>= win8)) (&& (< netstandard1.1) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= wp8)) + System.Runtime.InteropServices.NFloat.Internal (6.0.1) - restriction: >= net6.0-ios + System.Runtime.Loader (4.3) - restriction: && (< net6.0) (>= netstandard2.1) + System.IO (>= 4.3) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Reflection (>= 4.3) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime (>= 4.3) - restriction: && (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Runtime.Serialization.Formatters (4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Runtime.Serialization.Primitives (4.3) - restriction: && (< net6.0) (>= xamarinios) + System.Security.AccessControl (6.0) + System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Security.Cryptography.Cng (5.0) + System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos) + System.Security.Cryptography.ProtectedData (7.0.1) + System.Memory (>= 4.5.5) - restriction: && (< net6.0) (>= netstandard2.1) + System.Security.Permissions (7.0) + System.Security.AccessControl (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Windows.Extensions (>= 7.0) - restriction: >= net6.0 + System.Security.Principal.Windows (5.0) + System.Security.SecureString (4.3) - restriction: || (&& (>= monoandroid10.0) (< net6.0)) (&& (< monoandroid10.0) (>= monoandroid9.0) (< netcoreapp2.1) (>= netstandard2.1)) (&& (< net6.0) (>= xamarinios)) (>= net6.0-android) (>= net6.0-ios) + System.Text.Encoding (4.3) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Text.Encoding.CodePages (7.0) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (7.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Json (7.0.2) + Microsoft.Bcl.AsyncInterfaces (>= 7.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Buffers (>= 4.5.1) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Memory (>= 4.5.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Numerics.Vectors (>= 4.5) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (>= net6.0) (< net7.0)) (&& (< net6.0) (>= netstandard2.1)) + System.Text.Encodings.Web (>= 7.0) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (>= net462) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1)) + System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard1.5) (>= netstandard2.1)) (&& (< net6.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) + System.Threading.Tasks.Extensions (4.5.4) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.1)) (&& (< monoandroid) (< netstandard2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard2.0) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard1.0) (>= netstandard2.1) (>= win8)) (&& (< netstandard2.0) (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= wp8)) + System.Windows.Extensions (7.0) - restriction: >= net6.0 + System.Drawing.Common (>= 7.0) - restriction: >= net6.0 + System.Xml.XmlDocument (4.3) - restriction: && (< net6.0) (>= xamarinios) + Xamarin.AndroidX.Annotation (1.5.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Migration (>= 1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0-android) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Annotation.Experimental (1.3.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.Kotlin.StdLib (>= 1.8.0.1) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Runtime (2.1.0.17) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Browser (1.4.0.4) - restriction: && (>= monoandroid10.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Core (>= 1.9.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Interpolator (>= 1.0.0.16) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (1.2.0.6) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (1.1.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Core (1.9.0.2) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Annotation.Experimental (>= 1.3.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.11) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Runtime (>= 2.5.1.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.VersionedParcelable (>= 1.1.1.16) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Interpolator (1.0.0.16) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Common (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Runtime (2.5.1.2) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Arch.Core.Runtime (>= 2.1.0.17) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Lifecycle.Common (>= 2.5.1.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Migration (1.0.10) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.VersionedParcelable (1.1.1.16) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.AndroidX.Annotation (>= 1.5.0.2) - restriction: >= monoandroid12.0 + Xamarin.AndroidX.Collection (>= 1.2.0.6) - restriction: >= monoandroid12.0 + Xamarin.Google.Guava.ListenableFuture (1.0.0.11) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.Jetbrains.Annotations (24.0.0.1) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.Kotlin.StdLib (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) + Xamarin.Jetbrains.Annotations (>= 24.0.0.1) - restriction: >= monoandroid12.0 + Xamarin.Kotlin.StdLib.Common (>= 1.8.10) - restriction: >= monoandroid12.0 + Xamarin.Kotlin.StdLib.Common (1.8.10) - restriction: && (>= monoandroid12.0) (< net6.0) diff --git a/src/SqlClient.DesignTime/AssemblyInfo.fs b/src/SqlClient.DesignTime/AssemblyInfo.fs index 5c5d47ef..ae4c461e 100644 --- a/src/SqlClient.DesignTime/AssemblyInfo.fs +++ b/src/SqlClient.DesignTime/AssemblyInfo.fs @@ -9,6 +9,7 @@ open System.Runtime.CompilerServices [] [] [] + do () module internal AssemblyVersionInformation = @@ -18,3 +19,15 @@ module internal AssemblyVersionInformation = let [] AssemblyVersion = "2.1.2" let [] AssemblyFileVersion = "2.1.2" let [] InternalsVisibleTo = "SqlClient.Tests" + + (* + System.AppDomain.CurrentDomain.add_AssemblyResolve(fun _ args -> + let name = System.Reflection.AssemblyName(args.Name) + let existingAssembly = + System.AppDomain.CurrentDomain.GetAssemblies() + |> Seq.tryFind(fun a -> System.Reflection.AssemblyName.ReferenceMatchesDefinition(name, a.GetName())) + match existingAssembly with + | Some a -> a + | None -> null + ) + *) diff --git a/src/SqlClient.DesignTime/DesignTime.fs b/src/SqlClient.DesignTime/DesignTime.fs index ed6f506d..316ab105 100644 --- a/src/SqlClient.DesignTime/DesignTime.fs +++ b/src/SqlClient.DesignTime/DesignTime.fs @@ -3,14 +3,15 @@ open System open System.Reflection open System.Data -open System.Data.SqlClient -open Microsoft.SqlServer.Server open System.Collections.Generic open System.Diagnostics +open System.Text.RegularExpressions +open Microsoft.Data.SqlClient +open Microsoft.Data.SqlClient.Server open Microsoft.FSharp.Quotations + open ProviderImplementation.ProvidedTypes open FSharp.Data.SqlClient.Internals -open System.Text.RegularExpressions type internal RowType = { Provided: Type diff --git a/src/SqlClient.DesignTime/DesignTimeConnectionString.fs b/src/SqlClient.DesignTime/DesignTimeConnectionString.fs index 41688dba..87c58427 100644 --- a/src/SqlClient.DesignTime/DesignTimeConnectionString.fs +++ b/src/SqlClient.DesignTime/DesignTimeConnectionString.fs @@ -1,8 +1,8 @@ namespace FSharp.Data.SqlClient -open System.Configuration -open System.IO open System +open System.IO +open System.Configuration open System.Collections.Generic open System.Diagnostics @@ -47,7 +47,7 @@ type internal DesignTimeConnectionString = match configSection, lazy configSection.[name] with | null, _ | _, Lazy null -> raise <| KeyNotFoundException(message = sprintf "Cannot find name %s in section of %s file." name configFilename) | _, Lazy x -> - let providerName = if String.IsNullOrEmpty x.ProviderName then "System.Data.SqlClient" else x.ProviderName + let providerName = if String.IsNullOrEmpty x.ProviderName then "Microsoft.Data.SqlClient" else x.ProviderName x.ConnectionString, providerName member this.Value = diff --git a/src/SqlClient.DesignTime/QuotationsFactory.fs b/src/SqlClient.DesignTime/QuotationsFactory.fs index 719f655f..270831e8 100644 --- a/src/SqlClient.DesignTime/QuotationsFactory.fs +++ b/src/SqlClient.DesignTime/QuotationsFactory.fs @@ -2,10 +2,8 @@ open System open System.Data -open System.Data.SqlClient +open Microsoft.Data.SqlClient open System.Reflection -open System.Collections -open System.Diagnostics open Microsoft.FSharp.Quotations diff --git a/src/SqlClient.DesignTime/Scripts/Scratchpad.fsx b/src/SqlClient.DesignTime/Scripts/Scratchpad.fsx index 2dcf5cc6..a9d508c8 100644 --- a/src/SqlClient.DesignTime/Scripts/Scratchpad.fsx +++ b/src/SqlClient.DesignTime/Scripts/Scratchpad.fsx @@ -16,7 +16,7 @@ let inline implicit arg = Convert.ToDateTime(Date(now)) -now |> box :> Date +now |> box :?> Date //Convert.ChangeType(Nullable 42, typeof) Convert.ChangeType(42M, typeof) diff --git a/src/SqlClient.DesignTime/Scripts/XE.fsx b/src/SqlClient.DesignTime/Scripts/XE.fsx.txt similarity index 97% rename from src/SqlClient.DesignTime/Scripts/XE.fsx rename to src/SqlClient.DesignTime/Scripts/XE.fsx.txt index 0cd79558..0289e075 100644 --- a/src/SqlClient.DesignTime/Scripts/XE.fsx +++ b/src/SqlClient.DesignTime/Scripts/XE.fsx.txt @@ -6,7 +6,7 @@ #r "Microsoft.SqlServer.XEvent.Linq.dll" open Microsoft.SqlServer.XEvent.Linq -open System.Data.SqlClient +open Microsoft.Data.SqlClient let connection = "Data Source=.;Initial Catalog=master;Integrated Security=True" @@ -55,7 +55,7 @@ do ALTER EVENT SESSION [%s] ON SERVER STATE = START END " xeSession xeSession targetDatabase targetDatabase targetDatabase xeSession xeSession - use cmd = new System.Data.SqlClient.SqlCommand(createSession, conn) + use cmd = new Microsoft.Data.SqlClient.SqlCommand(createSession, conn) cmd.ExecuteNonQuery() |> ignore do diff --git a/src/SqlClient.DesignTime/SingleRootTypeProvider.fs b/src/SqlClient.DesignTime/SingleRootTypeProvider.fs index 543370cb..bd502839 100644 --- a/src/SqlClient.DesignTime/SingleRootTypeProvider.fs +++ b/src/SqlClient.DesignTime/SingleRootTypeProvider.fs @@ -1,9 +1,9 @@ namespace ProviderImplementation.ProvidedTypes +open System +open System.Reflection open FSharp.Data.SqlClient open Microsoft.FSharp.Core.CompilerServices -open System.Reflection -open System [] [] @@ -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 diff --git a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj index ae09a886..48404c2a 100644 --- a/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj +++ b/src/SqlClient.DesignTime/SqlClient.DesignTime.fsproj @@ -1,9 +1,9 @@  - - net461;netstandard2.0 + netstandard2.1 FSharp.Data.SqlClient.DesignTime + true false true 101 @@ -11,32 +11,7 @@ true $(DefineConstants);DESIGNTIME_CODE_ONLY;WITH_LEGACY_NAMESPACE - - - - - - - - - + @@ -66,8 +41,9 @@ - + + @@ -75,13 +51,6 @@ - - - - - - - - + \ No newline at end of file diff --git a/src/SqlClient.DesignTime/SqlClientExtensions.fs b/src/SqlClient.DesignTime/SqlClientExtensions.fs index 6a1dd21c..08987052 100644 --- a/src/SqlClient.DesignTime/SqlClientExtensions.fs +++ b/src/SqlClient.DesignTime/SqlClientExtensions.fs @@ -6,9 +6,9 @@ open System.Data open System.Collections.Generic open System.IO open System.Threading.Tasks -open System.Data.SqlClient + +open Microsoft.Data.SqlClient open FSharp.Data.SqlClient.Internals -open System.Diagnostics type internal TypeInfoPerConnectionStringCache() = let key = obj() diff --git a/src/SqlClient.DesignTime/SqlClientProvider.fs b/src/SqlClient.DesignTime/SqlClientProvider.fs index 361dc5f4..cb092100 100644 --- a/src/SqlClient.DesignTime/SqlClientProvider.fs +++ b/src/SqlClient.DesignTime/SqlClientProvider.fs @@ -3,17 +3,27 @@ open System open System.Collections.Generic open System.Data -open System.Data.SqlClient open System.Diagnostics open System.IO open System.Reflection open Microsoft.FSharp.Core.CompilerServices open Microsoft.FSharp.Quotations +open Microsoft.Data.SqlClient + open ProviderImplementation.ProvidedTypes open FSharp.Data.SqlClient open FSharp.Data.SqlClient.Internals +open System.Data.Common +open System.Runtime.InteropServices + +module Loaders = + let sqlClientFactoryLoader () = + let instance = Microsoft.Data.SqlClient.SqlClientFactory.Instance + if isNull instance then + failwith "Microsoft.Data.SqlClient.SqlClientFactory.Instance is null if the lib reference is used instead of win or unix" + DbProviderFactories.RegisterFactory("Microsoft.Data.SqlClient", instance) [] [] @@ -27,13 +37,14 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this = let cache = new Cache() let methodsCache = new Cache() let whoIsClearing = typeof.FullName + " Disposing" + do + //failwithf "Daniel! the CONFIG path is: \nReferencedAssemblies: %s\nRuntimeAssembly: %s" (String.Join(",\n", config.ReferencedAssemblies)) config.RuntimeAssembly + this.RegisterRuntimeAssemblyLocationAsProbingFolder(config) - do + Loaders.sqlClientFactoryLoader () this.Disposing.Add <| fun _ -> sqlDataTypesCache.Clear whoIsClearing - do - //this.RegisterRuntimeAssemblyLocationAsProbingFolder( config) - + do providerType.DefineStaticParameters( parameters = [ ProvidedStaticParameter("ConnectionStringOrName", typeof) @@ -59,9 +70,45 @@ type SqlProgrammabilityProvider(config : TypeProviderConfig) as this = this.AddNamespace(nameSpace, [ providerType ]) - override this.ResolveAssembly args = - config.ReferencedAssemblies - |> Array.tryFind (fun x -> AssemblyName.ReferenceMatchesDefinition(AssemblyName.GetAssemblyName x, AssemblyName args.Name)) + override this.ResolveAssembly args = + let remapRefToRuntime (x: string) = + // The ref assembly for microsoft.data.sqlclient was loaded but it won't work. + // C:\Users\\.nuget\packages\microsoft.data.sqlclient\5.1.0\ref\netstandard2.1\Microsoft.Data.SqlClient.dll + if (not (x.Contains("/ref/"))) && (not (x.Contains("\\ref\\"))) then + x + else + let isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows); + let windowsPath = x.Replace("/ref/", "/runtimes/win/lib/").Replace("\\ref\\", "\\runtimes\\win\\lib\\") + let unixPath = x.Replace("/ref/", "/runtimes/unix/lib/").Replace("\\ref\\", "\\runtimes\\unix\\lib\\") + + if isWindows && File.Exists(windowsPath) then + windowsPath + else if (not isWindows) && File.Exists(unixPath) then + unixPath + else + x.Replace("/ref/", "/lib/").Replace("\\ref\\", "\\lib\\") + + config.ReferencedAssemblies + |> Array.filter (fun x -> AssemblyName.ReferenceMatchesDefinition(AssemblyName.GetAssemblyName x, AssemblyName args.Name)) + |> Array.map (fun x -> + if (x.Contains("Microsoft.Data.SqlClient")) then + remapRefToRuntime x + else if (x.Contains("Microsoft.Data.SqlClient.SNI")) then + remapRefToRuntime x + else + x + ) + |> Array.tryHead + |> fun x -> + // If we can't find SqlClient.SNI.runtime it is a dependency of SqlClient so + // we can try to find that instead and modify the path to find SNI + match x with + | None when args.Name.Contains("Microsoft.Data.SqlClient.SNI.runtime") -> + config.ReferencedAssemblies + |> Array.tryFind (fun x -> x.Contains("Microsoft.Data.SqlClient")) + |> Option.map (fun x -> x.Replace("microsoft.data.sqlclient", "microsoft.data.sqlclient.sni.runtime").Replace("Microsoft.Data.SqlClient", "Microsoft.Data.SqlClient.SNI.runtime")) + |> Option.map remapRefToRuntime + | _ -> x |> Option.map Assembly.LoadFrom |> defaultArg <| base.ResolveAssembly args diff --git a/src/SqlClient.DesignTime/SqlCommandProvider.fs b/src/SqlClient.DesignTime/SqlCommandProvider.fs index 8cbfea98..9da63f0d 100644 --- a/src/SqlClient.DesignTime/SqlCommandProvider.fs +++ b/src/SqlClient.DesignTime/SqlCommandProvider.fs @@ -3,9 +3,9 @@ open System open System.Diagnostics open System.IO -open System.Data.SqlClient open System.Reflection open System.Runtime.CompilerServices +open Microsoft.Data.SqlClient open Microsoft.FSharp.Core.CompilerServices open Microsoft.FSharp.Quotations @@ -34,7 +34,7 @@ type SqlCommandProvider(config : TypeProviderConfig) as this = let cache = new Cache() let whoIsClearingCache = typeof.FullName + " Disposing" - do + do this.Disposing.Add <| fun _ -> try sqlDataTypesCache.Clear whoIsClearingCache @@ -79,8 +79,8 @@ type SqlCommandProvider(config : TypeProviderConfig) as this = this.AddNamespace(nameSpace, [ providerType ]) - override this.ResolveAssembly args = - config.ReferencedAssemblies + override this.ResolveAssembly args = + config.ReferencedAssemblies |> Array.tryFind (fun x -> AssemblyName.ReferenceMatchesDefinition(AssemblyName.GetAssemblyName x, AssemblyName args.Name)) |> Option.map Assembly.LoadFrom |> defaultArg diff --git a/src/SqlClient.DesignTime/SqlEnumProvider.fs b/src/SqlClient.DesignTime/SqlEnumProvider.fs index 8514de78..7aa0d86a 100644 --- a/src/SqlClient.DesignTime/SqlEnumProvider.fs +++ b/src/SqlClient.DesignTime/SqlEnumProvider.fs @@ -2,18 +2,19 @@ open System.Reflection open System.Collections.Generic -open System.Data -open System.Data.Common open System open Microsoft.FSharp.Core.CompilerServices -open Microsoft.FSharp.Quotations -open Microsoft.FSharp.Reflection open ProviderImplementation.ProvidedTypes open FSharp.Data.SqlClient +open System.Data +open System.Data.Common +open Microsoft.FSharp.Reflection +open Microsoft.FSharp.Quotations + [] [] type SqlEnumProvider(config : TypeProviderConfig) as this = @@ -42,7 +43,7 @@ type SqlEnumProvider(config : TypeProviderConfig) as this = parameters = [ ProvidedStaticParameter("Query", typeof) ProvidedStaticParameter("ConnectionStringOrName", typeof) - ProvidedStaticParameter("Provider", typeof, "System.Data.SqlClient") + ProvidedStaticParameter("Provider", typeof, "Microsoft.Data.SqlClient") ProvidedStaticParameter("ConfigFile", typeof, "") ProvidedStaticParameter("Kind", typeof, SqlEnumKind.Default) ], @@ -55,7 +56,7 @@ type SqlEnumProvider(config : TypeProviderConfig) as this = Enumeration based on SQL query. SQL used to get the enumeration labels and values. A result set must have at least two columns. The first one is a label. String used to open a data connection. -Invariant name of a ADO.NET provider. Default is "System.Data.SqlClient". +Invariant name of a ADO.NET provider. Default is "Microsoft.Data.SqlClient". The name of the configuration file that’s used for connection strings at DESIGN-TIME. The default value is app.config or web.config. """ @@ -72,10 +73,10 @@ type SqlEnumProvider(config : TypeProviderConfig) as this = | Literal value -> value, provider | NameInConfig(_, value, provider) -> value, provider -#if !USE_SYSTEM_DATA_COMMON_DBPROVIDERFACTORIES - // not supported on netstandard 20? - raise ("DbProviderFactories not available" |> NotImplementedException) -#else +//#if !USE_SYSTEM_DATA_COMMON_DBPROVIDERFACTORIES +// // not supported on netstandard 20? +// raise ("DbProviderFactories not available" |> NotImplementedException) +//#else let adoObjectsFactory = DbProviderFactories.GetFactory( providerName: string) use conn = adoObjectsFactory.CreateConnection() conn.ConnectionString <- connStr @@ -266,7 +267,7 @@ type SqlEnumProvider(config : TypeProviderConfig) as this = tempAssembly.AddTypes [ providedEnumType ] providedEnumType -#endif +//#endif //Quotation factories diff --git a/src/SqlClient.DesignTime/SqlFileProvider.fs b/src/SqlClient.DesignTime/SqlFileProvider.fs index 292ddb6c..e5bf459c 100644 --- a/src/SqlClient.DesignTime/SqlFileProvider.fs +++ b/src/SqlClient.DesignTime/SqlFileProvider.fs @@ -1,10 +1,10 @@ namespace FSharp.Data open System.IO +open System.Text open Microsoft.FSharp.Core.CompilerServices open ProviderImplementation.ProvidedTypes open FSharp.Data.SqlClient -open System.Text [] [] diff --git a/src/SqlClient.DesignTime/paket.references b/src/SqlClient.DesignTime/paket.references index d08f34d1..43beed9d 100644 --- a/src/SqlClient.DesignTime/paket.references +++ b/src/SqlClient.DesignTime/paket.references @@ -1,9 +1,10 @@ group DesignTime -System.Configuration.ConfigurationManager +FSharp.Core System.Data.Common -System.Data.SqlClient +System.Configuration.ConfigurationManager System.Runtime.Caching +Microsoft.Data.SqlClient copy_local: true Microsoft.SqlServer.TransactSql.ScriptDom Microsoft.SqlServer.Types diff --git a/src/SqlClient.Samples/WebApi.Controllers/App.config b/src/SqlClient.Samples/WebApi.Controllers/App.config deleted file mode 100644 index d3e16551..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/App.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi.Controllers/DataAccess.fs b/src/SqlClient.Samples/WebApi.Controllers/DataAccess.fs deleted file mode 100644 index 107eef2e..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/DataAccess.fs +++ /dev/null @@ -1,14 +0,0 @@ -module WebApi.DataAccess - -open FSharp.Data - -[] -let AdventureWorks = "name=AdventureWorks" - -type QueryProducts = SqlCommandProvider< const(SqlFile<"T-SQL/Products.sql">.Text), AdventureWorks, DataDirectory = "App_Data"> - -//type ProductQuery = SqlFile<"T-SQL/Products.sql"> -//type QueryProducts = SqlCommandProvider - -type AdventureWorks = SqlProgrammabilityProvider - diff --git a/src/SqlClient.Samples/WebApi.Controllers/HomeController.fs b/src/SqlClient.Samples/WebApi.Controllers/HomeController.fs deleted file mode 100644 index c98f65aa..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/HomeController.fs +++ /dev/null @@ -1,40 +0,0 @@ -namespace WebApi - -open System.Data.SqlClient -open System.Net -open System.Net.Http -open System.Web.Http -open System.Web.Configuration - -open DataAccess - -module SqlCommand = - let inline create() : 'a = - let designTimeConnectionString = (^a : (static member get_ConnectionStringOrName : unit -> string) ()) - - match designTimeConnectionString with - | DataAccess.AdventureWorks -> - //get connection string at run-time - let adventureWorks = WebConfigurationManager.ConnectionStrings.["AdventureWorks2012"].ConnectionString - //create command instance with connection string and command timeout override - (^a : (new : string * int -> ^a) (adventureWorks, 30)) - - | _ -> failwithf "Unrecognized command type %s" typeof<'a>.FullName - - -type HomeController() = - inherit ApiController() - - member this.Get() = this.Get(7L, System.DateTime.Parse "2002-06-01") - - //http://localhost:61594/?top=4&sellStartDate=2002-07-01 - member this.Get(top, sellStartDate) = - async { - let cmd : QueryProducts = SqlCommand.create() - - //or get connnection info from web.config - //let cmd = QueryProducts() - - let! data = cmd.AsyncExecute(top = top, SellStartDate = sellStartDate) - return this.Request.CreateResponse(HttpStatusCode.OK, data) - } |> Async.StartAsTask diff --git a/src/SqlClient.Samples/WebApi.Controllers/T-SQL/Products.sql b/src/SqlClient.Samples/WebApi.Controllers/T-SQL/Products.sql deleted file mode 100644 index 70310944..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/T-SQL/Products.sql +++ /dev/null @@ -1,8 +0,0 @@ ---uncomment for design time testing ---DECLARE --- @top AS BIGINT = 10, --- @SellStartDate AS DATETIME = '2002-06-01' - -SELECT TOP (@top) Name AS ProductName, SellStartDate -FROM Production.Product -WHERE SellStartDate > @SellStartDate \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj b/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj deleted file mode 100644 index 811837d0..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/WebApi.Controllers.fsproj +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Debug - AnyCPU - 2.0 - 92308b2e-43b4-4c4c-9446-87d02c4e455d - Library - WebApi.Controllers - WebApi.Controllers - v4.5.2 - 4.4.0.0 - WebApi.Controllers - ..\..\..\ - - true - - - true - full - false - false - bin\Debug\ - DEBUG;TRACE - 3 - bin\Debug\WebApi.Controllers.XML - - - pdbonly - true - true - bin\Release\ - TRACE - 3 - bin\Release\WebApi.Controllers.XML - - - 11 - - - - - $(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets - - - - - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ..\..\..\packages\samples\FSharp.Core\lib\net45\FSharp.Core.dll - True - True - - - - - - - - - ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net40\FSharp.Data.SqlClient.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi.Controllers/paket.references b/src/SqlClient.Samples/WebApi.Controllers/paket.references deleted file mode 100644 index 2617315c..00000000 --- a/src/SqlClient.Samples/WebApi.Controllers/paket.references +++ /dev/null @@ -1,6 +0,0 @@ -group Samples - FSharp.Core - FSharp.Data.SqlClient - Microsoft.AspNet.WebApi.Client - Microsoft.AspNet.WebApi.Core - Newtonsoft.Json diff --git a/src/SqlClient.Samples/WebApi/Global.asax b/src/SqlClient.Samples/WebApi/Global.asax deleted file mode 100644 index 1487c762..00000000 --- a/src/SqlClient.Samples/WebApi/Global.asax +++ /dev/null @@ -1 +0,0 @@ -<%@ Application Codebehind="Global.asax.cs" Inherits="WebApi.Global" Language="C#" %> diff --git a/src/SqlClient.Samples/WebApi/Global.asax.cs b/src/SqlClient.Samples/WebApi/Global.asax.cs deleted file mode 100644 index 9ee19095..00000000 --- a/src/SqlClient.Samples/WebApi/Global.asax.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Net.Http.Headers; -using System.Web; -using System.Web.Http; -using System.Web.Security; -using System.Web.SessionState; - -namespace WebApi -{ - public class Global : System.Web.HttpApplication - { - - protected void Application_Start(object sender, EventArgs e) - { - GlobalConfiguration.Configuration.Routes.MapHttpRoute("DefaultAPI", "{controller}/{id}", new { controller = "Home", id = RouteParameter.Optional }); - GlobalConfiguration.Configuration.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html")); - } - } -} \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/Properties/AssemblyInfo.cs b/src/SqlClient.Samples/WebApi/Properties/AssemblyInfo.cs deleted file mode 100644 index bd98c6a5..00000000 --- a/src/SqlClient.Samples/WebApi/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("WebApi")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("WebApi")] -[assembly: AssemblyCopyright("Copyright © 2014")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("eb9e0f3a-b8ec-4341-bf09-f10e50a23cbd")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Revision and Build Numbers -// by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/SqlClient.Samples/WebApi/Web.Debug.config b/src/SqlClient.Samples/WebApi/Web.Debug.config deleted file mode 100644 index 2e302f9f..00000000 --- a/src/SqlClient.Samples/WebApi/Web.Debug.config +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/Web.Release.config b/src/SqlClient.Samples/WebApi/Web.Release.config deleted file mode 100644 index c3584446..00000000 --- a/src/SqlClient.Samples/WebApi/Web.Release.config +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/WebApi.csproj b/src/SqlClient.Samples/WebApi/WebApi.csproj deleted file mode 100644 index 0fd980b2..00000000 --- a/src/SqlClient.Samples/WebApi/WebApi.csproj +++ /dev/null @@ -1,191 +0,0 @@ - - - - - Debug - AnyCPU - - - 2.0 - {EB1F8003-352C-448B-81AC-9823BEB1B325} - {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} - Library - Properties - WebApi - WebApi - v4.5.2 - true - - - - - ..\..\..\ - - - true - - - true - full - false - bin\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\ - TRACE - prompt - 4 - - - - - - - - - - - - - - - - - - - - - - Global.asax - - - - - - - Web.config - - - Web.config - - - - - {92308b2e-43b4-4c4c-9446-87d02c4e455d} - WebApi.Controllers - - - - 10.0 - $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) - - - - - - - - - True - True - 0 - / - http://localhost:61594/ - False - False - - - False - - - - - - - - - - - ..\..\..\packages\samples\FSharp.Core\lib\net45\FSharp.Core.dll - True - True - - - - - - - - - ..\..\..\packages\samples\FSharp.Data.SqlClient\lib\net40\FSharp.Data.SqlClient.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Client\lib\net45\System.Net.Http.Formatting.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.Core\lib\net45\System.Web.Http.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Microsoft.AspNet.WebApi.WebHost\lib\net45\System.Web.Http.WebHost.dll - True - True - - - - - - - - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll - True - True - - - - - - - ..\..\..\packages\samples\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll - True - True - - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/paket.references b/src/SqlClient.Samples/WebApi/paket.references deleted file mode 100644 index cc9bb096..00000000 --- a/src/SqlClient.Samples/WebApi/paket.references +++ /dev/null @@ -1,8 +0,0 @@ -group Samples - FSharp.Core - FSharp.Data.SqlClient - Microsoft.AspNet.WebApi - Microsoft.AspNet.WebApi.Client - Microsoft.AspNet.WebApi.Core - Microsoft.AspNet.WebApi.WebHost - Newtonsoft.Json \ No newline at end of file diff --git a/src/SqlClient.Samples/WebApi/web.config b/src/SqlClient.Samples/WebApi/web.config deleted file mode 100644 index 6d09952d..00000000 --- a/src/SqlClient.Samples/WebApi/web.config +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - True - - - - - True - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WpfDataBinding/App.config b/src/SqlClient.Samples/WpfDataBinding/App.config deleted file mode 100644 index 1cc96036..00000000 --- a/src/SqlClient.Samples/WpfDataBinding/App.config +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - True - - - - - True - - - - \ No newline at end of file diff --git a/src/SqlClient.Samples/WpfDataBinding/MainWindow.xaml b/src/SqlClient.Samples/WpfDataBinding/MainWindow.xaml deleted file mode 100644 index 79d450ca..00000000 --- a/src/SqlClient.Samples/WpfDataBinding/MainWindow.xaml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - -