diff --git a/.psscripts/build-functions.ps1 b/.psscripts/build-functions.ps1
index 46deafc..7a9f4d5 100644
--- a/.psscripts/build-functions.ps1
+++ b/.psscripts/build-functions.ps1
@@ -15,6 +15,20 @@ function Test-IsWindows
[environment]::OSVersion.Platform -ne "Unix"
}
+function Get-UbuntuVersion
+{
+ <#
+ .DESCRIPTION
+ Gets the Ubuntu version.
+
+ .EXAMPLE
+ $ubuntuVersion = Get-UbuntuVersion
+ #>
+
+ $version = Invoke-Cmd "lsb_release -r -s"
+ return $version
+}
+
function Invoke-UnsafeCmd ($cmd)
{
<#
@@ -235,7 +249,10 @@ function Get-NetCoreSdkFromWeb ($version)
The SDK version which should be downloaded.
#>
- $os = if (Test-IsWindows) { "windows" } else { "linux" }
+ Write-Host "Downloading .NET Core SDK $version..."
+
+ $os = if (Test-IsWindows) { "windows" } else { "linux" }
+ $ext = if (Test-IsWindows) { ".zip" } else { ".tar.gz" }
$response = Invoke-WebRequest `
-Uri "https://www.microsoft.com/net/download/thank-you/dotnet-sdk-$version-$os-x64-binaries" `
@@ -247,13 +264,17 @@ function Get-NetCoreSdkFromWeb ($version)
| Where-Object { $_.onclick -eq "recordManualDownload()" } `
| Select-Object -Expand href
- $tempFile = [System.IO.Path]::GetTempFileName()
+ $tempFile = [System.IO.Path]::GetTempFileName() + $ext
+
$webClient = New-Object System.Net.WebClient
$webClient.DownloadFile($downloadLink, $tempFile)
+
+ Write-Host "Download finished. SDK has been saved to '$tempFile'."
+
return $tempFile
}
-function Install-NetCoreSdk ($sdkZipPath)
+function Install-NetCoreSdkFromArchive ($sdkArchivePath)
{
<#
.DESCRIPTION
@@ -263,13 +284,35 @@ function Install-NetCoreSdk ($sdkZipPath)
The zip archive which contains the .NET Core SDK.
#>
+ if (Test-IsWindows)
+ {
+ $env:DOTNET_INSTALL_DIR = [System.IO.Path]::Combine($pwd, ".dotnetsdk")
+ New-Item $env:DOTNET_INSTALL_DIR -ItemType Directory -Force | Out-Null
+ Write-Host "Created folder '$env:DOTNET_INSTALL_DIR'."
+ Expand-Archive -LiteralPath $sdkArchivePath -DestinationPath $env:DOTNET_INSTALL_DIR -Force
+ Write-Host "Extracted '$sdkArchivePath' to folder '$env:DOTNET_INSTALL_DIR'."
+ $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
+ Write-Host "Added '$env:DOTNET_INSTALL_DIR' to the environment variables."
+ }
+ else
+ {
+ $dotnetInstallDir = "$env:HOME/.dotnetsdk"
+ Invoke-Cmd "mkdir -p $dotnetInstallDir"
+ Write-Host "Created folder '$dotnetInstallDir'."
+ Invoke-Cmd "tar -xf $sdkArchivePath -C $dotnetInstallDir"
+ Write-Host "Extracted '$sdkArchivePath' to folder '$dotnetInstallDir'."
+ $env:PATH = "$env:PATH:$dotnetInstallDir"
+ Write-Host "Added '$dotnetInstallDir' to the environment variables."
+ }
+}
- $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
- New-Item $env:DOTNET_INSTALL_DIR -ItemType Directory -Force
-
- Add-Type -AssemblyName System.IO.Compression.FileSystem;
- [System.IO.Compression.ZipFile]::ExtractToDirectory($sdkZipPath, $env:DOTNET_INSTALL_DIR)
- $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
+function Install-NetCoreSdkForUbuntu ($ubuntuVersion, $sdkVersion)
+{
+ Invoke-Cmd "wget -q https://packages.microsoft.com/config/ubuntu/$ubuntuVersion/packages-microsoft-prod.deb"
+ Invoke-Cmd "sudo dpkg -i packages-microsoft-prod.deb"
+ Invoke-Cmd "sudo apt-get install apt-transport-https"
+ Invoke-Cmd "sudo apt-get update"
+ Invoke-Cmd "sudo apt-get -y install dotnet-sdk-$sdkVersion"
}
# ----------------------------------------------
@@ -280,14 +323,11 @@ function Test-IsAppVeyorBuild { return ($env:APPVEYOR -eq $true
function Test-IsAppVeyorBuildTriggeredByGitTag { return ($env:APPVEYOR_REPO_TAG -eq $true) }
function Get-AppVeyorGitTag { return $env:APPVEYOR_REPO_TAG_NAME }
-function Update-AppVeyorBuildVersion ($projFile)
+function Update-AppVeyorBuildVersion ($version)
{
if (Test-IsAppVeyorBuild)
{
Write-Host "Updating AppVeyor build version..." -ForegroundColor Magenta
-
- [xml]$xml = Get-Content $projFile
- $version = $xml.Project.PropertyGroup.Version
$buildVersion = "$version-$env:APPVEYOR_BUILD_NUMBER"
Write-Host "Setting AppVeyor build version to $buildVersion."
Update-AppveyorBuild -Version $buildVersion
diff --git a/.psscripts/install-dotnet.ps1 b/.psscripts/install-dotnet.ps1
index 1c71f64..c43c50f 100644
--- a/.psscripts/install-dotnet.ps1
+++ b/.psscripts/install-dotnet.ps1
@@ -2,10 +2,27 @@
# Install .NET Core SDK
# ----------------------------------------------
+param
+(
+ [switch] $ForceUbuntuInstall
+)
+
$ErrorActionPreference = "Stop"
Import-module "$PSScriptRoot\build-functions.ps1" -Force
+if ($ForceUbuntuInstall.IsPresent)
+{
+ $desiredSdk = Get-DesiredSdk
+ $versionParts = $desiredSdk.Split(".")
+ $majorMinorVer = $versionParts[0] + "." + $versionParts[1]
+ $ubuntuVersion = Get-UbuntuVersion
+
+ Write-Host "Ubuntu version: $ubuntuVersion"
+ Install-NetCoreSdkForUbuntu $ubuntuVersion $majorMinorVer
+ return
+}
+
# Rename the global.json before making the dotnet --version call
# This will prevent AppVeyor to fail because it might not find
# the desired SDK specified in the global.json
@@ -27,10 +44,11 @@ if ($desiredSdk -eq $currentSdk)
}
Write-Host "The current .NET SDK ($currentSdk) doesn't match the project's desired .NET SDK ($desiredSdk)." -ForegroundColor Yellow
+
Write-Host "Attempting to download and install the correct .NET SDK..."
$sdkZipPath = Get-NetCoreSdkFromWeb $desiredSdk
-Install-NetCoreSdk $sdkZipPath
+Install-NetCoreSdkFromArchive $sdkZipPath
Write-Host ".NET SDK installation complete." -ForegroundColor Green
dotnet-version
\ No newline at end of file
diff --git a/.psscripts/nuget-updates.ps1 b/.psscripts/nuget-updates.ps1
index f49c327..8fdddb7 100644
--- a/.psscripts/nuget-updates.ps1
+++ b/.psscripts/nuget-updates.ps1
@@ -36,7 +36,7 @@ Write-Host " Scanning all projects for NuGet package upgrades "
Write-Host "--------------------------------------------------"
Write-Host ""
-$projects = Get-ChildItem "..\**\*.*proj" -Recurse | % { $_.FullName }
+$projects = Get-ChildItem "$PSScriptRoot\..\**\*.*proj" -Recurse | % { $_.FullName }
foreach ($project in $projects)
{
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 5ac5744..d58d2db 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -1,6 +1,12 @@
Release Notes
=============
+## 0.19.0
+
+- Updated Giraffe to version 3.2.x
+- Updated Giraffe.Razor to version 2.0.x
+- Added TaskBuilder.fs as dependency to all templates
+
## 0.18.0
- Updated all templates to latest Giraffe version
diff --git a/build.ps1 b/build.ps1
index 46d2b8a..4eb3f84 100644
--- a/build.ps1
+++ b/build.ps1
@@ -21,14 +21,14 @@ Import-module "$PSScriptRoot/.psscripts/build-functions.ps1" -Force
Write-BuildHeader "Starting giraffe-template build script"
$nuspec = "./src/giraffe-template.nuspec"
+$version = Get-NuspecVersion $nuspec
-Update-AppVeyorBuildVersion $nuspec
+Update-AppVeyorBuildVersion $version
if (Test-IsAppVeyorBuildTriggeredByGitTag)
{
$gitTag = Get-AppVeyorGitTag
- $nuspecVersion = Get-NuspecVersion $nuspec
- Test-CompareVersions $nuspecVersion $gitTag
+ Test-CompareVersions $version $gitTag
}
Write-DotnetCoreVersions
@@ -91,7 +91,6 @@ if ($UpdatePaketDependencies.IsPresent -or $TestPermutations.IsPresent -or $Crea
$giraffeInstallation
if ($giraffeInstallation.Length -lt 6) { Invoke-Cmd "dotnet new -u giraffe-template" }
- $version = Get-NuspecVersion $nuspec
$nupkg = Get-ChildItem "./giraffe-template.$version.nupkg"
$nupkgPath = $nupkg.FullName
diff --git a/global.json b/global.json
index b659ed9..0e0ed4e 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"projects": [ "src", "tests" ],
"sdk": {
- "version": "2.1.401"
+ "version": "2.1.403"
}
}
\ No newline at end of file
diff --git a/src/content/DotLiquid/paket.lock b/src/content/DotLiquid/paket.lock
index d033602..0ecdec7 100644
--- a/src/content/DotLiquid/paket.lock
+++ b/src/content/DotLiquid/paket.lock
@@ -3,17 +3,19 @@ NUGET
remote: https://api.nuget.org/v3/index.json
DotLiquid (2.0.298) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe (2.0)
+ Giraffe (3.2)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.ResponseCaching (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net461) (>= netstandard2.0)
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net461
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
- TaskBuilder.fs (>= 2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (>= 2.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Utf8Json (>= 1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
Giraffe.DotLiquid (1.2)
DotLiquid (>= 2.0.298) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
@@ -24,14 +26,14 @@ NUGET
Microsoft.AspNet.WebApi.Client (5.2.6) - restriction: >= netcoreapp2.1
Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0)
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.AspNetCore (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.HostFiltering (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.CommandLine (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.FileExtensions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -47,26 +49,26 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.ObjectPool (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.App (2.1.2)
+ Microsoft.AspNetCore.App (2.1.5)
Microsoft.AspNet.WebApi.Client (>= 5.2.6 < 5.3) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Google (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.CookiePolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Google (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.Internal (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -83,41 +85,41 @@ NUGET
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpOverrides (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpsPolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.UI (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.UI (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.MiddlewareAnalysis (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.NodeServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Owin (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCompression (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -125,34 +127,34 @@ NUGET
Microsoft.AspNetCore.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Server.HttpSys (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Session (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.StaticFiles (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebSockets (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebUtilities (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.CodeAnalysis.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.InMemory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Tools (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Memory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.InMemory (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Memory (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.SqlServer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Binder (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -175,8 +177,8 @@ NUGET
Microsoft.Extensions.Hosting (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Hosting.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Stores (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Logging (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -192,7 +194,8 @@ NUGET
Microsoft.Extensions.Primitives (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.WebEncoders (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -204,43 +207,43 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Cookies (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Cookies (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authentication.Core (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Facebook (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Google (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.JwtBearer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Facebook (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Google (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.JwtBearer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OAuth (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OAuth (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Twitter (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.WsFederation (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Twitter (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.WsFederation (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.WsFederation (>= 5.2) - restriction: >= netstandard2.0
System.IdentityModel.Tokens.Jwt (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization.Policy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Connections.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Connections.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.CookiePolicy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
@@ -318,15 +321,15 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebSockets (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
@@ -347,21 +350,21 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.UI (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.UI (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.StaticFiles (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Embedded (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.JsonPatch (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
@@ -377,87 +380,87 @@ NUGET
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Design (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyModel (>= 2.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.FileProviders.Composite (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
- Microsoft.AspNetCore.Mvc.RazorPages (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileSystemGlobbing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.WebEncoders (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.NodeServices (2.1.1) - restriction: >= netcoreapp2.1
@@ -466,14 +469,14 @@ NUGET
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Owin (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor.Design (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -505,7 +508,7 @@ NUGET
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Win32.Registry (>= 4.5) - restriction: >= netstandard2.0
System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -514,19 +517,19 @@ NUGET
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netstandard2.0
System.Memory (>= 4.5.1) - restriction: >= netstandard2.0
System.Numerics.Vectors (>= 4.5) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
- System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (2.1.2) - restriction: >= netcoreapp2.1
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: >= netstandard2.0
+ System.Security.Principal.Windows (>= 4.5.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -537,14 +540,14 @@ NUGET
System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Session (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
@@ -552,24 +555,24 @@ NUGET
Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
System.Threading.Channels (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.SpaServices (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
@@ -596,7 +599,7 @@ NUGET
Microsoft.AspNetCore.WebUtilities (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (2.6.1) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) - restriction: >= netstandard1.3
System.AppContext (>= 4.3) - restriction: >= netstandard1.3
@@ -640,11 +643,11 @@ NUGET
System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3
Microsoft.CodeAnalysis.CSharp (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9)
- Microsoft.CodeAnalysis.Razor (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.Common (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeCoverage (15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.CodeCoverage (15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
Microsoft.CSharp (4.5) - restriction: >= netcoreapp2.1
Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: >= netcoreapp2.1
System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -655,39 +658,39 @@ NUGET
System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (>= net45) (>= netstandard1.3)
- Microsoft.EntityFrameworkCore (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Remotion.Linq (>= 2.2) - restriction: >= netstandard2.0
System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Interactive.Async (>= 3.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.InMemory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Relational (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.EntityFrameworkCore.InMemory (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.SqlServer (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Tools (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Memory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Memory (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.SqlServer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration (2.1.1) - restriction: >= netcoreapp2.1
@@ -755,13 +758,13 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (2.1.1) - restriction: >= netcoreapp2.1
@@ -806,72 +809,64 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.IdentityModel.JsonWebTokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Logging (5.2.4) - restriction: >= netcoreapp2.1
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Contracts (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Net.Http (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Dynamic.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IdentityModel.Tokens.Jwt (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Protocols.WsFederation (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens.Saml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Xml.XmlDocument (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Serialization.Xml (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Claims (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens.Saml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Xml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
+ Microsoft.IdentityModel.JsonWebTokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Logging (5.3) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections.Specialized (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Contracts (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IdentityModel.Tokens.Jwt (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Protocols.WsFederation (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens.Saml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Serialization.Xml (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Claims (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens.Saml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
Microsoft.Net.Http.Headers (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.NET.Test.Sdk (15.8)
- Microsoft.CodeCoverage (>= 15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.TestPlatform.TestHost (>= 15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NET.Test.Sdk (15.9)
+ Microsoft.CodeCoverage (>= 15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: >= netcoreapp1.0
Newtonsoft.Json (>= 9.0.1) - restriction: >= uap10.0
System.ComponentModel.Primitives (>= 4.1) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (>= 4.1) - restriction: >= uap10.0
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: >= uap10.0
- Microsoft.NETCore.Platforms (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= wp8))
- Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.TestPlatform.ObjectModel (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.1)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< 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) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
+ Microsoft.TestPlatform.ObjectModel (15.9) - restriction: >= netcoreapp1.0
NETStandard.Library (>= 1.6) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= netstandard1.4) (< netstandard1.5)) (&& (< net451) (>= netstandard1.5))
@@ -886,62 +881,19 @@ NUGET
System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net451) (>= netstandard1.5)
System.Threading.Thread (>= 4.0) - restriction: && (< net451) (>= netstandard1.5)
System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: && (< net451) (>= netstandard1.5)
- Microsoft.TestPlatform.TestHost (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.TestPlatform.TestHost (15.9) - restriction: >= netcoreapp1.0
Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: >= netcoreapp1.0
- Microsoft.TestPlatform.ObjectModel (>= 15.8) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
+ Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
Newtonsoft.Json (>= 9.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ Microsoft.Win32.Primitives (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
- System.Security.AccessControl (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -958,25 +910,28 @@ NUGET
System.Runtime (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.native.System (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.native.System (4.3.1) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
runtime.native.System.Data.SqlClient.sni (4.5) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.IO.Compression (4.3.2) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Net.Http (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1)
+ Microsoft.NETCore.Targets (>= 1.1.3)
+ runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
@@ -992,27 +947,37 @@ NUGET
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
- System.AppContext (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.AppContext (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
- System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Buffers (4.5) - restriction: >= netcoreapp2.1
+ System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Collections.Concurrent (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections.Concurrent (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Collections.Immutable (1.5) - restriction: >= netcoreapp2.1
System.Collections.NonGeneric (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1038,21 +1003,24 @@ NUGET
System.ComponentModel.Primitives (4.3) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
- System.Console (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Console (4.3.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Data.SqlClient (4.5.1) - restriction: >= netcoreapp2.1
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
+ Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
System.Diagnostics.Contracts (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Diagnostics.DiagnosticSource (4.5) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (4.5.1) - restriction: >= netcoreapp2.1
System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1097,7 +1065,10 @@ NUGET
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tools (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.TraceSource (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1108,7 +1079,10 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tracing (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Dynamic.Runtime (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1124,11 +1098,11 @@ NUGET
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization.Calendars (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1140,30 +1114,34 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IdentityModel.Tokens.Jwt (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.JsonWebTokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
+ System.IdentityModel.Tokens.Jwt (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.JsonWebTokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
System.Interactive.Async (3.2) - restriction: >= netcoreapp2.1
- System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Compression (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1172,36 +1150,33 @@ NUGET
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Pipelines (4.5) - restriction: >= netstandard2.0
- System.Buffers (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Pipelines (4.5.2) - restriction: >= netstandard2.0
+ System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq.Expressions (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Linq.Queryable (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1211,19 +1186,47 @@ NUGET
System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.1) - restriction: >= netstandard2.0
- System.Net.Http (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Primitives (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Sockets (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.WebSockets.WebSocketProtocol (4.5.1) - restriction: >= netcoreapp2.1
+ System.Memory (4.5.1) - restriction: >= netcoreapp2.1
+ System.Net.Http (4.3.4) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Net.Primitives (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Net.WebSockets.WebSocketProtocol (4.5.2) - restriction: >= netcoreapp2.1
System.Numerics.Vectors (4.5) - restriction: >= netcoreapp2.1
- System.ObjectModel (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.ObjectModel (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Private.DataContractSerialization (4.3) - restriction: >= netcoreapp1.0
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1250,63 +1253,73 @@ NUGET
System.Xml.XDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Xml.XmlDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection.Metadata (1.6) - restriction: >= netcoreapp1.0
- System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (4.5) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net45) (>= net47)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.CompilerServices.Unsafe (4.5.1) - restriction: >= netcoreapp2.1
- System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: >= netcoreapp2.1
+ System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.Handles (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (>= uap10.0)
+ System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1)
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.Runtime.Loader (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Numerics (4.3) - restriction: >= netcoreapp2.1
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime.Serialization.Json (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Private.DataContractSerialization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1332,23 +1345,23 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Cng (4.5) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Cng (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Csp (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1362,7 +1375,7 @@ NUGET
System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Encoding (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1375,10 +1388,10 @@ NUGET
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Pkcs (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.OpenSsl (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Pkcs (4.5.1) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netcoreapp2.1
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Primitives (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1386,32 +1399,32 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.X509Certificates (4.3.2) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Security.Cryptography.Xml (4.5) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Pkcs (>= 4.5) - restriction: && (< net461) (>= netstandard2.0)
System.Security.Permissions (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
@@ -1419,27 +1432,37 @@ NUGET
System.Security.AccessControl (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
System.Security.Principal (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Principal.Windows (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Principal.Windows (4.5.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encoding.CodePages (4.5) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios)) (>= net461) (>= netcoreapp2.0)
+ System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encodings.Web (4.5) - restriction: >= netcoreapp2.1
System.Text.RegularExpressions (4.3) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Channels (4.5) - restriction: >= netcoreapp2.1
- System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (< net45) (>= net461)) (>= netstandard2.0)
+ System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.Threading.Tasks.Parallel (4.3) - restriction: >= netcoreapp2.1
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1454,9 +1477,8 @@ NUGET
System.Threading.ThreadPool (4.3) - restriction: >= netcoreapp1.0
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
System.ValueTuple (4.5) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.6) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1)
- System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1472,8 +1494,20 @@ NUGET
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Xml.XDocument (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0)
+ System.Xml.XDocument (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1533,15 +1567,20 @@ NUGET
System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- TaskBuilder.fs (2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (2.1) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (>= 4.1.17) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.6)
- System.ValueTuple (>= 4.3.1) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ Utf8Json (1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
xunit (2.4)
xunit.analyzers (>= 0.10)
xunit.assert (2.4)
xunit.core (2.4)
- xunit.abstractions (2.0.2) - restriction: >= netstandard1.1
+ xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
xunit.analyzers (0.10)
xunit.assert (2.4)
diff --git a/src/content/DotLiquid/src/AppNamePlaceholder/AppNamePlaceholder.fsproj b/src/content/DotLiquid/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
index aa8af98..e501481 100644
--- a/src/content/DotLiquid/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
+++ b/src/content/DotLiquid/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
@@ -10,8 +10,9 @@
-
+
+
diff --git a/src/content/Giraffe/paket.lock b/src/content/Giraffe/paket.lock
index e3cf522..31add85 100644
--- a/src/content/Giraffe/paket.lock
+++ b/src/content/Giraffe/paket.lock
@@ -2,28 +2,30 @@ STORAGE: NONE
NUGET
remote: https://api.nuget.org/v3/index.json
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe (2.0)
+ Giraffe (3.2)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.ResponseCaching (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net461) (>= netstandard2.0)
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net461
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
- TaskBuilder.fs (>= 2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (>= 2.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Utf8Json (>= 1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNet.WebApi.Client (5.2.6) - restriction: >= netcoreapp2.1
Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0)
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.AspNetCore (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.HostFiltering (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.CommandLine (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.FileExtensions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -39,26 +41,26 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.ObjectPool (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.App (2.1.2)
+ Microsoft.AspNetCore.App (2.1.5)
Microsoft.AspNet.WebApi.Client (>= 5.2.6 < 5.3) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Google (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.CookiePolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Google (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.Internal (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -75,41 +77,41 @@ NUGET
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpOverrides (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpsPolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.UI (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.UI (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.MiddlewareAnalysis (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.NodeServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Owin (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCompression (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -117,34 +119,34 @@ NUGET
Microsoft.AspNetCore.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Server.HttpSys (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Session (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.StaticFiles (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebSockets (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebUtilities (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.CodeAnalysis.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.InMemory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Tools (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Memory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.InMemory (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Memory (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.SqlServer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Binder (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -167,8 +169,8 @@ NUGET
Microsoft.Extensions.Hosting (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Hosting.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Stores (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Logging (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -184,7 +186,8 @@ NUGET
Microsoft.Extensions.Primitives (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.WebEncoders (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -196,43 +199,43 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Cookies (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Cookies (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authentication.Core (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Facebook (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Google (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.JwtBearer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Facebook (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Google (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.JwtBearer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OAuth (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OAuth (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Twitter (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.WsFederation (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Twitter (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.WsFederation (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.WsFederation (>= 5.2) - restriction: >= netstandard2.0
System.IdentityModel.Tokens.Jwt (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization.Policy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Connections.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Connections.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.CookiePolicy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
@@ -310,15 +313,15 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebSockets (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
@@ -339,21 +342,21 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.UI (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.UI (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.StaticFiles (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Embedded (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.JsonPatch (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
@@ -369,87 +372,87 @@ NUGET
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Design (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyModel (>= 2.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.FileProviders.Composite (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
- Microsoft.AspNetCore.Mvc.RazorPages (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileSystemGlobbing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.WebEncoders (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.NodeServices (2.1.1) - restriction: >= netcoreapp2.1
@@ -458,14 +461,14 @@ NUGET
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Owin (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor.Design (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -497,7 +500,7 @@ NUGET
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Win32.Registry (>= 4.5) - restriction: >= netstandard2.0
System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -506,19 +509,19 @@ NUGET
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netstandard2.0
System.Memory (>= 4.5.1) - restriction: >= netstandard2.0
System.Numerics.Vectors (>= 4.5) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
- System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (2.1.2) - restriction: >= netcoreapp2.1
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: >= netstandard2.0
+ System.Security.Principal.Windows (>= 4.5.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -529,14 +532,14 @@ NUGET
System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Session (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
@@ -544,24 +547,24 @@ NUGET
Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
System.Threading.Channels (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.SpaServices (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
@@ -588,7 +591,7 @@ NUGET
Microsoft.AspNetCore.WebUtilities (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (2.6.1) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) - restriction: >= netstandard1.3
System.AppContext (>= 4.3) - restriction: >= netstandard1.3
@@ -632,11 +635,11 @@ NUGET
System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3
Microsoft.CodeAnalysis.CSharp (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9)
- Microsoft.CodeAnalysis.Razor (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.Common (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeCoverage (15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.CodeCoverage (15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
Microsoft.CSharp (4.5) - restriction: >= netcoreapp2.1
Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: >= netcoreapp2.1
System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -647,39 +650,39 @@ NUGET
System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (>= net45) (>= netstandard1.3)
- Microsoft.EntityFrameworkCore (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Remotion.Linq (>= 2.2) - restriction: >= netstandard2.0
System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Interactive.Async (>= 3.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.InMemory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Relational (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.EntityFrameworkCore.InMemory (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.SqlServer (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Tools (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Memory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Memory (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.SqlServer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration (2.1.1) - restriction: >= netcoreapp2.1
@@ -747,13 +750,13 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (2.1.1) - restriction: >= netcoreapp2.1
@@ -798,72 +801,64 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.IdentityModel.JsonWebTokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Logging (5.2.4) - restriction: >= netcoreapp2.1
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Contracts (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Net.Http (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Dynamic.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IdentityModel.Tokens.Jwt (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Protocols.WsFederation (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens.Saml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Xml.XmlDocument (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Serialization.Xml (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Claims (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens.Saml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Xml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
+ Microsoft.IdentityModel.JsonWebTokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Logging (5.3) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections.Specialized (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Contracts (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IdentityModel.Tokens.Jwt (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Protocols.WsFederation (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens.Saml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Serialization.Xml (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Claims (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens.Saml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
Microsoft.Net.Http.Headers (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.NET.Test.Sdk (15.8)
- Microsoft.CodeCoverage (>= 15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.TestPlatform.TestHost (>= 15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NET.Test.Sdk (15.9)
+ Microsoft.CodeCoverage (>= 15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: >= netcoreapp1.0
Newtonsoft.Json (>= 9.0.1) - restriction: >= uap10.0
System.ComponentModel.Primitives (>= 4.1) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (>= 4.1) - restriction: >= uap10.0
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: >= uap10.0
- Microsoft.NETCore.Platforms (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= wp8))
- Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.TestPlatform.ObjectModel (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.1)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< 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) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
+ Microsoft.TestPlatform.ObjectModel (15.9) - restriction: >= netcoreapp1.0
NETStandard.Library (>= 1.6) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= netstandard1.4) (< netstandard1.5)) (&& (< net451) (>= netstandard1.5))
@@ -878,62 +873,19 @@ NUGET
System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net451) (>= netstandard1.5)
System.Threading.Thread (>= 4.0) - restriction: && (< net451) (>= netstandard1.5)
System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: && (< net451) (>= netstandard1.5)
- Microsoft.TestPlatform.TestHost (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.TestPlatform.TestHost (15.9) - restriction: >= netcoreapp1.0
Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: >= netcoreapp1.0
- Microsoft.TestPlatform.ObjectModel (>= 15.8) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
+ Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
Newtonsoft.Json (>= 9.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ Microsoft.Win32.Primitives (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
- System.Security.AccessControl (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -950,25 +902,28 @@ NUGET
System.Runtime (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.native.System (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.native.System (4.3.1) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
runtime.native.System.Data.SqlClient.sni (4.5) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.IO.Compression (4.3.2) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Net.Http (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1)
+ Microsoft.NETCore.Targets (>= 1.1.3)
+ runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
@@ -984,27 +939,37 @@ NUGET
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
- System.AppContext (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.AppContext (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
- System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Buffers (4.5) - restriction: >= netcoreapp2.1
+ System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Collections.Concurrent (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections.Concurrent (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Collections.Immutable (1.5) - restriction: >= netcoreapp2.1
System.Collections.NonGeneric (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1030,21 +995,24 @@ NUGET
System.ComponentModel.Primitives (4.3) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
- System.Console (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Console (4.3.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Data.SqlClient (4.5.1) - restriction: >= netcoreapp2.1
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
+ Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
System.Diagnostics.Contracts (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Diagnostics.DiagnosticSource (4.5) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (4.5.1) - restriction: >= netcoreapp2.1
System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1089,7 +1057,10 @@ NUGET
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tools (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.TraceSource (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1100,7 +1071,10 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tracing (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Dynamic.Runtime (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1116,11 +1090,11 @@ NUGET
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization.Calendars (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1132,30 +1106,34 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IdentityModel.Tokens.Jwt (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.JsonWebTokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
+ System.IdentityModel.Tokens.Jwt (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.JsonWebTokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
System.Interactive.Async (3.2) - restriction: >= netcoreapp2.1
- System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Compression (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1164,36 +1142,33 @@ NUGET
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Pipelines (4.5) - restriction: >= netstandard2.0
- System.Buffers (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Pipelines (4.5.2) - restriction: >= netstandard2.0
+ System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq.Expressions (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Linq.Queryable (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1203,19 +1178,47 @@ NUGET
System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.1) - restriction: >= netstandard2.0
- System.Net.Http (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Primitives (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Sockets (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.WebSockets.WebSocketProtocol (4.5.1) - restriction: >= netcoreapp2.1
+ System.Memory (4.5.1) - restriction: >= netcoreapp2.1
+ System.Net.Http (4.3.4) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Net.Primitives (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Net.WebSockets.WebSocketProtocol (4.5.2) - restriction: >= netcoreapp2.1
System.Numerics.Vectors (4.5) - restriction: >= netcoreapp2.1
- System.ObjectModel (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.ObjectModel (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Private.DataContractSerialization (4.3) - restriction: >= netcoreapp1.0
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1242,63 +1245,73 @@ NUGET
System.Xml.XDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Xml.XmlDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection.Metadata (1.6) - restriction: >= netcoreapp1.0
- System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (4.5) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net45) (>= net47)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.CompilerServices.Unsafe (4.5.1) - restriction: >= netcoreapp2.1
- System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: >= netcoreapp2.1
+ System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.Handles (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (>= uap10.0)
+ System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1)
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.Runtime.Loader (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Numerics (4.3) - restriction: >= netcoreapp2.1
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime.Serialization.Json (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Private.DataContractSerialization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1324,23 +1337,23 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Cng (4.5) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Cng (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Csp (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1354,7 +1367,7 @@ NUGET
System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Encoding (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1367,10 +1380,10 @@ NUGET
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Pkcs (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.OpenSsl (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Pkcs (4.5.1) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netcoreapp2.1
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Primitives (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1378,32 +1391,32 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.X509Certificates (4.3.2) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Security.Cryptography.Xml (4.5) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Pkcs (>= 4.5) - restriction: && (< net461) (>= netstandard2.0)
System.Security.Permissions (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
@@ -1411,27 +1424,37 @@ NUGET
System.Security.AccessControl (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
System.Security.Principal (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Principal.Windows (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Principal.Windows (4.5.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encoding.CodePages (4.5) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios)) (>= net461) (>= netcoreapp2.0)
+ System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encodings.Web (4.5) - restriction: >= netcoreapp2.1
System.Text.RegularExpressions (4.3) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Channels (4.5) - restriction: >= netcoreapp2.1
- System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (< net45) (>= net461)) (>= netstandard2.0)
+ System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.Threading.Tasks.Parallel (4.3) - restriction: >= netcoreapp2.1
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1446,9 +1469,8 @@ NUGET
System.Threading.ThreadPool (4.3) - restriction: >= netcoreapp1.0
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
System.ValueTuple (4.5) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.6) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1)
- System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1464,8 +1486,20 @@ NUGET
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Xml.XDocument (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0)
+ System.Xml.XDocument (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1525,15 +1559,20 @@ NUGET
System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- TaskBuilder.fs (2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (2.1) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (>= 4.1.17) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.6)
- System.ValueTuple (>= 4.3.1) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ Utf8Json (1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
xunit (2.4)
xunit.analyzers (>= 0.10)
xunit.assert (2.4)
xunit.core (2.4)
- xunit.abstractions (2.0.2) - restriction: >= netstandard1.1
+ xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
xunit.analyzers (0.10)
xunit.assert (2.4)
diff --git a/src/content/Giraffe/src/AppNamePlaceholder/AppNamePlaceholder.fsproj b/src/content/Giraffe/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
index f46de52..5d8dfc4 100644
--- a/src/content/Giraffe/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
+++ b/src/content/Giraffe/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
@@ -10,7 +10,8 @@
-
+
+
diff --git a/src/content/None/paket.lock b/src/content/None/paket.lock
index e3cf522..31add85 100644
--- a/src/content/None/paket.lock
+++ b/src/content/None/paket.lock
@@ -2,28 +2,30 @@ STORAGE: NONE
NUGET
remote: https://api.nuget.org/v3/index.json
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe (2.0)
+ Giraffe (3.2)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.ResponseCaching (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net461) (>= netstandard2.0)
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net461
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
- TaskBuilder.fs (>= 2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (>= 2.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Utf8Json (>= 1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNet.WebApi.Client (5.2.6) - restriction: >= netcoreapp2.1
Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0)
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.AspNetCore (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.HostFiltering (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.CommandLine (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.FileExtensions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -39,26 +41,26 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.ObjectPool (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.App (2.1.2)
+ Microsoft.AspNetCore.App (2.1.5)
Microsoft.AspNet.WebApi.Client (>= 5.2.6 < 5.3) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Google (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.CookiePolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Google (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.Internal (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -75,41 +77,41 @@ NUGET
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpOverrides (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpsPolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.UI (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.UI (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.MiddlewareAnalysis (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.NodeServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Owin (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCompression (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -117,34 +119,34 @@ NUGET
Microsoft.AspNetCore.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Server.HttpSys (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Session (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.StaticFiles (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebSockets (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebUtilities (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.CodeAnalysis.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.InMemory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Tools (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Memory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.InMemory (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Memory (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.SqlServer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Binder (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -167,8 +169,8 @@ NUGET
Microsoft.Extensions.Hosting (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Hosting.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Stores (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Logging (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -184,7 +186,8 @@ NUGET
Microsoft.Extensions.Primitives (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.WebEncoders (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -196,43 +199,43 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Cookies (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Cookies (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authentication.Core (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Facebook (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Google (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.JwtBearer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Facebook (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Google (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.JwtBearer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OAuth (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OAuth (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Twitter (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.WsFederation (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Twitter (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.WsFederation (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.WsFederation (>= 5.2) - restriction: >= netstandard2.0
System.IdentityModel.Tokens.Jwt (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization.Policy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Connections.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Connections.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.CookiePolicy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
@@ -310,15 +313,15 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebSockets (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
@@ -339,21 +342,21 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.UI (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.UI (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.StaticFiles (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Embedded (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.JsonPatch (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
@@ -369,87 +372,87 @@ NUGET
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Design (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyModel (>= 2.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.FileProviders.Composite (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
- Microsoft.AspNetCore.Mvc.RazorPages (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileSystemGlobbing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.WebEncoders (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.NodeServices (2.1.1) - restriction: >= netcoreapp2.1
@@ -458,14 +461,14 @@ NUGET
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Owin (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor.Design (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -497,7 +500,7 @@ NUGET
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Win32.Registry (>= 4.5) - restriction: >= netstandard2.0
System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -506,19 +509,19 @@ NUGET
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netstandard2.0
System.Memory (>= 4.5.1) - restriction: >= netstandard2.0
System.Numerics.Vectors (>= 4.5) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
- System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (2.1.2) - restriction: >= netcoreapp2.1
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: >= netstandard2.0
+ System.Security.Principal.Windows (>= 4.5.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -529,14 +532,14 @@ NUGET
System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Session (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
@@ -544,24 +547,24 @@ NUGET
Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
System.Threading.Channels (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.SpaServices (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
@@ -588,7 +591,7 @@ NUGET
Microsoft.AspNetCore.WebUtilities (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (2.6.1) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) - restriction: >= netstandard1.3
System.AppContext (>= 4.3) - restriction: >= netstandard1.3
@@ -632,11 +635,11 @@ NUGET
System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3
Microsoft.CodeAnalysis.CSharp (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9)
- Microsoft.CodeAnalysis.Razor (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.Common (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeCoverage (15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.CodeCoverage (15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
Microsoft.CSharp (4.5) - restriction: >= netcoreapp2.1
Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: >= netcoreapp2.1
System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -647,39 +650,39 @@ NUGET
System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (>= net45) (>= netstandard1.3)
- Microsoft.EntityFrameworkCore (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Remotion.Linq (>= 2.2) - restriction: >= netstandard2.0
System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Interactive.Async (>= 3.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.InMemory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Relational (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.EntityFrameworkCore.InMemory (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.SqlServer (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Tools (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Memory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Memory (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.SqlServer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration (2.1.1) - restriction: >= netcoreapp2.1
@@ -747,13 +750,13 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (2.1.1) - restriction: >= netcoreapp2.1
@@ -798,72 +801,64 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.IdentityModel.JsonWebTokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Logging (5.2.4) - restriction: >= netcoreapp2.1
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Contracts (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Net.Http (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Dynamic.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IdentityModel.Tokens.Jwt (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Protocols.WsFederation (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens.Saml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Xml.XmlDocument (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Serialization.Xml (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Claims (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens.Saml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Xml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
+ Microsoft.IdentityModel.JsonWebTokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Logging (5.3) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections.Specialized (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Contracts (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IdentityModel.Tokens.Jwt (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Protocols.WsFederation (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens.Saml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Serialization.Xml (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Claims (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens.Saml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
Microsoft.Net.Http.Headers (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.NET.Test.Sdk (15.8)
- Microsoft.CodeCoverage (>= 15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.TestPlatform.TestHost (>= 15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NET.Test.Sdk (15.9)
+ Microsoft.CodeCoverage (>= 15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: >= netcoreapp1.0
Newtonsoft.Json (>= 9.0.1) - restriction: >= uap10.0
System.ComponentModel.Primitives (>= 4.1) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (>= 4.1) - restriction: >= uap10.0
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: >= uap10.0
- Microsoft.NETCore.Platforms (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= wp8))
- Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.TestPlatform.ObjectModel (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.1)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< 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) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
+ Microsoft.TestPlatform.ObjectModel (15.9) - restriction: >= netcoreapp1.0
NETStandard.Library (>= 1.6) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= netstandard1.4) (< netstandard1.5)) (&& (< net451) (>= netstandard1.5))
@@ -878,62 +873,19 @@ NUGET
System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net451) (>= netstandard1.5)
System.Threading.Thread (>= 4.0) - restriction: && (< net451) (>= netstandard1.5)
System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: && (< net451) (>= netstandard1.5)
- Microsoft.TestPlatform.TestHost (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.TestPlatform.TestHost (15.9) - restriction: >= netcoreapp1.0
Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: >= netcoreapp1.0
- Microsoft.TestPlatform.ObjectModel (>= 15.8) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
+ Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
Newtonsoft.Json (>= 9.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ Microsoft.Win32.Primitives (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
- System.Security.AccessControl (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -950,25 +902,28 @@ NUGET
System.Runtime (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.native.System (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.native.System (4.3.1) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
runtime.native.System.Data.SqlClient.sni (4.5) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.IO.Compression (4.3.2) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Net.Http (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1)
+ Microsoft.NETCore.Targets (>= 1.1.3)
+ runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
@@ -984,27 +939,37 @@ NUGET
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
- System.AppContext (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.AppContext (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
- System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Buffers (4.5) - restriction: >= netcoreapp2.1
+ System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Collections.Concurrent (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections.Concurrent (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Collections.Immutable (1.5) - restriction: >= netcoreapp2.1
System.Collections.NonGeneric (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1030,21 +995,24 @@ NUGET
System.ComponentModel.Primitives (4.3) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
- System.Console (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Console (4.3.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Data.SqlClient (4.5.1) - restriction: >= netcoreapp2.1
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
+ Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
System.Diagnostics.Contracts (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Diagnostics.DiagnosticSource (4.5) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (4.5.1) - restriction: >= netcoreapp2.1
System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1089,7 +1057,10 @@ NUGET
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tools (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.TraceSource (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1100,7 +1071,10 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tracing (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Dynamic.Runtime (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1116,11 +1090,11 @@ NUGET
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization.Calendars (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1132,30 +1106,34 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IdentityModel.Tokens.Jwt (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.JsonWebTokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
+ System.IdentityModel.Tokens.Jwt (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.JsonWebTokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
System.Interactive.Async (3.2) - restriction: >= netcoreapp2.1
- System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Compression (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1164,36 +1142,33 @@ NUGET
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Pipelines (4.5) - restriction: >= netstandard2.0
- System.Buffers (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Pipelines (4.5.2) - restriction: >= netstandard2.0
+ System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq.Expressions (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Linq.Queryable (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1203,19 +1178,47 @@ NUGET
System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.1) - restriction: >= netstandard2.0
- System.Net.Http (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Primitives (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Sockets (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.WebSockets.WebSocketProtocol (4.5.1) - restriction: >= netcoreapp2.1
+ System.Memory (4.5.1) - restriction: >= netcoreapp2.1
+ System.Net.Http (4.3.4) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Net.Primitives (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Net.WebSockets.WebSocketProtocol (4.5.2) - restriction: >= netcoreapp2.1
System.Numerics.Vectors (4.5) - restriction: >= netcoreapp2.1
- System.ObjectModel (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.ObjectModel (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Private.DataContractSerialization (4.3) - restriction: >= netcoreapp1.0
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1242,63 +1245,73 @@ NUGET
System.Xml.XDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Xml.XmlDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection.Metadata (1.6) - restriction: >= netcoreapp1.0
- System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (4.5) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net45) (>= net47)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.CompilerServices.Unsafe (4.5.1) - restriction: >= netcoreapp2.1
- System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: >= netcoreapp2.1
+ System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.Handles (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (>= uap10.0)
+ System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1)
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.Runtime.Loader (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Numerics (4.3) - restriction: >= netcoreapp2.1
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime.Serialization.Json (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Private.DataContractSerialization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1324,23 +1337,23 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Cng (4.5) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Cng (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Csp (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1354,7 +1367,7 @@ NUGET
System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Encoding (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1367,10 +1380,10 @@ NUGET
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Pkcs (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.OpenSsl (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Pkcs (4.5.1) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netcoreapp2.1
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Primitives (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1378,32 +1391,32 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.X509Certificates (4.3.2) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Security.Cryptography.Xml (4.5) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Pkcs (>= 4.5) - restriction: && (< net461) (>= netstandard2.0)
System.Security.Permissions (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
@@ -1411,27 +1424,37 @@ NUGET
System.Security.AccessControl (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
System.Security.Principal (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Principal.Windows (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Principal.Windows (4.5.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encoding.CodePages (4.5) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios)) (>= net461) (>= netcoreapp2.0)
+ System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encodings.Web (4.5) - restriction: >= netcoreapp2.1
System.Text.RegularExpressions (4.3) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Channels (4.5) - restriction: >= netcoreapp2.1
- System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (< net45) (>= net461)) (>= netstandard2.0)
+ System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.Threading.Tasks.Parallel (4.3) - restriction: >= netcoreapp2.1
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1446,9 +1469,8 @@ NUGET
System.Threading.ThreadPool (4.3) - restriction: >= netcoreapp1.0
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
System.ValueTuple (4.5) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.6) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1)
- System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1464,8 +1486,20 @@ NUGET
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Xml.XDocument (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0)
+ System.Xml.XDocument (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1525,15 +1559,20 @@ NUGET
System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- TaskBuilder.fs (2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (2.1) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (>= 4.1.17) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.6)
- System.ValueTuple (>= 4.3.1) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ Utf8Json (1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
xunit (2.4)
xunit.analyzers (>= 0.10)
xunit.assert (2.4)
xunit.core (2.4)
- xunit.abstractions (2.0.2) - restriction: >= netstandard1.1
+ xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
xunit.analyzers (0.10)
xunit.assert (2.4)
diff --git a/src/content/None/src/AppNamePlaceholder/AppNamePlaceholder.fsproj b/src/content/None/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
index ef1390b..32a5f42 100644
--- a/src/content/None/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
+++ b/src/content/None/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
@@ -10,7 +10,8 @@
-
+
+
diff --git a/src/content/None/src/AppNamePlaceholder/HttpHandlers.fs b/src/content/None/src/AppNamePlaceholder/HttpHandlers.fs
index cbe873a..ff98fc3 100644
--- a/src/content/None/src/AppNamePlaceholder/HttpHandlers.fs
+++ b/src/content/None/src/AppNamePlaceholder/HttpHandlers.fs
@@ -3,6 +3,7 @@ namespace AppNamePlaceholder
module HttpHandlers =
open Microsoft.AspNetCore.Http
+ open FSharp.Control.Tasks.V2.ContextInsensitive
open Giraffe
open AppNamePlaceholder.Models
diff --git a/src/content/Razor/paket.lock b/src/content/Razor/paket.lock
index b6b3bba..e3261a6 100644
--- a/src/content/Razor/paket.lock
+++ b/src/content/Razor/paket.lock
@@ -2,37 +2,40 @@ STORAGE: NONE
NUGET
remote: https://api.nuget.org/v3/index.json
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe (2.0)
+ Giraffe (3.2)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.ResponseCaching (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Newtonsoft.Json (>= 11.0.2) - restriction: || (>= net461) (>= netstandard2.0)
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net461
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= net461) (>= netstandard2.0)
- TaskBuilder.fs (>= 2.0) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe.Razor (1.3)
+ TaskBuilder.fs (>= 2.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Utf8Json (>= 1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
+ Giraffe.Razor (2.0)
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
- Giraffe (>= 2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ Giraffe (>= 3.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Antiforgery (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc (>= 2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.FileProviders.Physical (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net461
+ TaskBuilder.fs (>= 2.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNet.WebApi.Client (5.2.6) - restriction: >= netcoreapp2.1
Newtonsoft.Json (>= 10.0.1) - restriction: && (< net45) (>= netstandard2.0)
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.AspNetCore (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Diagnostics (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.HostFiltering (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.CommandLine (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.EnvironmentVariables (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.FileExtensions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -48,26 +51,26 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.ObjectPool (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.App (2.1.2)
+ Microsoft.AspNetCore.App (2.1.5)
Microsoft.AspNet.WebApi.Client (>= 5.2.6 < 5.3) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Google (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.CookiePolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Facebook (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Google (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.JwtBearer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.Twitter (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.WsFederation (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.Internal (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -84,41 +87,41 @@ NUGET
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpOverrides (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.HttpsPolicy (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity.UI (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity.UI (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.MiddlewareAnalysis (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.NodeServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Owin (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.ResponseCompression (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -126,34 +129,34 @@ NUGET
Microsoft.AspNetCore.Routing (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Server.HttpSys (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Session (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4 < 1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.SpaServices.Extensions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.StaticFiles (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebSockets (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.WebUtilities (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.CodeAnalysis.Razor (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.InMemory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Tools (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Memory (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.SqlServer (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.InMemory (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.SqlServer (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (>= 2.1.4 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Memory (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.SqlServer (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Configuration.Binder (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -176,8 +179,8 @@ NUGET
Microsoft.Extensions.Hosting (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Hosting.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Http (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Stores (>= 2.1.2 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Localization.Abstractions (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Logging (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
@@ -193,7 +196,8 @@ NUGET
Microsoft.Extensions.Primitives (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.WebEncoders (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1 < 2.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -205,43 +209,43 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Cookies (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Cookies (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authentication.Core (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Facebook (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Google (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.JwtBearer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Facebook (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Google (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.JwtBearer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OAuth (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.MicrosoftAccount (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OAuth (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.OpenIdConnect (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.Twitter (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authentication.WsFederation (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Authentication (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.Twitter (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication.OAuth (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Authentication.WsFederation (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.IdentityModel.Protocols.WsFederation (>= 5.2) - restriction: >= netstandard2.0
System.IdentityModel.Tokens.Jwt (>= 5.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Authorization (2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization.Policy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization.Policy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Connections.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Connections.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.CookiePolicy (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.CookiePolicy (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
@@ -319,15 +323,15 @@ NUGET
Microsoft.AspNetCore.Http.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Features (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Http.Connections.Common (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebSockets (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Http.Connections.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
@@ -348,21 +352,21 @@ NUGET
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Cookies (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.EntityFrameworkCore (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Identity.UI (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Identity (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Identity.UI (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Identity (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.StaticFiles (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Embedded (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.JsonPatch (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
@@ -378,87 +382,87 @@ NUGET
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc (2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.ApiExplorer (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Cors (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Design (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Analyzers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ApiExplorer (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Authorization.Policy (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyModel (>= 2.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileProviders.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Cors (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Cors (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cors (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Formatters.Json (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.JsonPatch (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Localization (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Xml (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Localization (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.Razor.Extensions (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.ViewFeatures (>= 2.1.3) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.Extensions.FileProviders.Composite (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeAnalysis.Razor (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.AspNetCore.Mvc.Razor.Extensions (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.AspNetCore.Mvc.Razor.ViewCompilation (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
Microsoft.AspNetCore.Mvc.RazorPages (>= 2.1.1) - restriction: || (>= net461) (>= netcoreapp2.0)
- Microsoft.AspNetCore.Mvc.RazorPages (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.TagHelpers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Mvc.Razor (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.RazorPages (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.TagHelpers (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.Razor (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Razor.Runtime (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Routing.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.FileSystemGlobbing (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Mvc.ViewFeatures (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Antiforgery (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Diagnostics.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.DataAnnotations (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Mvc.Formatters.Json (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.WebEncoders (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json.Bson (>= 1.0.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.NodeServices (2.1.1) - restriction: >= netcoreapp2.1
@@ -467,14 +471,14 @@ NUGET
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Owin (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor.Design (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Runtime (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Design (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Runtime (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Html.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Razor (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.ResponseCaching (2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http.Extensions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.ResponseCaching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -506,7 +510,7 @@ NUGET
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Win32.Registry (>= 4.5) - restriction: >= netstandard2.0
System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.IISIntegration (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.IISIntegration (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authentication.Core (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Http (>= 2.1.1) - restriction: >= netstandard2.0
@@ -515,19 +519,19 @@ NUGET
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- System.IO.Pipelines (>= 4.5) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 4.5.2) - restriction: >= netstandard2.0
System.Memory (>= 4.5.1) - restriction: >= netstandard2.0
System.Numerics.Vectors (>= 4.5) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
- System.Security.Principal.Windows (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel (2.1.2) - restriction: >= netcoreapp2.1
+ System.Runtime.CompilerServices.Unsafe (>= 4.5.2) - restriction: >= netstandard2.0
+ System.Security.Principal.Windows (>= 4.5.1) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Https (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.AspNetCore.WebUtilities (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration.Binder (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
@@ -538,14 +542,14 @@ NUGET
System.Runtime.CompilerServices.Unsafe (>= 4.5.1) - restriction: >= netstandard2.0
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netstandard2.0
System.Threading.Tasks.Extensions (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Https (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Https (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Server.Kestrel.Core (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Hosting.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.AspNetCore.Session (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.DataProtection (>= 2.1.1) - restriction: >= netstandard2.0
@@ -553,24 +557,24 @@ NUGET
Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Http.Connections (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Http.Connections (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Core (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Connections.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Core (1.0.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Core (1.0.4) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Authorization (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (>= 1.0.4) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
System.Threading.Channels (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.2) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.SignalR.Common (>= 1.0.2) - restriction: >= netstandard2.0
+ Microsoft.AspNetCore.SignalR.Protocols.Json (1.0.4) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.SignalR.Common (>= 1.0.4) - restriction: >= netstandard2.0
Newtonsoft.Json (>= 11.0.2) - restriction: >= netstandard2.0
Microsoft.AspNetCore.SpaServices (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Mvc.TagHelpers (>= 2.1.1) - restriction: >= netstandard2.0
@@ -597,7 +601,7 @@ NUGET
Microsoft.AspNetCore.WebUtilities (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Net.Http.Headers (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (2.6.1) - restriction: >= netcoreapp2.1
+ Microsoft.CodeAnalysis.Analyzers (2.6.2) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Analyzers (>= 2.6.1) - restriction: >= netstandard1.3
System.AppContext (>= 4.3) - restriction: >= netstandard1.3
@@ -641,11 +645,11 @@ NUGET
System.Xml.XPath.XDocument (>= 4.3) - restriction: >= netstandard1.3
Microsoft.CodeAnalysis.CSharp (2.9) - restriction: >= netcoreapp2.1
Microsoft.CodeAnalysis.Common (2.9)
- Microsoft.CodeAnalysis.Razor (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.AspNetCore.Razor.Language (>= 2.1.1) - restriction: || (>= net46) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Razor (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.AspNetCore.Razor.Language (>= 2.1.2) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.Common (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
Microsoft.CodeAnalysis.CSharp (>= 2.8) - restriction: || (>= net46) (>= netstandard2.0)
- Microsoft.CodeCoverage (15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.CodeCoverage (15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
Microsoft.CSharp (4.5) - restriction: >= netcoreapp2.1
Microsoft.DotNet.PlatformAbstractions (2.1) - restriction: >= netcoreapp2.1
System.AppContext (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -656,39 +660,39 @@ NUGET
System.Runtime.Extensions (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices (>= 4.1) - restriction: && (< net45) (>= netstandard1.3)
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: || (>= net45) (>= netstandard1.3)
- Microsoft.EntityFrameworkCore (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 2.1.4) - restriction: >= netstandard2.0
Microsoft.Extensions.Caching.Memory (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Remotion.Linq (>= 2.2) - restriction: >= netstandard2.0
System.Collections.Immutable (>= 1.5) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- System.Diagnostics.DiagnosticSource (>= 4.5) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 4.5.1) - restriction: >= netstandard2.0
System.Interactive.Async (>= 3.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Analyzers (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Abstractions (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Analyzers (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (2.1.4) - restriction: >= netcoreapp2.1
Microsoft.CSharp (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.EntityFrameworkCore.InMemory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Relational (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Relational (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: || (>= net461) (>= netstandard2.0)
+ Microsoft.EntityFrameworkCore.InMemory (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.Relational (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore.SqlServer (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Relational (>= 2.1.4) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore.Tools (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.EntityFrameworkCore.Design (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Abstractions (2.1.1) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Tools (2.1.4) - restriction: >= netcoreapp2.1
+ Microsoft.EntityFrameworkCore.Design (>= 2.1.4) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Abstractions (2.1.2) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.Memory (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.Memory (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Caching.SqlServer (2.1.1) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Caching.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Caching.SqlServer (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Caching.Abstractions (>= 2.1.2) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Data.SqlClient (>= 4.5.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Configuration (2.1.1) - restriction: >= netcoreapp2.1
@@ -756,13 +760,13 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Core (2.1.2) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (2.1.3) - restriction: >= netcoreapp2.1
Microsoft.AspNetCore.Cryptography.KeyDerivation (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.Extensions.Identity.Stores (2.1.2) - restriction: >= netcoreapp2.1
- Microsoft.Extensions.Identity.Core (>= 2.1.2) - restriction: >= netstandard2.0
+ Microsoft.Extensions.Identity.Stores (2.1.3) - restriction: >= netcoreapp2.1
+ Microsoft.Extensions.Identity.Core (>= 2.1.3) - restriction: >= netstandard2.0
Microsoft.Extensions.Logging (>= 2.1.1) - restriction: >= netstandard2.0
System.ComponentModel.Annotations (>= 4.5) - restriction: >= netstandard2.0
Microsoft.Extensions.Localization (2.1.1) - restriction: >= netcoreapp2.1
@@ -807,72 +811,64 @@ NUGET
Microsoft.Extensions.DependencyInjection.Abstractions (>= 2.1.1) - restriction: >= netstandard2.0
Microsoft.Extensions.Options (>= 2.1.1) - restriction: >= netstandard2.0
System.Text.Encodings.Web (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.IdentityModel.JsonWebTokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Logging (5.2.4) - restriction: >= netcoreapp2.1
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Globalization (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IO.FileSystem (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Collections.Specialized (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Contracts (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Net.Http (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Dynamic.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.IdentityModel.Tokens.Jwt (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Protocols.WsFederation (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Protocols (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens.Saml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- System.Xml.XmlDocument (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Logging (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- System.Collections (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Diagnostics.Tools (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Reflection (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Runtime.Serialization.Xml (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Claims (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Text.RegularExpressions (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- System.Threading (>= 4.3) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Tokens.Saml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Xml (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Microsoft.IdentityModel.Xml (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
+ Microsoft.IdentityModel.JsonWebTokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Logging (5.3) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections.Specialized (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Contracts (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Net.Http (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.IdentityModel.Tokens.Jwt (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Protocols.WsFederation (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Protocols (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens.Saml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Logging (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Runtime.Serialization.Xml (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Claims (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0))
+ Microsoft.IdentityModel.Tokens.Saml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Xml (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
Microsoft.Net.Http.Headers (2.1.1) - restriction: >= netcoreapp2.1
Microsoft.Extensions.Primitives (>= 2.1.1) - restriction: >= netstandard2.0
System.Buffers (>= 4.5) - restriction: >= netstandard2.0
- Microsoft.NET.Test.Sdk (15.8)
- Microsoft.CodeCoverage (>= 15.8) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.TestPlatform.TestHost (>= 15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NET.Test.Sdk (15.9)
+ Microsoft.CodeCoverage (>= 15.9) - restriction: || (>= net45) (>= netcoreapp1.0)
+ Microsoft.TestPlatform.TestHost (>= 15.9) - restriction: >= netcoreapp1.0
Newtonsoft.Json (>= 9.0.1) - restriction: >= uap10.0
System.ComponentModel.Primitives (>= 4.1) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (>= 4.1) - restriction: >= uap10.0
System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: >= uap10.0
- Microsoft.NETCore.Platforms (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= wp8))
- Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.TestPlatform.ObjectModel (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.NETCore.Platforms (2.1.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (&& (>= net461) (< netstandard1.5) (>= netstandard1.6) (>= uap10.0)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.1)) (&& (>= net461) (>= netstandard1.6) (>= wp8)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= wp8))
+ Microsoft.NETCore.Targets (2.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< 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) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.2)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
+ Microsoft.TestPlatform.ObjectModel (15.9) - restriction: >= netcoreapp1.0
NETStandard.Library (>= 1.6) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.EventBasedAsync (>= 4.0.11) - restriction: && (< net451) (>= netstandard1.5)
System.ComponentModel.TypeConverter (>= 4.1) - restriction: || (&& (< net451) (>= netstandard1.4) (< netstandard1.5)) (&& (< net451) (>= netstandard1.5))
@@ -887,62 +883,19 @@ NUGET
System.Runtime.Serialization.Primitives (>= 4.1.1) - restriction: && (< net451) (>= netstandard1.5)
System.Threading.Thread (>= 4.0) - restriction: && (< net451) (>= netstandard1.5)
System.Xml.XPath.XmlDocument (>= 4.0.1) - restriction: && (< net451) (>= netstandard1.5)
- Microsoft.TestPlatform.TestHost (15.8) - restriction: >= netcoreapp1.0
+ Microsoft.TestPlatform.TestHost (15.9) - restriction: >= netcoreapp1.0
Microsoft.Extensions.DependencyModel (>= 1.0.3) - restriction: >= netcoreapp1.0
- Microsoft.TestPlatform.ObjectModel (>= 15.8) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
+ Microsoft.TestPlatform.ObjectModel (>= 15.9) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
Newtonsoft.Json (>= 9.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ Microsoft.Win32.Primitives (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
- System.Security.AccessControl (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (>= uap10.0) (>= wp8)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.AppContext (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Collections (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Console (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tools (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Globalization.Calendars (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.Compression.ZipFile (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Linq (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Http (>= 4.3.2) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Net.Sockets (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.ObjectModel (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Runtime.Numerics (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Text.RegularExpressions (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Threading.Timer (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.ReaderWriter (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (< netstandard1.4)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
- System.Xml.XDocument (>= 4.3) - restriction: || (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81) (< wp8)) (&& (>= uap10.0) (< uap10.1))
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.3)
@@ -959,25 +912,28 @@ NUGET
System.Runtime (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Runtime.Extensions (>= 4.1) - restriction: && (< net35) (>= netstandard1.0)
System.Threading (>= 4.0.11) - restriction: && (< net35) (>= netstandard1.0)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.native.System (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.native.System (4.3.1) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
runtime.native.System.Data.SqlClient.sni (4.5) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (>= 4.4)
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (>= 4.4)
- runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.IO.Compression (4.3.2) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Net.Http (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1)
+ Microsoft.NETCore.Targets (>= 1.1.3)
+ runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
@@ -993,27 +949,37 @@ NUGET
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: >= netcoreapp2.1
+ runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
+ runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: >= netcoreapp2.1
runtime.win-arm64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x64.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
runtime.win-x86.runtime.native.System.Data.SqlClient.sni (4.4) - restriction: >= netcoreapp2.1
- System.AppContext (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.AppContext (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Buffers (4.5) - restriction: || (&& (>= monoandroid) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net46) (>= netstandard2.0)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0)) (&& (>= netstandard2.0) (>= xamarinios)) (&& (>= netstandard2.0) (>= xamarinmac)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos))
- System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Buffers (4.5) - restriction: >= netcoreapp2.1
+ System.Collections (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Collections.Concurrent (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections.Concurrent (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Collections.Immutable (1.5) - restriction: >= netcoreapp2.1
System.Collections.NonGeneric (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1039,21 +1005,24 @@ NUGET
System.ComponentModel.Primitives (4.3) - restriction: >= uap10.0
System.ComponentModel.TypeConverter (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
- System.Console (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Console (4.3.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Data.SqlClient (4.5.1) - restriction: >= netcoreapp2.1
- Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
- System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0)) (>= netcoreapp2.0)
+ Microsoft.Win32.Registry (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ runtime.native.System.Data.SqlClient.sni (>= 4.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net451) (>= netstandard1.3) (< netstandard2.0) (< win81) (< wpa81) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
+ System.Text.Encoding.CodePages (>= 4.5) - restriction: || (&& (< net451) (>= netstandard2.0) (< xamarinios)) (>= netcoreapp2.0)
System.Diagnostics.Contracts (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Diagnostics.DiagnosticSource (4.5) - restriction: >= netcoreapp2.1
+ System.Diagnostics.Debug (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (4.5.1) - restriction: >= netcoreapp2.1
System.Diagnostics.FileVersionInfo (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1098,7 +1067,10 @@ NUGET
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tools (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tools (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.TraceSource (4.3) - restriction: >= netcoreapp1.0
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1109,7 +1081,10 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Diagnostics.Tracing (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Dynamic.Runtime (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1125,11 +1100,11 @@ NUGET
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Globalization.Calendars (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Globalization.Calendars (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1141,30 +1116,34 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IdentityModel.Tokens.Jwt (5.2.4) - restriction: >= netcoreapp2.1
- Microsoft.IdentityModel.JsonWebTokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- Microsoft.IdentityModel.Tokens (>= 5.2.4) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
- NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.4)
- Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4)) (>= net451)
+ System.IdentityModel.Tokens.Jwt (5.3) - restriction: >= netcoreapp2.1
+ Microsoft.IdentityModel.JsonWebTokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Microsoft.IdentityModel.Tokens (>= 5.3) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
+ Newtonsoft.Json (>= 10.0.1) - restriction: || (&& (>= net45) (< net451) (< netstandard1.4)) (&& (< net45) (>= netstandard1.4) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net451) (< netstandard1.4)) (>= net461)
System.Interactive.Async (3.2) - restriction: >= netcoreapp2.1
- System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.IO.Compression (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.IO.Compression.ZipFile (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Buffers (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Compression (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Compression (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.IO.Compression (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Buffers (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1173,36 +1152,33 @@ NUGET
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.FileSystem.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Pipelines (4.5) - restriction: >= netstandard2.0
- System.Buffers (>= 4.4) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5) - restriction: || (>= monoandroid) (>= monotouch) (>= net46) (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= netstandard1.3) (< netstandard2.0)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.IO.Pipelines (4.5.2) - restriction: >= netstandard2.0
+ System.Linq (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq.Expressions (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq.Expressions (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Linq (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.ObjectModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.TypeExtensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Linq.Queryable (4.3) - restriction: >= netcoreapp2.1
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1212,19 +1188,47 @@ NUGET
System.Reflection.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.1) - restriction: >= netstandard2.0
- System.Net.Http (4.3.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Primitives (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Net.Sockets (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.WebSockets.WebSocketProtocol (4.5.1) - restriction: >= netcoreapp2.1
+ System.Memory (4.5.1) - restriction: >= netcoreapp2.1
+ System.Net.Http (4.3.4) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Diagnostics.Tracing (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Net.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
+ System.Net.Primitives (4.3) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Net.WebSockets.WebSocketProtocol (4.5.2) - restriction: >= netcoreapp2.1
System.Numerics.Vectors (4.5) - restriction: >= netcoreapp2.1
- System.ObjectModel (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.ObjectModel (4.3) - restriction: >= netcoreapp2.1
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Private.DataContractSerialization (4.3) - restriction: >= netcoreapp1.0
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1251,63 +1255,73 @@ NUGET
System.Xml.XDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Xml.XmlDocument (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XmlSerializer (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.ILGeneration (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Emit.Lightweight (4.3) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp1.0)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< wp8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection.Metadata (1.6) - restriction: >= netcoreapp1.0
- System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461)) (&& (< net45) (>= net47)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.TypeExtensions (4.5) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Reflection.TypeExtensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp1.1)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.6)) (&& (< net45) (>= net461) (< netstandard2.0)) (&& (< net45) (>= net47)) (&& (>= net461) (>= netcoreapp1.1)) (>= netcoreapp1.0) (&& (>= netcoreapp1.1) (>= netstandard2.0))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.CompilerServices.Unsafe (4.5.1) - restriction: >= netcoreapp2.1
- System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (4.5.2) - restriction: >= netcoreapp2.1
+ System.Runtime.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.Handles (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Handles (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (>= uap10.0))
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (< netstandard1.0) (>= netstandard1.6)) (&& (>= net461) (< netstandard1.3) (>= netstandard1.6) (>= wpa81)) (>= netcoreapp1.0) (&& (< netstandard1.0) (>= netstandard2.0) (< portable-net45+win8)) (&& (< netstandard1.0) (>= netstandard2.0) (>= win8)) (&& (< netstandard1.0) (>= netstandard2.0) (< win8)) (&& (< netstandard1.3) (>= netstandard2.0) (< win8) (>= wpa81)) (>= uap10.0)
+ System.Runtime.InteropServices (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Reflection.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= net462) (>= netcoreapp1.1)
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
System.Runtime.Loader (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Numerics (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.Numerics (4.3) - restriction: >= netcoreapp2.1
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime.Serialization.Json (4.3) - restriction: >= netcoreapp1.0
System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Private.DataContractSerialization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1333,23 +1347,23 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (>= net463)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Cng (4.5) - restriction: || (&& (>= dnxcore50) (>= net461) (>= netstandard1.6)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System.Security.Cryptography.Apple (>= 4.3.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< netstandard1.6)) (>= net463)
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Cng (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Csp (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1363,7 +1377,7 @@ NUGET
System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Encoding (4.3) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1376,10 +1390,10 @@ NUGET
System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.OpenSsl (4.5) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Security.Cryptography.Pkcs (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.OpenSsl (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Cryptography.Pkcs (4.5.1) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Cng (>= 4.5) - restriction: >= netcoreapp2.1
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Security.Cryptography.Primitives (4.3) - restriction: >= netcoreapp2.1
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1387,32 +1401,32 @@ NUGET
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (>= net46) (< netstandard1.4)) (>= net461)
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.X509Certificates (4.3.2) - restriction: >= netcoreapp2.1
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization.Calendars (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Handles (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.InteropServices (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.Numerics (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.Cng (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Csp (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard1.4)) (>= net461)
+ System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
+ System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Security.Cryptography.Xml (4.5) - restriction: >= netcoreapp2.1
System.Security.Cryptography.Pkcs (>= 4.5) - restriction: && (< net461) (>= netstandard2.0)
System.Security.Permissions (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
@@ -1420,27 +1434,37 @@ NUGET
System.Security.AccessControl (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
System.Security.Principal (4.3) - restriction: >= netcoreapp2.1
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Principal.Windows (4.5) - restriction: >= netcoreapp2.1
+ System.Security.Principal.Windows (4.5.1) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Text.Encoding (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encoding.CodePages (4.5) - restriction: >= netcoreapp2.1
Microsoft.NETCore.Platforms (>= 2.0) - restriction: >= netcoreapp2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Runtime.CompilerServices.Unsafe (>= 4.5) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios)) (>= net461) (>= netcoreapp2.0)
+ System.Text.Encoding.Extensions (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Text.Encodings.Web (4.5) - restriction: >= netcoreapp2.1
System.Text.RegularExpressions (4.3) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0)
- System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
- System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= netcoreapp1.1)
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Channels (4.5) - restriction: >= netcoreapp2.1
- System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (< net45) (>= net461)) (>= netstandard2.0)
+ System.Threading.Tasks (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461) (< netstandard1.3)) (&& (< net45) (>= net461) (>= netstandard1.5)) (&& (< net45) (>= net461) (< netstandard1.5)) (&& (< net45) (>= net461) (>= netstandard1.6)) (>= netcoreapp1.0)
+ Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ Microsoft.NETCore.Targets (>= 1.1) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Threading.Tasks.Extensions (4.5.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0)) (&& (>= net461) (< netstandard2.0)) (>= net47) (>= netcoreapp2.1)
System.Threading.Tasks.Parallel (4.3) - restriction: >= netcoreapp2.1
System.Collections.Concurrent (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1455,9 +1479,8 @@ NUGET
System.Threading.ThreadPool (4.3) - restriction: >= netcoreapp1.0
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Timer (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (&& (>= netstandard2.0) (>= uap10.0))
System.ValueTuple (4.5) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.6) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1)
- System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
+ System.Xml.ReaderWriter (4.3.1) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
@@ -1473,8 +1496,20 @@ NUGET
System.Text.RegularExpressions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading.Tasks (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
System.Threading.Tasks.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Xml.XDocument (4.3) - restriction: || (&& (< net45) (>= net461) (< netstandard1.2) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.3) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.4) (>= netstandard1.6)) (&& (< net45) (>= net461) (< netstandard1.5) (>= netstandard1.6)) (&& (< net45) (>= net461) (>= netstandard1.6) (< netstandard2.0)) (&& (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (>= net461) (>= netstandard1.6) (< portable-net45+win8+wpa81)) (&& (>= net461) (>= netstandard1.6) (>= uap10.0)) (>= netcoreapp1.0) (&& (>= netstandard2.0) (< portable-net45+win8+wpa81)) (&& (>= netstandard2.0) (>= uap10.0))
- System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< net45) (>= net461)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81)) (>= netcoreapp1.0)
+ System.Xml.XDocument (4.3) - restriction: >= netcoreapp1.0
+ System.Collections (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Debug (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Diagnostics.Tools (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Globalization (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Reflection (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Runtime.Extensions (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Threading (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Xml.ReaderWriter (>= 4.3) - restriction: || (>= dnxcore50) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.Xml.XmlDocument (4.3) - restriction: || (&& (>= dnxcore50) (>= net461)) (&& (>= dnxcore50) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios)) (&& (< net45) (>= net461)) (>= netcoreapp1.0)
System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
@@ -1534,15 +1569,20 @@ NUGET
System.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
System.Xml.XPath (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- TaskBuilder.fs (2.0) - restriction: || (>= net461) (>= netstandard2.0)
+ TaskBuilder.fs (2.1) - restriction: || (>= net461) (>= netstandard2.0)
FSharp.Core (>= 4.1.17) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
NETStandard.Library (>= 1.6.1) - restriction: && (< net45) (>= netstandard1.6)
- System.ValueTuple (>= 4.3.1) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< net46) (< netstandard1.6)) (&& (< net45) (>= netstandard1.6)) (&& (>= net46) (< netstandard1.6)) (>= net47)
+ Utf8Json (1.3.7) - restriction: || (>= net461) (>= netstandard2.0)
+ System.Reflection.Emit (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
+ System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
xunit (2.4)
xunit.analyzers (>= 0.10)
xunit.assert (2.4)
xunit.core (2.4)
- xunit.abstractions (2.0.2) - restriction: >= netstandard1.1
+ xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
xunit.analyzers (0.10)
xunit.assert (2.4)
diff --git a/src/content/Razor/src/AppNamePlaceholder/AppNamePlaceholder.fsproj b/src/content/Razor/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
index b7332f3..d323c8c 100644
--- a/src/content/Razor/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
+++ b/src/content/Razor/src/AppNamePlaceholder/AppNamePlaceholder.fsproj
@@ -10,8 +10,9 @@
-
-
+
+
+
diff --git a/src/content/Razor/src/AppNamePlaceholder/Program.fs b/src/content/Razor/src/AppNamePlaceholder/Program.fs
index bcad232..0ee5213 100644
--- a/src/content/Razor/src/AppNamePlaceholder/Program.fs
+++ b/src/content/Razor/src/AppNamePlaceholder/Program.fs
@@ -18,7 +18,7 @@ open AppNamePlaceholder.Models
let indexHandler (name : string) =
let greetings = sprintf "Hello %s, from Giraffe!" name
let model = { Text = greetings }
- razorHtmlView "Index" model
+ razorHtmlView "Index" (Some model) None
let webApp =
choose [
diff --git a/src/giraffe-template.nuspec b/src/giraffe-template.nuspec
index 21ac00a..7e99f66 100644
--- a/src/giraffe-template.nuspec
+++ b/src/giraffe-template.nuspec
@@ -2,7 +2,7 @@
giraffe-template
- 0.18.0
+ 0.19.0
Giraffe Template for dotnet-new
A dotnet-new template for Giraffe web applications.
A dotnet-new template for Giraffe web applications.