diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index ee82c57..3acf436 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -9,13 +9,13 @@
]
},
"dotnet-reportgenerator-globaltool": {
- "version": "4.2.15",
+ "version": "5.4.1",
"commands": [
"reportgenerator"
]
},
"paket": {
- "version": "6.0.13",
+ "version": "10.3.1",
"commands": [
"paket"
]
@@ -32,10 +32,10 @@
"fsharp-analyzers"
]
},
- "fantomas-tool": {
- "version": "4.5.6",
+ "fantomas": {
+ "version": "6.3.15",
"commands": [
- "fantomas"
+ "fantomas"
]
}
}
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 7d75080..8345f2c 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,16 +1,16 @@
-FROM debian:buster-slim
+FROM debian:bookworm-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
\
- # .NET Core dependencies
+ # .NET dependencies
libc6 \
- libgcc1 \
+ libgcc-s1 \
libgssapi-krb5-2 \
- libicu63 \
- libssl1.1 \
+ libicu72 \
+ libssl3 \
libstdc++6 \
zlib1g \
curl \
@@ -21,10 +21,10 @@ RUN apt-get update \
ENV \
- # Enable detection of running in a container
DOTNET_RUNNING_IN_CONTAINER=true \
DOTNET_INSTALL_DIR=/usr/share/dotnet/ \
- DOTNET_ROOT=/usr/share/dotnet/
+ DOTNET_ROOT=/usr/share/dotnet/ \
+ DOTNET_NOLOGO=1
COPY ./.devcontainer/install-dotnets.sh global.json* .
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index d15d754..24fe179 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -6,11 +6,15 @@
"forwardPorts": [
0
],
- "extensions": [
- "ionide.ionide-fsharp",
- "ms-dotnettools.csharp",
- "editorconfig.editorconfig",
- "ionide.ionide-paket",
- "ionide.ionide-fake"
- ]
-}
\ No newline at end of file
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "ionide.ionide-fsharp",
+ "ms-dotnettools.csharp",
+ "editorconfig.editorconfig",
+ "ionide.ionide-paket",
+ "ionide.ionide-fake"
+ ]
+ }
+ }
+}
diff --git a/.devcontainer/install-dotnets.sh b/.devcontainer/install-dotnets.sh
index ed590bf..b6d87b8 100644
--- a/.devcontainer/install-dotnets.sh
+++ b/.devcontainer/install-dotnets.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# downloads installer script https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script
+# downloads installer script https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script
curl -SL --output dotnet-install.sh https://dot.net/v1/dotnet-install.sh
@@ -10,14 +10,3 @@ if test -f "$FILE"; then
echo "installing dotnet via $FILE"
/bin/bash dotnet-install.sh --verbose --jsonfile $FILE
fi
-
-
-# Add additional versions if required
-DOTNET_VERSIONS=(
- # 'latest'
- '5.0.100'
-)
-for version in ${DOTNET_VERSIONS[@]}; do
- echo "installing dotnet $version"
- /bin/bash dotnet-install.sh --verbose --version $version
-done
diff --git a/.devcontainer/settings.vscode.json b/.devcontainer/settings.vscode.json
index f708a66..d009c87 100644
--- a/.devcontainer/settings.vscode.json
+++ b/.devcontainer/settings.vscode.json
@@ -1,7 +1,6 @@
{
- "FSharp.fsacRuntime":"netcore",
"FSharp.enableAnalyzers": true,
"FSharp.analyzersPath": [
"./packages/analyzers"
]
-}
+}
diff --git a/.editorconfig b/.editorconfig
index 304fc05..6b67808 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -17,6 +17,16 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
+# Fantomas settings (pinned to fantomas 6 defaults to prevent future mass reformatting)
+[*.{fs,fsi,fsx}]
+max_line_length = 120
+fsharp_max_if_then_else_short_width = 60
+fsharp_max_infix_operator_expression = 80
+fsharp_max_record_width = 40
+fsharp_max_array_or_list_width = 80
+fsharp_max_value_binding_width = 80
+fsharp_max_function_binding_width = 40
+
[paket.*]
trim_trailing_whitespace = true
indent_size = 2
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f7b79e1..96e3847 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,12 +14,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
# Not specifying a version will attempt to install via global.json
- - name: Setup .NET Core SDK
- uses: actions/setup-dotnet@v1.9.0
+ - name: Setup .NET SDK
+ uses: actions/setup-dotnet@v4
with:
- dotnet-version: '6.x'
+ dotnet-version: '10.x'
- name: Build
if: runner.os != 'Windows'
@@ -27,13 +27,9 @@ jobs:
chmod +x ./build.sh
./build.sh
env:
- # Work around https://github.com/actions/setup-dotnet/issues/29
- #DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
CI: true
- name: Build
if: runner.os == 'Windows'
run: ./build.cmd
env:
- # Work around https://github.com/actions/setup-dotnet/issues/29
- #DOTNET_ROOT: ${{ runner.tool_cache }}/dncs/${{ matrix.dotnet }}/x64
CI: true
diff --git a/.paket/Paket.Restore.targets b/.paket/Paket.Restore.targets
index 4deb15b..8f48b93 100644
--- a/.paket/Paket.Restore.targets
+++ b/.paket/Paket.Restore.targets
@@ -1,322 +1,339 @@
-
-
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
- $(MSBuildVersion)
- 15.0.0
- false
- true
-
- true
- $(MSBuildThisFileDirectory)
- $(MSBuildThisFileDirectory)..\
- $(PaketRootPath)paket-files\paket.restore.cached
- $(PaketRootPath)paket.lock
- classic
- proj
- assembly
- native
- /Library/Frameworks/Mono.framework/Commands/mono
- mono
-
-
- $(PaketRootPath)paket.bootstrapper.exe
- $(PaketToolsPath)paket.bootstrapper.exe
- $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\
-
- "$(PaketBootStrapperExePath)"
- $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"
-
-
-
-
- true
- true
-
-
- True
-
-
- False
-
- $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/'))
-
-
-
-
-
-
-
-
- $(PaketRootPath)paket
- $(PaketToolsPath)paket
-
-
-
-
-
- $(PaketRootPath)paket.exe
- $(PaketToolsPath)paket.exe
-
-
-
-
-
- <_DotnetToolsJson Condition="Exists('$(PaketRootPath)/.config/dotnet-tools.json')">$([System.IO.File]::ReadAllText("$(PaketRootPath)/.config/dotnet-tools.json"))
- <_ConfigContainsPaket Condition=" '$(_DotnetToolsJson)' != ''">$(_DotnetToolsJson.Contains('"paket"'))
- <_ConfigContainsPaket Condition=" '$(_ConfigContainsPaket)' == ''">false
-
-
-
-
-
-
-
-
-
-
- <_PaketCommand>dotnet paket
-
-
-
-
-
- $(PaketToolsPath)paket
- $(PaketBootStrapperExeDir)paket
-
-
- paket
-
-
-
-
- <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)"))
- <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)"
- <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"
- <_PaketCommand Condition=" '$(_PaketCommand)' == '' ">"$(PaketExePath)"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- true
- $(NoWarn);NU1603;NU1604;NU1605;NU1608
- false
- true
-
-
-
-
-
-
-
-
- $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)'))
-
-
-
-
-
-
- $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``))
- $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``))
-
-
-
-
- %(PaketRestoreCachedKeyValue.Value)
- %(PaketRestoreCachedKeyValue.Value)
-
-
-
-
- true
- false
- true
-
-
-
+
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+ $(MSBuildVersion)
+ 15.0.0
+ false
+ true
+
+ true
+ $(MSBuildThisFileDirectory)
+ $(MSBuildThisFileDirectory)..\
+ $(PaketRootPath)paket-files\paket.restore.cached
+ $(PaketRootPath)paket.lock
+ classic
+ proj
+ assembly
+ native
+ /Library/Frameworks/Mono.framework/Commands/mono
+ mono
+
+
+ $(PaketRootPath)paket.bootstrapper.exe
+ $(PaketToolsPath)paket.bootstrapper.exe
+ $([System.IO.Path]::GetDirectoryName("$(PaketBootStrapperExePath)"))\
+
+ "$(PaketBootStrapperExePath)"
+ $(MonoPath) --runtime=v4.0.30319 "$(PaketBootStrapperExePath)"
+
+
+
+
+ true
+ true
+
+
+ True
+
+
+ False
+
+ $(BaseIntermediateOutputPath.TrimEnd('\').TrimEnd('\/'))
+
+
+
+
+
+
+
+
+ $(PaketRootPath)paket
+ $(PaketToolsPath)paket
+
+
+
+
+
+ $(PaketRootPath)paket.exe
+ $(PaketToolsPath)paket.exe
+
+
+
+
+
+ <_DotnetToolsJson Condition="Exists('$(PaketRootPath)/.config/dotnet-tools.json')">$([System.IO.File]::ReadAllText("$(PaketRootPath)/.config/dotnet-tools.json"))
+ <_ConfigContainsPaket Condition=" '$(_DotnetToolsJson)' != ''">$(_DotnetToolsJson.Contains('"paket"'))
+ <_ConfigContainsPaket Condition=" '$(_ConfigContainsPaket)' == ''">false
+
+
+
+
+
+
+
+
+
+
+ <_PaketCommand>dotnet paket
+
+
+
+
+
+ $(PaketToolsPath)paket
+ $(PaketBootStrapperExeDir)paket
+
+
+ paket
+
+
+
+
+ <_PaketExeExtension>$([System.IO.Path]::GetExtension("$(PaketExePath)"))
+ <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(_PaketExeExtension)' == '.dll' ">dotnet "$(PaketExePath)"
+ <_PaketCommand Condition=" '$(_PaketCommand)' == '' AND '$(OS)' != 'Windows_NT' AND '$(_PaketExeExtension)' == '.exe' ">$(MonoPath) --runtime=v4.0.30319 "$(PaketExePath)"
+ <_PaketCommand Condition=" '$(_PaketCommand)' == '' ">"$(PaketExePath)"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ $(NoWarn);NU1603;NU1604;NU1605;NU1608
+ false
+ true
+
+
+
+
+
+
+
+
+ $([System.IO.File]::ReadAllText('$(PaketRestoreCacheFile)'))
+
+
+
+
+
+
+ $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[0].Replace(`"`, ``).Replace(` `, ``))
+ $([System.Text.RegularExpressions.Regex]::Split(`%(Identity)`, `": "`)[1].Replace(`"`, ``).Replace(` `, ``))
+
+
+
+
+ %(PaketRestoreCachedKeyValue.Value)
+ %(PaketRestoreCachedKeyValue.Value)
+
+
+
+
+ true
+ false
+ true
+
+
+
-
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(PaketIntermediateOutputPath)\$(MSBuildProjectFile).paket.references.cached
-
- $(MSBuildProjectFullPath).paket.references
-
- $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references
-
- $(MSBuildProjectDirectory)\paket.references
-
- false
- true
- true
- references-file-or-cache-not-found
-
-
-
-
- $([System.IO.File]::ReadAllText('$(PaketReferencesCachedFilePath)'))
- $([System.IO.File]::ReadAllText('$(PaketOriginalReferencesFilePath)'))
- references-file
- false
-
-
-
-
- false
-
-
-
-
- true
- target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths)
-
-
-
-
-
-
-
-
-
-
- false
- true
-
-
-
-
-
-
-
-
-
-
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',').Length)
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4])
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[6])
- $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[7])
-
-
- %(PaketReferencesFileLinesInfo.PackageVersion)
- All
- runtime
- $(ExcludeAssets);contentFiles
- $(ExcludeAssets);build;buildMultitargeting;buildTransitive
- true
- true
-
-
-
-
- $(PaketIntermediateOutputPath)/$(MSBuildProjectFile).paket.clitools
-
-
-
-
-
-
-
-
- $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0])
- $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1])
-
-
- %(PaketCliToolFileLinesInfo.PackageVersion)
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(PaketIntermediateOutputPath)\$(MSBuildProjectFile).paket.references.cached
+
+ $(MSBuildProjectFullPath).paket.references
+
+ $(MSBuildProjectDirectory)\$(MSBuildProjectName).paket.references
+
+ $(MSBuildProjectDirectory)\paket.references
+
+ false
+ true
+ true
+ references-file-or-cache-not-found
+
+
+
+
+ $([System.IO.File]::ReadAllText('$(PaketReferencesCachedFilePath)'))
+ $([System.IO.File]::ReadAllText('$(PaketOriginalReferencesFilePath)'))
+ references-file
+ false
+
+
+
+
+ false
+
+
+
+
+ true
+ target-framework '$(TargetFramework)' or '$(TargetFrameworks)' files @(PaketResolvedFilePaths)
+
+
+
+
+
+
+
+
+
+
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',').Length)
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[0])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[1])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[2])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[4])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[5])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[6])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[7])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[8])
+ $([System.String]::Copy('%(PaketReferencesFileLines.Identity)').Split(',')[9])
+
+
+ %(PaketReferencesFileLinesInfo.PackageVersion)
+ All
+ runtime
+ $(ExcludeAssets);contentFiles
+ $(ExcludeAssets);build;buildMultitargeting;buildTransitive
+ %(PaketReferencesFileLinesInfo.Aliases)
+ true
+ true
+
+
+ %(PaketReferencesFileLinesInfo.PackageVersion)
+
+
+
+
+ $(PaketIntermediateOutputPath)/$(MSBuildProjectFile).paket.clitools
+
+
+
+
+
+
+
+
+ $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[0])
+ $([System.String]::Copy('%(PaketCliToolFileLines.Identity)').Split(',')[1])
+
+
+ %(PaketCliToolFileLinesInfo.PackageVersion)
+
+
+
+
-
-
-
-
- false
-
-
-
-
-
- <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/>
-
-
-
-
-
- $(MSBuildProjectDirectory)/$(MSBuildProjectFile)
- true
- false
- true
- false
- true
- false
- true
- false
- true
- false
- true
- $(PaketIntermediateOutputPath)\$(Configuration)
- $(PaketIntermediateOutputPath)
-
-
-
- <_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/>
-
-
-
-
-
-
-
-
-
+
+
+
+
+ false
+
+
+
+
+
+ <_NuspecFilesNewLocation Include="$(PaketIntermediateOutputPath)\$(Configuration)\*.nuspec"/>
+
+
+
+
+
+ $(MSBuildProjectDirectory)/$(MSBuildProjectFile)
+ true
+ false
+ true
+ false
+ true
+ false
+ true
+ false
+ true
+ false
+ true
+ $(PaketIntermediateOutputPath)\$(Configuration)
+ $(PaketIntermediateOutputPath)
+
+
+
+ <_NuspecFiles Include="$(AdjustedNuspecOutputPath)\*.$(PackageVersion.Split(`+`)[0]).nuspec"/>
+
+
+
+
+
+
+
+ <_DefinedConditionProperties Include="@(_ConditionProperties)" Condition="$(%(Identity)) == 'true'"/>
+
+
+ <_ConditionsParameter>
+ <_ConditionsParameter Condition="@(_DefinedConditionProperties) != ''">--conditions @(_DefinedConditionProperties)
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 3630b48..d009c87 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,4 @@
{
- "FSharp.fsacRuntime":"netcore",
"FSharp.enableAnalyzers": true,
"FSharp.analyzersPath": [
"./packages/analyzers"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ecf6f46..d5f963e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [10.0.0] - 2026-04-05
+
+### Changed
+- Migrated to .NET 10 / EF Core 10
+- Updated all dependencies: FSharp.Core 6→9, FSharp.Compiler.Service 41→43, paket 6→10, fantomas 4→6, FAKE 5→6
+- Adapted to EF Core 10 breaking changes (removed/renamed APIs, new interface members, constructor changes)
+- Updated CI workflow to .NET 10 with latest GitHub Actions
+- Added C# interop project for TestRelationalTypeMappingSource (F# cannot handle covariant return types)
+- Updated devcontainer to Debian bookworm and .NET 10
+- Relaxed FSharp.Core dependency constraint (>= 9.0.100 instead of exact)
+- Replaced deprecated PackageLicenseUrl with PackageLicenseExpression (MIT)
+- Updated documentation (README, Getting Started, docsSrc) for .NET 10
+
## [6.0.7] - 2022-06-26
### Fixed
@@ -68,7 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
-[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.7...HEAD
+[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v10.0.0...HEAD
+[10.0.0]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.7...v10.0.0
[6.0.7]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.6...v6.0.7
[6.0.6]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.5...v6.0.6
[6.0.5]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.4...v6.0.5
diff --git a/Directory.Build.props b/Directory.Build.props
index 2f4b3a0..bbf37a7 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -3,7 +3,7 @@
f#, fsharp
https://github.com/efcore/EFCore.FSharp
- https://github.com/efcore/EFCore.FSharp/blob/master/LICENSE.md
+ MIT
false
git
efcore
diff --git a/EFCore.FSharp.sln b/EFCore.FSharp.sln
index b756a19..f7356f1 100644
--- a/EFCore.FSharp.sln
+++ b/EFCore.FSharp.sln
@@ -15,6 +15,8 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "docsTool", "docsTool\docsTo
EndProject
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "build", "build\build.fsproj", "{40D2259D-991D-44C4-B45D-C88CE0710C23}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EFCore.FSharp.Tests.CSharpInterop", "tests\EFCore.FSharp.Tests.CSharpInterop\EFCore.FSharp.Tests.CSharpInterop.csproj", "{20918426-CC33-430A-AD54-9497F22ADBED}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -24,9 +26,6 @@ Global
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5D30E174-2538-47AC-8443-318C8C5DC2C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D30E174-2538-47AC-8443-318C8C5DC2C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
@@ -76,9 +75,25 @@ Global
{40D2259D-991D-44C4-B45D-C88CE0710C23}.Release|x64.Build.0 = Release|Any CPU
{40D2259D-991D-44C4-B45D-C88CE0710C23}.Release|x86.ActiveCfg = Release|Any CPU
{40D2259D-991D-44C4-B45D-C88CE0710C23}.Release|x86.Build.0 = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|x64.Build.0 = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Debug|x86.Build.0 = Debug|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|Any CPU.Build.0 = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|x64.ActiveCfg = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|x64.Build.0 = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|x86.ActiveCfg = Release|Any CPU
+ {20918426-CC33-430A-AD54-9497F22ADBED}.Release|x86.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{5D30E174-2538-47AC-8443-318C8C5DC2C9} = {C397A34C-84F1-49E7-AEBC-2F9F2B196216}
{1CA2E092-2320-451D-A4F0-9ED7C7C528CA} = {ACBEE43C-7A88-4FB1-9B06-DB064D22B29F}
+ {20918426-CC33-430A-AD54-9497F22ADBED} = {ACBEE43C-7A88-4FB1-9B06-DB064D22B29F}
EndGlobalSection
EndGlobal
diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md
index fa4d78e..6b582e8 100644
--- a/GETTING_STARTED.md
+++ b/GETTING_STARTED.md
@@ -6,7 +6,7 @@ This guide is for a simple single-project setup rather than a production-ready t
This guide assumes:
-- You have the `.NET Core SDK` installed (tested with version 3.1, though it may work with other versions)
+- You have the `.NET SDK` installed (version 10.0 or higher)
- You have `SQLite` installed and a basic knowledge of how to explore a SQLite database
# Setup
diff --git a/README.md b/README.md
index a3198b1..0dced13 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ This can then be referenced as usual.
Make sure the following **requirements** are installed on your system:
-- [dotnet SDK](https://www.microsoft.com/net/download/core) 5.0 or higher
+- [dotnet SDK](https://dotnet.microsoft.com/en-us/download) 10.0 or higher
or
diff --git a/build/build.fs b/build/build.fs
index 1fdf1e2..e31603e 100644
--- a/build/build.fs
+++ b/build/build.fs
@@ -14,12 +14,11 @@ let environVarAsBoolOrDefault varName defaultValue =
let truthyConsts = [ "1"; "Y"; "YES"; "T"; "TRUE" ]
try
- let envvar =
- (Environment.environVar varName).ToUpper()
+ let envvar = (Environment.environVar varName).ToUpper()
truthyConsts |> List.exists ((=) envvar)
- with
- | _ -> defaultValue
+ with _ ->
+ defaultValue
//-----------------------------------------------------------------------------
// Metadata and Configuration
@@ -27,35 +26,22 @@ let environVarAsBoolOrDefault varName defaultValue =
let productName = "EFCore.FSharp"
-let sln =
- __SOURCE_DIRECTORY__
- > ".."
- > "EFCore.FSharp.sln"
+let sln = __SOURCE_DIRECTORY__ > ".." > "EFCore.FSharp.sln"
let srcCodeGlob =
!!(__SOURCE_DIRECTORY__ > ".." > "src/**/*.fs")
++ (__SOURCE_DIRECTORY__ > ".." > "src/**/*.fsx")
- -- (__SOURCE_DIRECTORY__
- > ".."
- > "src/**/obj/**/*.fs")
+ -- (__SOURCE_DIRECTORY__ > ".." > "src/**/obj/**/*.fs")
let testsCodeGlob =
!!(__SOURCE_DIRECTORY__ > ".." > "tests/**/*.fs")
++ (__SOURCE_DIRECTORY__ > ".." > "tests/**/*.fsx")
- -- (__SOURCE_DIRECTORY__
- > ".."
- > "tests/**/obj/**/*.fs")
+ -- (__SOURCE_DIRECTORY__ > ".." > "tests/**/obj/**/*.fs")
-let srcGlob =
- __SOURCE_DIRECTORY__
- > ".."
- > "src/**/*.??proj"
+let srcGlob = __SOURCE_DIRECTORY__ > ".." > "src/**/*.??proj"
-let testsGlob =
- __SOURCE_DIRECTORY__
- > ".."
- > "tests/**/*.??proj"
+let testsGlob = __SOURCE_DIRECTORY__ > ".." > "tests/**/*.??proj"
let srcAndTest = !!srcGlob ++ testsGlob
@@ -64,36 +50,27 @@ let distGlob = distDir > "*.nupkg"
let coverageThresholdPercent = 55
-let coverageReportDir =
- __SOURCE_DIRECTORY__
- > ".."
- > "docs"
- > "coverage"
+let coverageReportDir = __SOURCE_DIRECTORY__ > ".." > "docs" > "coverage"
let docsDir = __SOURCE_DIRECTORY__ > ".." > "docs"
-let docsSrcDir =
- __SOURCE_DIRECTORY__ > ".." > "docsSrc"
+let docsSrcDir = __SOURCE_DIRECTORY__ > ".." > "docsSrc"
-let docsToolDir =
- __SOURCE_DIRECTORY__ > ".." > "docsTool"
+let docsToolDir = __SOURCE_DIRECTORY__ > ".." > "docsTool"
let gitOwner = "efcore"
let gitRepoName = "EFCore.FSharp"
-let gitHubRepoUrl =
- sprintf "https://github.com/%s/%s" gitOwner gitRepoName
+let gitHubRepoUrl = sprintf "https://github.com/%s/%s" gitOwner gitRepoName
let releaseBranch = "master"
let tagFromVersionNumber versionNumber = sprintf "v%s" versionNumber
-let changelogFilename =
- __SOURCE_DIRECTORY__ > ".." > "CHANGELOG.md"
+let changelogFilename = __SOURCE_DIRECTORY__ > ".." > "CHANGELOG.md"
-let changelog =
- Fake.Core.Changelog.load changelogFilename
+let changelog = Fake.Core.Changelog.load changelogFilename
let mutable latestEntry =
if Seq.isEmpty changelog.Entries then
@@ -106,36 +83,26 @@ let mutable changelogBackupFilename = ""
let publishUrl = "https://www.nuget.org"
-let docsSiteBaseUrl =
- sprintf "https://%s.github.io/%s" gitOwner gitRepoName
+let docsSiteBaseUrl = sprintf "https://%s.github.io/%s" gitOwner gitRepoName
-let disableCodeCoverage =
- environVarAsBoolOrDefault "DISABLE_COVERAGE" false
+let disableCodeCoverage = environVarAsBoolOrDefault "DISABLE_COVERAGE" false
-let githubToken =
- Environment.environVarOrNone "GITHUB_TOKEN"
+let githubToken = Environment.environVarOrNone "GITHUB_TOKEN"
-let nugetToken =
- Environment.environVarOrNone "NUGET_TOKEN"
+let nugetToken = Environment.environVarOrNone "NUGET_TOKEN"
//-----------------------------------------------------------------------------
// Helpers
//-----------------------------------------------------------------------------
let isRelease (targets: Target list) =
- targets
- |> Seq.map (fun t -> t.Name)
- |> Seq.exists ((=) "Release")
+ targets |> Seq.map (fun t -> t.Name) |> Seq.exists ((=) "Release")
let invokeAsync f = async { f () }
let configuration (targets: Target list) =
- let defaultVal =
- if isRelease targets then
- "Release"
- else
- "Debug"
+ let defaultVal = if isRelease targets then "Release" else "Debug"
match Environment.environVarOrDefault "CONFIGURATION" defaultVal with
| "Debug" -> DotNet.BuildConfiguration.Debug
@@ -154,8 +121,8 @@ let rec retryIfInCI times fn =
if times > 1 then
try
fn ()
- with
- | _ -> retryIfInCI (times - 1) fn
+ with _ ->
+ retryIfInCI (times - 1) fn
else
fn ()
| _ -> fn ()
@@ -174,7 +141,7 @@ module Changelog =
| Changelog.Change.Fixed s
| Changelog.Change.Removed s
| Changelog.Change.Security s
- | Changelog.Change.Custom (_, s) -> String.IsNullOrWhiteSpace s.CleanedText
+ | Changelog.Change.Custom(_, s) -> String.IsNullOrWhiteSpace s.CleanedText
let isChangelogEmpty () =
let isEmpty =
@@ -199,10 +166,9 @@ module Changelog =
// Changelog entries come already sorted, most-recent first, by the Changelog module
let prevEntry =
changelog.Entries
- |> List.skipWhile
- (fun entry ->
- entry.SemVer.PreRelease.IsSome
- && versionTuple entry.SemVer = versionTuple newVersion)
+ |> List.skipWhile (fun entry ->
+ entry.SemVer.PreRelease.IsSome
+ && versionTuple entry.SemVer = versionTuple newVersion)
|> List.tryHead
let linkTarget =
@@ -229,7 +195,7 @@ module Changelog =
| Some desc -> sprintf "%s\n\n%s" (desc.Trim()) linkReference
{ latestEntry with
- Description = Some description }
+ Description = Some description }
.ToString()
let getVersionNumber envVarName ctx =
@@ -242,10 +208,7 @@ module Changelog =
if SemVer.isValid verArg then
verArg
- elif
- verArg.StartsWith("v")
- && SemVer.isValid verArg.[1..]
- then
+ elif verArg.StartsWith("v") && SemVer.isValid verArg.[1..] then
let target = ctx.Context.FinalTarget
Trace.traceImportantfn
@@ -280,8 +243,7 @@ module dotnet =
let run cmdParam args = DotNet.exec cmdParam "run" args
let tool optionConfig command args =
- DotNet.exec optionConfig (sprintf "%s" command) args
- |> failOnBadExitAndPrint
+ DotNet.exec optionConfig (sprintf "%s" command) args |> failOnBadExitAndPrint
let reportgenerator optionConfig args =
tool optionConfig "reportgenerator" args
@@ -302,6 +264,7 @@ module FSharpAnalyzers =
| Fail_On_Warnings of string list
| Ignore_Files of string list
| Verbose
+
interface IArgParserTemplate with
member s.Usage = ""
@@ -311,8 +274,7 @@ open DocsTool.CLIArgs
module DocsTool =
open Argu
- let buildparser =
- ArgumentParser.Create(programName = "docstool")
+ let buildparser = ArgumentParser.Create(programName = "docstool")
let buildCLI () =
[ BuildArgs.SiteBaseUrl docsSiteBaseUrl
@@ -328,12 +290,11 @@ module DocsTool =
dotnet.run
(fun args ->
{ args with
- WorkingDirectory = docsToolDir })
+ WorkingDirectory = docsToolDir })
(sprintf " -- build %s" (buildCLI ()))
|> failOnBadExitAndPrint
- let watchparser =
- ArgumentParser.Create(programName = "docstool")
+ let watchparser = ArgumentParser.Create(programName = "docstool")
let watchCLI () =
[ WatchArgs.ProjectGlob srcGlob
@@ -347,7 +308,7 @@ module DocsTool =
dotnet.watch
(fun args ->
{ args with
- WorkingDirectory = docsToolDir })
+ WorkingDirectory = docsToolDir })
"run"
(sprintf "-- watch %s" (watchCLI ()))
|> failOnBadExitAndPrint
@@ -362,36 +323,25 @@ let allReleaseChecks () =
let clean _ =
- [ "bin"
- "temp"
- distDir
- coverageReportDir ]
- |> Shell.cleanDirs
+ [ "bin"; "temp"; distDir; coverageReportDir ] |> Shell.cleanDirs
!!srcGlob ++ testsGlob
- |> Seq.collect
- (fun p ->
- [ "bin"; "obj" ]
- |> Seq.map (fun sp -> IO.Path.GetDirectoryName p > sp))
+ |> Seq.collect (fun p -> [ "bin"; "obj" ] |> Seq.map (fun sp -> IO.Path.GetDirectoryName p > sp))
|> Shell.cleanDirs
- [ "paket-files/paket.restore.cached" ]
- |> Seq.iter Shell.rm
+ [ "paket-files/paket.restore.cached" ] |> Seq.iter Shell.rm
let dotnetRestore _ =
[ sln ]
- |> Seq.map
- (fun dir ->
- fun () ->
- let args = [] |> String.concat " "
-
- DotNet.restore
- (fun c ->
- { c with
- Common =
- c.Common
- |> DotNet.Options.withCustomParams (Some(args)) })
- dir)
+ |> Seq.map (fun dir ->
+ fun () ->
+ let args = [] |> String.concat " "
+
+ DotNet.restore
+ (fun c ->
+ { c with
+ Common = c.Common |> DotNet.Options.withCustomParams (Some(args)) })
+ dir)
|> Seq.iter (retryIfInCI 10)
let updateChangelog ctx =
@@ -400,61 +350,52 @@ let updateChangelog ctx =
| None -> None, []
| Some u -> u.Description, u.Changes
- let verStr =
- ctx
- |> Changelog.getVersionNumber "RELEASE_VERSION"
+ let verStr = ctx |> Changelog.getVersionNumber "RELEASE_VERSION"
let newVersion = SemVer.parse verStr
changelog.Entries
|> List.tryFind (fun entry -> entry.SemVer = newVersion)
- |> Option.iter
- (fun entry ->
- Trace.traceErrorfn
- "Version %s already exists in %s, released on %s"
- verStr
- changelogFilename
- (if entry.Date.IsSome then
- entry.Date.Value.ToString("yyyy-MM-dd")
- else
- "(no date specified)")
-
- failwith "Can't release with a duplicate version number")
+ |> Option.iter (fun entry ->
+ Trace.traceErrorfn
+ "Version %s already exists in %s, released on %s"
+ verStr
+ changelogFilename
+ (if entry.Date.IsSome then
+ entry.Date.Value.ToString("yyyy-MM-dd")
+ else
+ "(no date specified)")
+
+ failwith "Can't release with a duplicate version number")
changelog.Entries
|> List.tryFind (fun entry -> entry.SemVer > newVersion)
- |> Option.iter
- (fun entry ->
- Trace.traceErrorfn
- "You're trying to release version %s, but a later version %s already exists, released on %s"
- verStr
- entry.SemVer.AsString
- (if entry.Date.IsSome then
- entry.Date.Value.ToString("yyyy-MM-dd")
- else
- "(no date specified)")
-
- failwith "Can't release with a version number older than an existing release")
+ |> Option.iter (fun entry ->
+ Trace.traceErrorfn
+ "You're trying to release version %s, but a later version %s already exists, released on %s"
+ verStr
+ entry.SemVer.AsString
+ (if entry.Date.IsSome then
+ entry.Date.Value.ToString("yyyy-MM-dd")
+ else
+ "(no date specified)")
+
+ failwith "Can't release with a version number older than an existing release")
let versionTuple version =
(version.Major, version.Minor, version.Patch)
let prereleaseEntries =
changelog.Entries
- |> List.filter
- (fun entry ->
- entry.SemVer.PreRelease.IsSome
- && versionTuple entry.SemVer = versionTuple newVersion)
+ |> List.filter (fun entry ->
+ entry.SemVer.PreRelease.IsSome
+ && versionTuple entry.SemVer = versionTuple newVersion)
let prereleaseChanges =
prereleaseEntries
- |> List.collect
- (fun entry ->
- entry.Changes
- |> List.filter (not << Changelog.isEmptyChange))
+ |> List.collect (fun entry -> entry.Changes |> List.filter (not << Changelog.isEmptyChange))
- let assemblyVersion, nugetVersion =
- Changelog.parseVersions newVersion.AsString
+ let assemblyVersion, nugetVersion = Changelog.parseVersions newVersion.AsString
linkReferenceForLatestEntry <- Changelog.mkLinkReference newVersion changelog
@@ -469,15 +410,14 @@ let updateChangelog ctx =
)
let newChangelog =
- Changelog.Changelog.New(changelog.Header, changelog.Description, None, newEntry :: changelog.Entries)
+ Changelog.Changelog.New(changelog.Header, changelog.Description, None, newEntry :: changelog.Entries, [])
latestEntry <- newEntry
// Save changelog to temporary file before making any edits
changelogBackupFilename <- System.IO.Path.GetTempFileName()
- changelogFilename
- |> Shell.copyFile changelogBackupFilename
+ changelogFilename |> Shell.copyFile changelogBackupFilename
Target.activateFinal "DeleteChangelogBackupFile"
@@ -489,12 +429,9 @@ let updateChangelog ctx =
let linkReferenceForUnreleased =
sprintf "[Unreleased]: %s/compare/%s...%s" gitHubRepoUrl (tagFromVersionNumber newVersion.AsString) "HEAD"
- let tailLines =
- File.read changelogFilename
- |> List.ofSeq
- |> List.rev
+ let tailLines = File.read changelogFilename |> List.ofSeq |> List.rev
- let isRef line =
+ let isRef (line: string) =
System.Text.RegularExpressions.Regex.IsMatch(line, @"^\[.+?\]:\s?[a-z]+://.*$")
let linkReferenceTargets =
@@ -505,27 +442,19 @@ let updateChangelog ctx =
let newLinkReferenceTargets =
match linkReferenceTargets with
- | [] ->
- [ linkReferenceForUnreleased
- linkReferenceForLatestEntry ]
+ | [] -> [ linkReferenceForUnreleased; linkReferenceForLatestEntry ]
| first :: rest when first |> String.startsWith "[Unreleased]:" ->
- linkReferenceForUnreleased
- :: linkReferenceForLatestEntry :: rest
- | first :: rest ->
- linkReferenceForUnreleased
- :: linkReferenceForLatestEntry :: first :: rest
+ linkReferenceForUnreleased :: linkReferenceForLatestEntry :: rest
+ | first :: rest -> linkReferenceForUnreleased :: linkReferenceForLatestEntry :: first :: rest
let blankLineCount =
- tailLines
- |> Seq.takeWhile String.isNullOrWhiteSpace
- |> Seq.length
+ tailLines |> Seq.takeWhile String.isNullOrWhiteSpace |> Seq.length
let linkRefCount = linkReferenceTargets |> List.length
let skipCount = blankLineCount + linkRefCount
let updatedLines =
- List.rev (tailLines |> List.skip skipCount)
- @ newLinkReferenceTargets
+ List.rev (tailLines |> List.skip skipCount) @ newLinkReferenceTargets
File.write false changelogFilename updatedLines
@@ -534,8 +463,7 @@ let updateChangelog ctx =
let revertChangelog _ =
if String.isNotNullOrEmpty changelogBackupFilename then
- changelogBackupFilename
- |> Shell.copyFile changelogFilename
+ changelogBackupFilename |> Shell.copyFile changelogFilename
let deleteChangelogBackupFile _ =
if String.isNotNullOrEmpty changelogBackupFilename then
@@ -543,14 +471,13 @@ let deleteChangelogBackupFile _ =
let dotnetBuild ctx =
let args =
- [ sprintf "/p:PackageVersion=%s" latestEntry.NuGetVersion
- "--no-restore" ]
+ [ sprintf "/p:PackageVersion=%s" latestEntry.NuGetVersion; "--no-restore" ]
DotNet.build
(fun c ->
{ c with
- Configuration = configuration (ctx.Context.AllExecutingTargets)
- Common = c.Common |> DotNet.Options.withAdditionalArgs args
+ Configuration = configuration (ctx.Context.AllExecutingTargets)
+ Common = c.Common |> DotNet.Options.withAdditionalArgs args
})
sln
@@ -560,26 +487,19 @@ let fsharpAnalyzers _ =
ArgumentParser.Create(programName = "fsharp-analyzers")
!!srcGlob
- |> Seq.iter
- (fun proj ->
- let args =
- [ FSharpAnalyzers.Analyzers_Path(
- __SOURCE_DIRECTORY__
- > ".."
- > "packages/analyzers"
- )
- FSharpAnalyzers.Arguments.Project proj
- FSharpAnalyzers.Arguments.Fail_On_Warnings [ "BDH0002" ]
- FSharpAnalyzers.Verbose ]
- |> argParser.PrintCommandLineArgumentsFlat
-
- dotnet.fsharpAnalyzer id args)
+ |> Seq.iter (fun proj ->
+ let args =
+ [ FSharpAnalyzers.Analyzers_Path(__SOURCE_DIRECTORY__ > ".." > "packages/analyzers")
+ FSharpAnalyzers.Arguments.Project proj
+ FSharpAnalyzers.Arguments.Fail_On_Warnings [ "BDH0002" ]
+ FSharpAnalyzers.Verbose ]
+ |> argParser.PrintCommandLineArgumentsFlat
+
+ dotnet.fsharpAnalyzer id args)
let dotnetTest ctx =
let excludeCoverage =
- !!testsGlob
- |> Seq.map IO.Path.GetFileNameWithoutExtension
- |> String.concat "|"
+ !!testsGlob |> Seq.map IO.Path.GetFileNameWithoutExtension |> String.concat "|"
let args =
[ "--no-build"
@@ -592,18 +512,14 @@ let dotnetTest ctx =
(fun c ->
{ c with
- Configuration = configuration (ctx.Context.AllExecutingTargets)
- Common = c.Common |> DotNet.Options.withAdditionalArgs args })
+ Configuration = configuration (ctx.Context.AllExecutingTargets)
+ Common = c.Common |> DotNet.Options.withAdditionalArgs args })
sln
let generateCoverageReport _ =
- let coverageReports =
- !! "tests/**/coverage*.xml" |> String.concat ";"
+ let coverageReports = !! "tests/**/coverage*.xml" |> String.concat ";"
- let sourceDirs =
- !!srcGlob
- |> Seq.map Path.getDirectory
- |> String.concat ";"
+ let sourceDirs = !!srcGlob |> Seq.map Path.getDirectory |> String.concat ";"
let independentArgs =
[ sprintf "-reports:\"%s\"" coverageReports
@@ -619,29 +535,19 @@ let generateCoverageReport _ =
let watchTests _ =
!!testsGlob
- |> Seq.map
- (fun proj ->
- fun () ->
- dotnet.watch
- (fun opt ->
- opt
- |> DotNet.Options.withWorkingDirectory (IO.Path.GetDirectoryName proj))
- "test"
- ""
- |> ignore)
- |> Seq.iter (
- invokeAsync
- >> Async.Catch
- >> Async.Ignore
- >> Async.Start
- )
+ |> Seq.map (fun proj ->
+ fun () ->
+ dotnet.watch
+ (fun opt -> opt |> DotNet.Options.withWorkingDirectory (IO.Path.GetDirectoryName proj))
+ "test"
+ ""
+ |> ignore)
+ |> Seq.iter (invokeAsync >> Async.Catch >> Async.Ignore >> Async.Start)
printfn "Press Ctrl+C (or Ctrl+Break) to stop..."
let cancelEvent =
- Console.CancelKeyPress
- |> Async.AwaitEvent
- |> Async.RunSynchronously
+ Console.CancelKeyPress |> Async.AwaitEvent |> Async.RunSynchronously
cancelEvent.Cancel <- true
@@ -670,33 +576,22 @@ let generateAssemblyInfo _ =
AssemblyInfo.Metadata("GitHash", Git.Information.getCurrentSHA1 (null)) ]
let getProjectDetails (projectPath: string) =
- let projectName =
- IO.Path.GetFileNameWithoutExtension(projectPath)
+ let projectName = IO.Path.GetFileNameWithoutExtension(projectPath)
(projectPath, projectName, IO.Path.GetDirectoryName(projectPath), (getAssemblyInfoAttributes projectName))
srcAndTest
|> Seq.map getProjectDetails
- |> Seq.iter
- (fun (projFileName, _, folderName, attributes) ->
- match projFileName with
- | Fsproj -> AssemblyInfoFile.createFSharp (folderName > "AssemblyInfo.fs") attributes
- | Csproj ->
- AssemblyInfoFile.createCSharp
- ((folderName > "Properties")
- > "AssemblyInfo.cs")
- attributes
- | Vbproj ->
- AssemblyInfoFile.createVisualBasic
- ((folderName > "My Project")
- > "AssemblyInfo.vb")
- attributes)
+ |> Seq.iter (fun (projFileName, _, folderName, attributes) ->
+ match projFileName with
+ | Fsproj -> AssemblyInfoFile.createFSharp (folderName > "AssemblyInfo.fs") attributes
+ | Csproj -> AssemblyInfoFile.createCSharp ((folderName > "Properties") > "AssemblyInfo.cs") attributes
+ | Vbproj -> AssemblyInfoFile.createVisualBasic ((folderName > "My Project") > "AssemblyInfo.vb") attributes)
let dotnetPack ctx =
// Get release notes with properly-linked version number
let releaseNotes =
- latestEntry
- |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
+ latestEntry |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
let args =
[ sprintf "/p:PackageVersion=%s" latestEntry.NuGetVersion
@@ -705,9 +600,9 @@ let dotnetPack ctx =
DotNet.pack
(fun c ->
{ c with
- Configuration = configuration (ctx.Context.AllExecutingTargets)
- OutputPath = Some distDir
- Common = c.Common |> DotNet.Options.withAdditionalArgs args })
+ Configuration = configuration (ctx.Context.AllExecutingTargets)
+ OutputPath = Some distDir
+ Common = c.Common |> DotNet.Options.withAdditionalArgs args })
sln
let sourceLinkTest _ =
@@ -717,17 +612,16 @@ let sourceLinkTest _ =
let publishToNuget _ =
allReleaseChecks ()
- Paket.push
- (fun c ->
- { c with
- ToolType = ToolType.CreateLocalTool()
- PublishUrl = publishUrl
- WorkingDir = "dist"
- ApiKey =
- match nugetToken with
- | Some s -> s
- | _ -> c.ApiKey // assume paket-config was set properly
- })
+ Paket.push (fun c ->
+ { c with
+ ToolType = ToolType.CreateLocalTool()
+ PublishUrl = publishUrl
+ WorkingDir = "dist"
+ ApiKey =
+ match nugetToken with
+ | Some s -> s
+ | _ -> c.ApiKey } // assume paket-config was set properly
+ )
// If build fails after this point, we've pushed a release out with this version of CHANGELOG.md so we should keep it around
Target.deactivateBuildFailure "RevertChangelog"
@@ -738,14 +632,12 @@ let gitRelease _ =
Git.Staging.stageFile "" "CHANGELOG.md" |> ignore
- !! "src/**/AssemblyInfo.fs"
- |> Seq.iter (Git.Staging.stageFile "" >> ignore)
+ !! "src/**/AssemblyInfo.fs" |> Seq.iter (Git.Staging.stageFile "" >> ignore)
Git.Commit.exec "" (sprintf "Bump version to %s\n\n%s" latestEntry.NuGetVersion releaseNotesGitCommitFormat)
Git.Branches.push ""
- let tag =
- tagFromVersionNumber latestEntry.NuGetVersion
+ let tag = tagFromVersionNumber latestEntry.NuGetVersion
Git.Branches.tag "" tag
Git.Branches.pushTag "" "origin" tag
@@ -763,8 +655,7 @@ let githubRelease _ =
let files = !!distGlob
// Get release notes with properly-linked version number
let releaseNotes =
- latestEntry
- |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
+ latestEntry |> Changelog.mkReleaseNotes linkReferenceForLatestEntry
GitHub.createClientWithToken token
|> GitHub.draftNewRelease
diff --git a/build/build.fsproj b/build/build.fsproj
index 1f50f0b..011c43f 100644
--- a/build/build.fsproj
+++ b/build/build.fsproj
@@ -2,7 +2,7 @@
Exe
- net6.0
+ net10.0
3390;$(WarnOn)
false
diff --git a/docsSrc/Tutorials/Getting_Started.md b/docsSrc/Tutorials/Getting_Started.md
index d13aef3..807336e 100644
--- a/docsSrc/Tutorials/Getting_Started.md
+++ b/docsSrc/Tutorials/Getting_Started.md
@@ -3,7 +3,7 @@
## Prerequisites
This guide assumes:
-* You have the .NET 5.0 SDK installed
+* You have the .NET 10.0 SDK installed
* You have created a project and added the `dotnet-ef` tool
## Installing the package
diff --git a/docsTool/Program.fs b/docsTool/Program.fs
index e0ad952..53ecf3c 100644
--- a/docsTool/Program.fs
+++ b/docsTool/Program.fs
@@ -217,7 +217,7 @@ module GenerateDocs =
(fun opts ->
{ opts with
OutputPath = Some cfg.PublishPath.FullName
- Framework = Some "net6.0" })
+ Framework = Some "net10.0" })
p)
let generateAPI (cfg: Configuration) =
diff --git a/docsTool/docsTool.fsproj b/docsTool/docsTool.fsproj
index 384076a..eab38de 100644
--- a/docsTool/docsTool.fsproj
+++ b/docsTool/docsTool.fsproj
@@ -2,7 +2,7 @@
Exe
- net5.0
+ net10.0
false
diff --git a/docsTool/templates/types.fs b/docsTool/templates/types.fs
index c8d5df9..b858022 100644
--- a/docsTool/templates/types.fs
+++ b/docsTool/templates/types.fs
@@ -15,149 +15,110 @@ let generateTypeDocs (model: TypeInfo) (props) =
let byCategory =
members
|> List.groupBy (fun m -> m.Category)
- |> List.sortBy
- (fun (k, v) ->
- if String.IsNullOrEmpty(k) then
- "ZZZ"
- else
- k)
- |> List.mapi
- (fun i (k, v) ->
- { Index = i
- GroupKey = k
- Members =
- v
- |> List.sortBy
- (fun m ->
- if m.Kind = MemberKind.StaticParameter then
- ""
- else
- m.Name)
- Name =
- if String.IsNullOrEmpty(k) then
- "Other type members"
- else
- k })
+ |> List.sortBy (fun (k, v) -> if String.IsNullOrEmpty(k) then "ZZZ" else k)
+ |> List.mapi (fun i (k, v) ->
+ { Index = i
+ GroupKey = k
+ Members =
+ v
+ |> List.sortBy (fun m -> if m.Kind = MemberKind.StaticParameter then "" else m.Name)
+ Name = if String.IsNullOrEmpty(k) then "Other type members" else k })
[ yield h1 [] [ str model.Type.Name ]
yield
- p [] [
- yield! renderObsoleteMessage model.Type
- yield! renderNamespace model.Namespace
- if model.HasParentModule then
- yield br []
+ p
+ []
+ [ yield! renderObsoleteMessage model.Type
+ yield! renderNamespace model.Namespace
+ if model.HasParentModule then
+ yield br []
- yield
- span [] [
- str "Parent Module: "
+ yield
+ span
+ []
+ [ str "Parent Module: "
- a [ Href(sprintf "%s.html" model.ParentModule.Value.UrlName) ] [
- str model.ParentModule.Value.Name
- ]
- ]
+ a
+ [ Href(sprintf "%s.html" model.ParentModule.Value.UrlName) ]
+ [ str model.ParentModule.Value.Name ] ]
- if ``type``.Attributes |> Seq.isEmpty |> not then
- yield br []
+ if ``type``.Attributes |> Seq.isEmpty |> not then
+ yield br []
- yield
- span [] [
- yield str "Attributes: "
+ yield
+ span
+ []
+ [ yield str "Attributes: "
- yield br []
-
- for attr in ``type``.Attributes do
- yield str (attr.Format())
yield br []
- ]
- ]
+
+ for attr in ``type``.Attributes do
+ yield str (attr.Format())
+ yield br [] ] ]
yield
- div [ Class "xmldoc" ] [
- for sec in comment.Sections do
- if byCategory
- |> Seq.exists (fun m -> m.GroupKey = sec.Key)
- |> not then
- if sec.Key <> "" then
- yield h2 [] [ str sec.Key ]
+ div
+ [ Class "xmldoc" ]
+ [ for sec in comment.Sections do
+ if byCategory |> Seq.exists (fun m -> m.GroupKey = sec.Key) |> not then
+ if sec.Key <> "" then
+ yield h2 [] [ str sec.Key ]
- yield RawText sec.Value
- ]
+ yield RawText sec.Value ]
if byCategory |> Seq.length > 1 then
yield h2 [] [ str "Table of contents" ]
yield
- ul [] [
- for g in byCategory do
- yield
- li [] [
- a [ Href(sprintf "#section%d" g.Index) ] [
- str g.Name
- ]
- ]
- ]
+ ul
+ []
+ [ for g in byCategory do
+ yield li [] [ a [ Href(sprintf "#section%d" g.Index) ] [ str g.Name ] ] ]
for g in byCategory do
if byCategory |> Seq.length > 1 then
yield
- h2 [] [
- str g.Name
-
- a [ Name(sprintf "section%d" g.Index) ] [
- str " "
- ]
- ]
-
- match comment.Sections
- |> Seq.tryFind (fun kvp -> kvp.Key = g.GroupKey)
- with
- | Some info ->
- yield
- div [ Class "xmldoc" ] [
- str info.Value
- ]
+ h2
+ []
+ [ str g.Name
+
+ a [ Name(sprintf "section%d" g.Index) ] [ str " " ] ]
+
+ match comment.Sections |> Seq.tryFind (fun kvp -> kvp.Key = g.GroupKey) with
+ | Some info -> yield div [ Class "xmldoc" ] [ str info.Value ]
| None -> yield nothing
yield!
- partMembers
- "Union Cases"
- "Union Case"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.UnionCase))
+ partMembers "Union Cases" "Union Case" (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.UnionCase))
yield!
partMembers
"Record Fields"
"Record Field"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.RecordField))
+ (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.RecordField))
yield!
partMembers
"Static parameters"
"Static parameters"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.StaticParameter))
+ (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.StaticParameter))
yield!
partMembers
"Contructors"
"Constructor"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.Constructor))
+ (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.Constructor))
yield!
partMembers
"Instance members"
"Instance member"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.InstanceMember))
+ (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.InstanceMember))
yield!
partMembers
"Static members"
"Static member"
- (g.Members
- |> Seq.filter (fun m -> m.Kind = MemberKind.StaticMember)) ]
+ (g.Members |> Seq.filter (fun m -> m.Kind = MemberKind.StaticMember)) ]
diff --git a/global.json b/global.json
index 1b8195c..1e7fdfa 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "6.0.100",
+ "version": "10.0.100",
"rollForward": "latestMinor"
}
}
diff --git a/paket.dependencies b/paket.dependencies
index 0bf68e9..ecfade6 100644
--- a/paket.dependencies
+++ b/paket.dependencies
@@ -3,31 +3,31 @@ group Src
source https://api.nuget.org/v3/index.json
storage: none
- nuget FSharp.Core 6.0.1
+ nuget FSharp.Core >= 9.0.100
nuget Microsoft.SourceLink.GitHub 1.0.0 copy_local: true
- nuget Microsoft.EntityFrameworkCore.Design ~> 6.0.0
+ nuget Microsoft.EntityFrameworkCore.Design ~> 10.0.0
group Tests
source https://www.nuget.org/api/v2
source https://api.nuget.org/v3/index.json
storage: none
- nuget System.Collections.Immutable >= 6.0.0
+ nuget System.Collections.Immutable >= 10.0.0
- nuget FSharp.Core 6.0.1
+ nuget FSharp.Core >= 9.0.100
nuget Microsoft.SourceLink.GitHub 1.0.0 copy_local: true
nuget Expecto 9.0.2
nuget YoloDev.Expecto.TestSdk 0.12.10
- nuget Microsoft.NET.Test.Sdk 17.0.0
+ nuget Microsoft.NET.Test.Sdk 17.12.0
nuget altcover ~> 8.2.828
- nuget Microsoft.EntityFrameworkCore.Design ~> 6.0.0
- nuget Microsoft.EntityFrameworkCore.InMemory ~> 6.0.0
- nuget Microsoft.EntityFrameworkCore.Relational ~> 6.0.0
- nuget Microsoft.EntityFrameworkCore.Sqlite ~> 6.0.0
- nuget Microsoft.EntityFrameworkCore.SqlServer ~> 6.0.0
- nuget Microsoft.EntityFrameworkCore.Specification.Tests ~> 6.0.0
- nuget FSharp.Compiler.Service 41.0.1
+ nuget Microsoft.EntityFrameworkCore.Design ~> 10.0.0
+ nuget Microsoft.EntityFrameworkCore.InMemory ~> 10.0.0
+ nuget Microsoft.EntityFrameworkCore.Relational ~> 10.0.0
+ nuget Microsoft.EntityFrameworkCore.Sqlite ~> 10.0.0
+ nuget Microsoft.EntityFrameworkCore.SqlServer ~> 10.0.0
+ nuget Microsoft.EntityFrameworkCore.Specification.Tests ~> 10.0.0
+ nuget FSharp.Compiler.Service 43.9.100
nuget Microsoft.CodeAnalysis >= 3.8.0
nuget NetTopologySuite.IO.SqlServerBytes 2.0.0
nuget System.Runtime.Numerics
@@ -38,34 +38,34 @@ group Build
storage: none
source https://www.nuget.org/api/v2
source https://api.nuget.org/v3/index.json
- nuget Fake.IO.FileSystem 5.20.4
- nuget Fake.Core.Target 5.20.4
- nuget Fake.Core.ReleaseNotes 5.20.4
- nuget FAKE.Core.Environment 5.20.4
- nuget Fake.DotNet.Cli 5.20.4
- nuget FAKE.Core.Process 5.20.4
- nuget Fake.DotNet.AssemblyInfoFile 5.20.4
- nuget Fake.Tools.Git 5.20.4
- nuget Fake.DotNet.Paket 5.20.4
- nuget Fake.Api.GitHub 5.20.4
- nuget Fake.BuildServer.GitHubActions 5.20.4
+ nuget Fake.IO.FileSystem 6.1.4
+ nuget Fake.Core.Target 6.1.4
+ nuget Fake.Core.ReleaseNotes 6.1.4
+ nuget FAKE.Core.Environment 6.1.4
+ nuget Fake.DotNet.Cli 6.1.4
+ nuget FAKE.Core.Process 6.1.4
+ nuget Fake.DotNet.AssemblyInfoFile 6.1.4
+ nuget Fake.Tools.Git 6.1.4
+ nuget Fake.DotNet.Paket 6.1.4
+ nuget Fake.Api.GitHub 6.1.4
+ nuget Fake.BuildServer.GitHubActions 6.1.4
nuget Argu
- nuget Octokit 0.48
+ nuget Octokit >= 13.0.1
group Docs
storage: none
source https://www.nuget.org/api/v2
source https://api.nuget.org/v3/index.json
nuget Argu
- nuget FSharp.Compiler.Service 34.1.0
- nuget FSharp.Core ~> 4.6
- nuget Fake.IO.FileSystem 5.20.4
- nuget FAKE.Core.Environment 5.20.4
- nuget Fake.DotNet.Cli 5.20.4
+ nuget FSharp.Compiler.Service 43.9.100
+ nuget FSharp.Core ~> 9.0
+ nuget Fake.IO.FileSystem 6.1.4
+ nuget FAKE.Core.Environment 6.1.4
+ nuget Fake.DotNet.Cli 6.1.4
nuget FSharp.Formatting 4.0.0-rc1
nuget FSharp.Literate 4.0.0-rc1
nuget Fable.React
- nuget Microsoft.EntityFrameworkCore.Sqlite ~> 5.0.11
+ nuget Microsoft.EntityFrameworkCore.Sqlite ~> 10.0.0
group Analyzers
source https://www.nuget.org/api/v2
diff --git a/paket.lock b/paket.lock
index 10c3470..2db4f74 100644
--- a/paket.lock
+++ b/paket.lock
@@ -6,2416 +6,1128 @@ NUGET
BinaryDefense.FSharp.Analyzers.Hashing (0.2.2)
FSharp.Analyzers.SDK (>= 0.8) - restriction: >= net5.0
FSharp.Core (>= 5.0.1) - restriction: >= net5.0
- FSharp.Analyzers.SDK (0.8) - restriction: >= net5.0
- FSharp.Compiler.Service (>= 39.0) - restriction: >= net5.0
- FSharp.Core (>= 5.0.1) - restriction: >= net5.0
- McMaster.NETCore.Plugins (>= 1.3.1) - restriction: >= net5.0
- FSharp.Compiler.Service (39.0) - restriction: >= net5.0
- FSharp.Core (5.0.1) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.6) - restriction: >= netstandard2.0
- Microsoft.Build.Tasks.Core (>= 16.6) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.6) - restriction: >= netstandard2.0
- System.Buffers (>= 4.5.1) - restriction: >= netstandard2.0
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard2.0
- System.Diagnostics.TraceSource (>= 4.3) - restriction: >= netstandard2.0
- System.Linq.Expressions (>= 4.3) - restriction: >= netstandard2.0
- System.Linq.Queryable (>= 4.3) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Net.Requests (>= 4.3) - restriction: >= netstandard2.0
- System.Net.Security (>= 4.3) - restriction: >= netstandard2.0
- System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime.Loader (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Claims (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Principal (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.Thread (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard2.0
- FSharp.Core (5.0.1) - restriction: >= net5.0
- McMaster.NETCore.Plugins (1.3.1) - restriction: >= net5.0
- Microsoft.DotNet.PlatformAbstractions (>= 3.1) - restriction: >= netcoreapp2.0
- Microsoft.Extensions.DependencyModel (>= 3.1) - restriction: >= netcoreapp2.0
- Microsoft.Build.Framework (16.9) - restriction: >= net5.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.Build.Tasks.Core (16.9) - restriction: >= net5.0
- Microsoft.Build.Framework (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.CodeDom (>= 4.4) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 1.6) - restriction: && (< net472) (>= netstandard2.0)
- System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net472) (>= netstandard2.0)
- System.Resources.Extensions (>= 4.6) - restriction: >= netstandard2.0
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Pkcs (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Xml (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (16.9) - restriction: >= net5.0
- Microsoft.Build.Framework (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.DotNet.PlatformAbstractions (3.1.6) - restriction: >= net5.0
- Microsoft.Extensions.DependencyModel (5.0) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (5.0.2) - restriction: >= net5.0
- Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.2)) (&& (< monoandroid) (>= net5.0) (< netstandard1.3)) (&& (< monoandroid) (>= net5.0) (< netstandard1.5)) (&& (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.Win32.Primitives (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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 (5.0) - restriction: >= net5.0
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= monotouch) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- Microsoft.Win32.SystemEvents (5.0) - restriction: && (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Net.Http (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Net.Security (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Buffers (4.5.1) - restriction: >= net5.0
- System.CodeDom (5.0) - restriction: >= net5.0
- System.Collections (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Collections.Immutable (5.0) - restriction: >= net5.0
- System.Diagnostics.Debug (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Diagnostics.DiagnosticSource (5.0.1) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Process (4.3) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4))
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4))
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Thread (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.TraceSource (4.3) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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.Drawing.Common (5.0.2) - restriction: >= net5.0
- Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Formats.Asn1 (5.0) - restriction: >= net5.0
- System.Globalization (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization.Extensions (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< 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.FileSystem (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- 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.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: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq.Expressions (4.3) - restriction: >= net5.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< 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: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq.Queryable (4.3) - restriction: >= net5.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.4) - restriction: >= net5.0
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Net.Http (4.3.4) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Globalization (>= 4.3) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (>= net46)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< 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.1) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.1)) (&& (< monoandroid) (>= net5.0) (< netstandard1.3)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< 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.3) - restriction: || (&& (< 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.1) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Requests (4.3) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< 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.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< 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.Net.WebHeaderCollection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Net.Security (4.3.2) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Security (>= 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: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Globalization.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Security.Claims (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.6)) (>= net46)
- System.Security.Principal (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6))
- System.Net.WebHeaderCollection (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 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.ObjectModel (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.2)) (&& (< monoandroid) (>= net5.0) (< netstandard1.3)) (&& (< monoandroid) (>= net5.0) (< netstandard1.5)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< 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.7) - restriction: >= net5.0
- System.Reflection.Emit.ILGeneration (4.7) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (4.7) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Metadata (5.0) - restriction: >= net5.0
- System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.2)) (&& (< monoandroid) (>= net5.0) (< netstandard1.3)) (&& (< monoandroid) (>= net5.0) (< netstandard1.5)) (&& (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (4.7) - restriction: >= net5.0
- System.Resources.Extensions (5.0) - restriction: >= net5.0
- System.Resources.ResourceManager (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (4.3.1) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< 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.3) - restriction: || (&& (< 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 (5.0) - restriction: || (&& (>= monoandroid) (>= net5.0) (< netcoreapp2.0)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.0)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.1)) (&& (< monoandroid) (>= net5.0) (< netstandard1.1)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0)) (&& (>= monotouch) (>= net5.0)) (&& (>= net45) (>= net5.0) (< netstandard2.0)) (&& (>= net461) (>= net5.0)) (&& (>= net5.0) (< netstandard1.1) (>= win8)) (&& (>= net5.0) (< netstandard2.0) (>= wpa81)) (&& (>= net5.0) (>= uap10.1)) (&& (>= net5.0) (>= xamarinios)) (&& (>= net5.0) (>= xamarinmac)) (&& (>= net5.0) (>= xamarintvos)) (&& (>= net5.0) (>= xamarinwatchos))
- System.Runtime.Extensions (4.3.1) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< 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.3) - restriction: || (&& (< 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.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
- System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.5)) (&& (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= 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) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= 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) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= 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) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= 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) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= 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) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Loader (4.3) - restriction: >= net5.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: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.AccessControl (5.0) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Security.Claims (4.3) - restriction: >= net5.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< 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: || (&& (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< 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: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Cng (5.0) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (>= net46) (>= net5.0)) (&& (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 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.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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)
- System.Collections.Concurrent (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 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.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 (5.0) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Cryptography.Pkcs (5.0.1) - restriction: >= net5.0
- System.Formats.Asn1 (>= 5.0) - restriction: || (&& (>= monoandroid) (< netcoreapp2.0) (< netstandard2.1)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (< monoandroid) (< netcoreapp2.0) (>= netstandard2.1)) (>= monotouch) (>= netcoreapp3.0) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< 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)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.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: || (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< 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: && (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization.Calendars (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< 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: && (< 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.Algorithms (>= 4.3) - restriction: || (&& (< 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: && (< 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: || (&& (< 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: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Xml (5.0) - restriction: >= net5.0
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (&& (< net461) (>= netstandard2.0)) (>= netcoreapp2.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (5.0) - restriction: >= net5.0
- System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Principal (4.3) - restriction: >= net5.0
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Principal.Windows (5.0) - restriction: >= net5.0
- System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encoding.CodePages (5.0) - restriction: >= net5.0
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net5.0)
- System.Text.Encoding.Extensions (4.3) - restriction: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< 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: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: || (&& (< 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: && (< monoandroid) (>= net5.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Threading.Tasks.Dataflow (5.0) - restriction: >= net5.0
- System.Threading.Tasks.Parallel (4.3) - restriction: >= net5.0
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Threading.Thread (4.3) - restriction: >= net5.0
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (4.3) - restriction: >= net5.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.Windows.Extensions (5.0) - restriction: >= net5.0
- System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
+ FSharp.Analyzers.SDK (0.16) - restriction: >= net5.0
+ FSharp.Compiler.Service (>= 43.7.400) - restriction: >= net6.0
+ FSharp.Core (>= 7.0.400) - restriction: >= net6.0
+ McMaster.NETCore.Plugins (>= 1.4) - restriction: >= net6.0
+ FSharp.Compiler.Service (43.12.201) - restriction: >= net6.0
+ FSharp.Core (10.1.201) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 9.0) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 9.0) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6) - restriction: >= netstandard2.0
+ System.Reflection.Emit (>= 4.7) - restriction: >= netstandard2.0
+ System.Reflection.Metadata (>= 9.0) - restriction: >= netstandard2.0
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: >= netstandard2.0
+ FSharp.Core (10.1.201) - restriction: >= net5.0
+ McMaster.NETCore.Plugins (2.0) - restriction: >= net6.0
+ System.Buffers (4.6.1) - restriction: >= net6.0
+ System.Collections.Immutable (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net6.0) (&& (>= net8.0) (< net9.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Diagnostics.DiagnosticSource (10.0.5) - restriction: >= net6.0
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (4.6.3) - restriction: >= net6.0
+ System.Reflection.Emit (4.7) - restriction: >= net6.0
+ System.Reflection.Metadata (10.0.5) - restriction: >= net6.0
+ System.Collections.Immutable (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (6.1.2) - restriction: >= net6.0
GROUP Build
STORAGE: NONE
NUGET
remote: https://www.nuget.org/api/v2
- Argu (6.1.1)
- FSharp.Core (>= 4.3.2) - restriction: >= netstandard2.0
+ Argu (6.2.5)
+ FSharp.Core (>= 6.0) - restriction: >= netstandard2.0
System.Configuration.ConfigurationManager (>= 4.4) - restriction: >= netstandard2.0
BlackFox.VsWhere (1.1) - restriction: >= netstandard2.0
FSharp.Core (>= 4.0.0.1) - restriction: >= net45
FSharp.Core (>= 4.2.3) - restriction: && (< net45) (>= netstandard2.0)
Microsoft.Win32.Registry (>= 4.7) - restriction: && (< net45) (>= netstandard2.0)
- Fake.Api.GitHub (5.20.4)
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Octokit (>= 0.48) - restriction: >= netstandard2.0
- Fake.BuildServer.GitHubActions (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: || (>= net462) (>= netstandard2.0)
- Fake.Core.Trace (>= 5.20.4) - restriction: || (>= net462) (>= netstandard2.0)
- Fake.IO.FileSystem (>= 5.20.4) - restriction: || (>= net462) (>= netstandard2.0)
- FSharp.Core (>= 4.7.2) - restriction: && (< net462) (>= netstandard2.0)
- Fake.Core.CommandLineParsing (5.20.4) - restriction: >= netstandard2.0
+ Fake.Api.GitHub (6.1.4)
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Octokit (>= 13.0.1) - restriction: >= netstandard2.0
+ Fake.BuildServer.GitHubActions (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.CommandLineParsing (6.1.4) - restriction: >= netstandard2.0
FParsec (>= 1.1.1) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Context (5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Environment (5.20.4)
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Context (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Process (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- System.Collections.Immutable (>= 1.7.1) - restriction: >= netstandard2.0
- Fake.Core.ReleaseNotes (5.20.4)
- Fake.Core.SemVer (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.SemVer (5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.String (5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Target (5.20.4)
- Fake.Core.CommandLineParsing (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Context (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Control.Reactive (>= 4.4.2) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Tasks (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Trace (5.20.4) - restriction: || (>= net462) (>= netstandard2.0)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Xml (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.DotNet.AssemblyInfoFile (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.DotNet.Cli (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.DotNet.MSBuild (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.DotNet.NuGet (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Context (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Environment (6.1.4)
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Context (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Process (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 8.0) - restriction: >= netstandard2.0
+ Fake.Core.ReleaseNotes (6.1.4)
+ Fake.Core.SemVer (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.SemVer (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.String (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Target (6.1.4)
+ Fake.Core.CommandLineParsing (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Context (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Control.Reactive (>= 5.0.2) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Tasks (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Trace (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Xml (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.DotNet.AssemblyInfoFile (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.DotNet.Cli (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.DotNet.MSBuild (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.DotNet.NuGet (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
Mono.Posix.NETStandard (>= 1.0) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 12.0.3) - restriction: >= netstandard2.0
- Fake.DotNet.MSBuild (5.20.4) - restriction: >= netstandard2.0
+ Fake.DotNet.MSBuild (6.1.4) - restriction: >= netstandard2.0
BlackFox.VsWhere (>= 1.1) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- MSBuild.StructuredLogger (>= 2.1.176) - restriction: >= netstandard2.0
- Fake.DotNet.NuGet (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.SemVer (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Tasks (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Xml (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Net.Http (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 12.0.3) - restriction: >= netstandard2.0
- NuGet.Protocol (>= 5.6) - restriction: >= netstandard2.0
- Fake.DotNet.Paket (5.20.4)
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.DotNet.Cli (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (5.20.4)
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Net.Http (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Tools.Git (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.SemVer (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ MSBuild.StructuredLogger (>= 2.1.815) - restriction: >= netstandard2.0
+ Fake.DotNet.NuGet (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.SemVer (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Tasks (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Xml (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Net.Http (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= netstandard2.0
+ NuGet.Protocol (>= 6.12.4) - restriction: >= netstandard2.0
+ Fake.DotNet.Paket (6.1.4)
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.DotNet.Cli (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (6.1.4)
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Net.Http (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Tools.Git (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.SemVer (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
FParsec (1.1.1) - restriction: >= netstandard2.0
FSharp.Core (>= 4.3.4) - restriction: || (>= net45) (>= netstandard2.0)
System.ValueTuple (>= 4.4) - restriction: >= net45
- FSharp.Control.Reactive (5.0.2) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- System.Reactive (>= 5.0) - restriction: >= netstandard2.0
- FSharp.Core (5.0.1) - restriction: >= netstandard2.0
- Microsoft.Bcl.AsyncInterfaces (5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.1)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= netcoreapp2.1) (>= uap10.1))
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (>= net461) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
- Microsoft.Build (16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.9) - restriction: || (>= net472) (>= netcoreapp2.1)
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: >= netcoreapp2.1
- System.Collections.Immutable (>= 5.0) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Memory (>= 4.5.4) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Reflection.Metadata (>= 1.6) - restriction: >= netcoreapp2.1
- System.Security.Principal.Windows (>= 4.7) - restriction: >= netcoreapp2.1
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: >= netcoreapp2.1
- System.Text.Json (>= 4.7) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: || (>= net472) (>= netcoreapp2.1)
- Microsoft.Build.Framework (16.9) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.Build.Tasks.Core (16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.CodeDom (>= 4.4) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 1.6) - restriction: && (< net472) (>= netstandard2.0)
- System.Reflection.TypeExtensions (>= 4.1) - restriction: && (< net472) (>= netstandard2.0)
- System.Resources.Extensions (>= 4.6) - restriction: >= netstandard2.0
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Pkcs (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Xml (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.9) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (5.0.2) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< monoandroid) (< net45) (< netcoreapp3.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= net5.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp2.0) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp3.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.VisualStudio.Setup.Configuration.Interop (1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (5.0) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1)
+ FSharp.Control.Reactive (6.1.2) - restriction: >= netstandard2.0
+ FSharp.Core (>= 6.0.7) - restriction: >= netstandard2.0
+ System.Reactive (>= 6.0.1) - restriction: >= netstandard2.0
+ FSharp.Core (10.1.201) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (10.0.5) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (>= netstandard2.0) (< netstandard2.1))
+ Microsoft.Bcl.Cryptography (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (>= net462) (>= net8.0)) (&& (>= net8.0) (< net9.0)) (&& (>= net8.0) (< netstandard2.1))
+ System.Formats.Asn1 (>= 10.0.5) - restriction: || (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1)) (&& (>= netstandard2.0) (< netstandard2.1))
+ Microsoft.Build.Framework (18.4) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 10.0.1) - restriction: >= net472
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: >= net472
+ System.Text.Json (>= 10.0.1) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: >= net472
+ System.ValueTuple (>= 4.6.1) - restriction: >= net472
+ Microsoft.Build.Utilities.Core (18.4) - restriction: >= netstandard2.0
+ Microsoft.Build.Framework (>= 18.4) - restriction: >= netstandard2.0
+ Microsoft.IO.Redist (>= 6.1) - restriction: >= net472
+ Microsoft.NET.StringTools (>= 18.4) - restriction: || (>= net10.0) (>= net472)
+ System.Collections.Immutable (>= 10.0.1) - restriction: >= net472
+ System.Configuration.ConfigurationManager (>= 10.0.1) - restriction: || (>= net10.0) (>= net472)
+ System.Diagnostics.EventLog (>= 10.0.1) - restriction: >= net10.0
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: >= net472
+ System.Security.Cryptography.ProtectedData (>= 10.0.1) - restriction: >= net10.0
+ System.Text.Json (>= 10.0.1) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: >= net472
+ System.ValueTuple (>= 4.6.1) - restriction: >= net472
+ Microsoft.IO.Redist (6.1.3) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: >= net472
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ Microsoft.NET.StringTools (18.4) - restriction: || (>= net10.0) (>= net472)
+ System.Memory (>= 4.6.3) - restriction: || (&& (< net10.0) (>= netstandard2.0)) (>= net472)
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (&& (< net10.0) (>= netstandard2.0)) (>= net472)
+ Microsoft.NETCore.Platforms (7.0.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarintvos)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinwatchos)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (< netcoreapp2.0) (>= netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) (&& (>= netcoreapp2.1) (>= uap10.1))
+ Microsoft.Win32.Registry (5.0) - restriction: && (< net45) (>= netstandard2.0)
System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- Microsoft.Win32.SystemEvents (5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
Mono.Posix.NETStandard (1.0) - restriction: >= netstandard2.0
- MSBuild.StructuredLogger (2.1.500) - restriction: >= netstandard2.0
- Microsoft.Build (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Tasks.Core (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.4) - restriction: >= netstandard2.0
- Newtonsoft.Json (13.0.1) - restriction: >= netstandard2.0
- NuGet.Common (5.9.1) - restriction: >= netstandard2.0
- NuGet.Frameworks (>= 5.9.1) - restriction: || (>= net45) (>= netstandard2.0)
- NuGet.Configuration (5.9.1) - restriction: >= netstandard2.0
- NuGet.Common (>= 5.9.1) - restriction: || (>= net45) (>= netstandard2.0)
- System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: && (< net45) (>= netstandard2.0)
- NuGet.Frameworks (5.9.1) - restriction: >= netstandard2.0
- NuGet.Packaging (5.9.1) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 9.0.1) - restriction: >= netstandard2.0
- NuGet.Configuration (>= 5.9.1) - restriction: >= netstandard2.0
- NuGet.Versioning (>= 5.9.1) - restriction: >= netstandard2.0
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net5.0)
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net5.0)
- NuGet.Protocol (5.9.1) - restriction: >= netstandard2.0
- NuGet.Packaging (>= 5.9.1) - restriction: >= netstandard2.0
- NuGet.Versioning (5.9.1) - restriction: >= netstandard2.0
- Octokit (0.48)
- System.Buffers (4.5.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard2.0)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.0)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netstandard2.0)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarinwatchos)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.CodeDom (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (5.0) - restriction: || (&& (>= net461) (>= netcoreapp2.1)) (&& (< net5.0) (>= netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netstandard1.1)) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard2.0)) (>= net461) (>= uap10.1)
- System.Configuration.ConfigurationManager (5.0) - restriction: >= netstandard2.0
- System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Drawing.Common (5.0.2) - restriction: >= netcoreapp3.0
- Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Formats.Asn1 (5.0) - restriction: || (&& (>= monoandroid) (>= net5.0) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (>= monotouch) (>= net5.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net5.0) (< netcoreapp2.0)) (&& (>= net5.0) (>= uap10.1)) (&& (>= net5.0) (>= xamarintvos)) (&& (>= net5.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net5.0) (>= xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.IO (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.5) (>= netstandard2.0)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (< net46) (>= net461) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net462) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net47) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.4)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (>= net5.0) (< netstandard1.4)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard1.4)) (&& (>= net463) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard2.0)) (&& (>= net463) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net463) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net5.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netstandard2.0)) (>= net472) (&& (>= net5.0) (>= uap10.1)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1))
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Numerics.Vectors (>= 4.4) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Numerics.Vectors (>= 4.5) - restriction: >= net461
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Numerics.Vectors (4.5) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netstandard2.0)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.0) (>= uap10.1))
- System.Reactive (5.0) - restriction: >= netstandard2.0
- System.Runtime.InteropServices.WindowsRuntime (>= 4.3) - restriction: && (< net472) (< netcoreapp3.1) (>= netstandard2.0)
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (>= net472) (&& (< netcoreapp3.1) (>= netstandard2.0)) (>= uap10.1)
- System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Metadata (5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1)
- System.Collections.Immutable (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< net5.0) (>= netstandard2.0)) (&& (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (>= net461) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81))
- System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Resources.Extensions (5.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: || (>= net461) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp3.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.5) (>= netstandard2.0)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (< net46) (>= net461) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net462) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net47) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.4)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (< net472) (>= netstandard2.0)) (&& (>= net462) (>= net5.0) (< netstandard1.4)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard1.4)) (&& (>= net463) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard2.0)) (&& (>= net463) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net463) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard2.0)) (&& (>= monoandroid) (< netstandard1.1) (>= netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= net461) (>= netstandard2.0)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (>= net472) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
- System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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: && (< net472) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices.WindowsRuntime (4.3) - restriction: && (< net472) (< netcoreapp3.1) (>= netstandard2.0)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.AccessControl (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0)) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net461) (< net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0))
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< 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.Security.Cryptography.Cng (5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< net472) (>= netstandard2.0)) (>= net5.0) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: && (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< net462) (< netstandard1.6)) (&& (>= net462) (< netstandard1.6)) (>= net47)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (< net46) (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net47) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard1.4)) (&& (>= net463) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard2.0)) (&& (>= net463) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net463) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0))
- System.Security.Cryptography.Pkcs (5.0.1) - restriction: || (&& (>= monotouch) (>= netstandard2.0)) (&& (< net461) (>= netstandard2.0)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.Buffers (>= 4.5.1) - restriction: && (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= net47) (>= netstandard2.0)) (&& (>= net461) (< net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.4)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (>= net461) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net462) (>= net5.0) (< netstandard1.4)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net463) (>= net5.0) (< netstandard1.4)) (&& (>= net463) (>= net5.0) (< netstandard1.6)) (&& (>= net463) (>= net5.0) (< netstandard2.0)) (&& (>= net463) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net463) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0)) (&& (>= net47) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net47) (< netstandard1.6) (>= netstandard2.0))
- System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: && (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Xml (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: && (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net461) (>= netstandard2.0)) (>= netcoreapp2.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (5.0) - restriction: >= netstandard2.0
- System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0)) (&& (>= net461) (>= netstandard2.0)) (>= netcoreapp2.0) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ MSBuild.StructuredLogger (2.3.154) - restriction: >= netstandard2.0
+ Microsoft.Build.Framework (>= 17.5) - restriction: >= netstandard2.0
+ Microsoft.Build.Utilities.Core (>= 17.5) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 8.0) - restriction: && (< net10.0) (>= netstandard2.0)
+ System.Memory (>= 4.6) - restriction: && (< net10.0) (>= netstandard2.0)
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net10.0) (>= netstandard2.0)
+ Newtonsoft.Json (13.0.4) - restriction: >= netstandard2.0
+ NuGet.Common (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Frameworks (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Collections.Immutable (>= 8.0) - restriction: >= net472
+ NuGet.Configuration (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Common (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Security.Cryptography.ProtectedData (>= 8.0) - restriction: >= net8.0
+ NuGet.Frameworks (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Packaging (7.3) - restriction: || (>= net472) (>= net8.0)
+ Newtonsoft.Json (>= 13.0.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Configuration (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Versioning (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Security.Cryptography.Pkcs (>= 8.0.1) - restriction: >= net8.0
+ System.Text.Json (>= 8.0.5) - restriction: >= net472
+ NuGet.Protocol (7.3) - restriction: >= netstandard2.0
+ NuGet.Packaging (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Text.Json (>= 8.0.5) - restriction: >= net472
+ NuGet.Versioning (7.3) - restriction: || (>= net472) (>= net8.0)
+ Octokit (14.0)
+ System.Buffers (4.6.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= net462) (>= netstandard2.0)) (>= net472) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Collections.Immutable (10.0.5) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Configuration.ConfigurationManager (10.0.5) - restriction: >= netstandard2.0
+ System.Diagnostics.EventLog (>= 10.0.5) - restriction: >= net8.0
+ System.Security.Cryptography.ProtectedData (>= 10.0.5) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Diagnostics.EventLog (10.0.5) - restriction: >= net8.0
+ System.Formats.Asn1 (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (>= net462) (>= net8.0)) (&& (>= net462) (>= net9.0)) (&& (>= net8.0) (< net9.0)) (&& (>= net8.0) (< netstandard2.1)) (&& (< net8.0) (>= net9.0)) (&& (>= net9.0) (< netstandard2.1))
+ System.IO.Pipelines (10.0.5) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (4.6.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net10.0) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net462) (>= netstandard2.0)) (>= net472) (&& (< net8.0) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (4.6.1) - restriction: || (&& (>= net462) (>= netstandard2.0)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Reactive (6.1) - restriction: >= netstandard2.0
+ System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (>= net472) (&& (< net6.0) (>= netstandard2.0)) (>= uap10.1)
+ System.Runtime.CompilerServices.Unsafe (6.1.2) - restriction: || (&& (< net10.0) (>= netstandard2.0)) (&& (>= net462) (>= netstandard2.0)) (>= net472) (&& (< net8.0) (>= netstandard2.0)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Security.AccessControl (6.0.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (>= net461) (&& (< net6.0) (>= netstandard2.0))
+ System.Security.Cryptography.Pkcs (10.0.5) - restriction: >= net8.0
+ Microsoft.Bcl.Cryptography (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1)) (&& (>= netstandard2.0) (< netstandard2.1))
+ System.Formats.Asn1 (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (< net462) (>= netstandard2.0) (< netstandard2.1)) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1))
+ System.Security.Cryptography.ProtectedData (10.0.5) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Memory (>= 4.6.3) - restriction: && (< net462) (< net8.0) (>= netstandard2.0)
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
- System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.5) (>= netstandard2.0)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net5.0)
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net5.0) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461)
- System.Text.Encodings.Web (5.0.1) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.1)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarintvos)) (&& (>= netcoreapp2.1) (< netstandard2.0) (>= xamarinwatchos)) (&& (>= netcoreapp2.1) (>= uap10.1))
- System.Buffers (>= 4.5.1) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (>= net461)
- System.Memory (>= 4.5.4) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (>= net461) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (>= uap10.1)
- System.Text.Json (5.0.2) - restriction: || (>= net472) (>= netcoreapp2.1)
- Microsoft.Bcl.AsyncInterfaces (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Numerics.Vectors (>= 4.5) - restriction: || (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Text.Encodings.Web (>= 5.0.1) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.ValueTuple (>= 4.5) - restriction: >= net461
- System.Threading.Tasks (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp1.1) (< netstandard1.5) (>= netstandard2.0)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Threading.Tasks.Dataflow (5.0) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (4.5.4) - restriction: || (&& (>= net461) (>= netcoreapp2.1)) (>= net472) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (< netcoreapp3.1) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.1))
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= wp8)
- System.ValueTuple (4.5) - restriction: || (&& (>= net45) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.1)) (>= net472)
- System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
- System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Text.Encodings.Web (10.0.5) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Text.Json (10.0.5) - restriction: >= net472
+ Microsoft.Bcl.AsyncInterfaces (>= 10.0.5) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.IO.Pipelines (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Text.Encodings.Web (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.ValueTuple (>= 4.6.1) - restriction: >= net462
+ System.Threading.Tasks.Extensions (4.6.3) - restriction: || (>= net472) (&& (< net6.0) (>= netstandard2.0)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.ValueTuple (4.6.2) - restriction: || (&& (>= net45) (>= netstandard2.0)) (>= net472)
GROUP Docs
STORAGE: NONE
NUGET
remote: https://www.nuget.org/api/v2
- Argu (6.1.1)
- FSharp.Core (>= 4.3.2) - restriction: >= netstandard2.0
+ Argu (6.2.5)
+ FSharp.Core (>= 6.0) - restriction: >= netstandard2.0
System.Configuration.ConfigurationManager (>= 4.4) - restriction: >= netstandard2.0
BlackFox.VsWhere (1.1) - restriction: >= netstandard2.0
FSharp.Core (>= 4.0.0.1) - restriction: >= net45
FSharp.Core (>= 4.2.3) - restriction: && (< net45) (>= netstandard2.0)
Microsoft.Win32.Registry (>= 4.7) - restriction: && (< net45) (>= netstandard2.0)
- Fable.Browser.Blob (1.1) - restriction: >= netstandard2.0
- Fable.Core (>= 3.0) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.6.2) - restriction: >= netstandard2.0
- Fable.Browser.Dom (2.3) - restriction: >= netstandard2.0
- Fable.Browser.Blob (>= 1.1) - restriction: >= netstandard2.0
- Fable.Browser.Event (>= 1.3) - restriction: >= netstandard2.0
- Fable.Browser.WebStorage (>= 1.0) - restriction: >= netstandard2.0
- Fable.Core (>= 3.0) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fable.Browser.Event (1.3) - restriction: >= netstandard2.0
- Fable.Browser.Gamepad (>= 1.0) - restriction: >= netstandard2.0
- Fable.Core (>= 3.0) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fable.Browser.Gamepad (1.0) - restriction: >= netstandard2.0
- Fable.Core (>= 3.0) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fable.Browser.WebStorage (1.0) - restriction: >= netstandard2.0
- Fable.Browser.Event (>= 1.0) - restriction: >= netstandard2.0
- Fable.Core (>= 3.0) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.5.2) - restriction: >= netstandard2.0
- Fable.Core (3.2.7) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fable.React (7.4)
- Fable.Browser.Dom (>= 2.0.1) - restriction: >= netstandard2.0
- Fable.Core (>= 3.1.5) - restriction: >= netstandard2.0
+ Fable.Browser.Blob (1.4) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.8) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Context (5.20.4) - restriction: >= netstandard2.0
+ Fable.Browser.Dom (2.20) - restriction: >= netstandard2.0
+ Fable.Browser.Blob (>= 1.4) - restriction: >= netstandard2.0
+ Fable.Browser.Event (>= 1.7) - restriction: >= netstandard2.0
+ Fable.Browser.WebStorage (>= 1.3) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.8) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Environment (5.20.4)
+ Fable.Browser.Event (1.7) - restriction: >= netstandard2.0
+ Fable.Browser.Gamepad (>= 1.3) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.8) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Context (>= 5.20.4) - restriction: >= netstandard2.0
+ Fable.Browser.Gamepad (1.3) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.8) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Process (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
+ Fable.Browser.WebStorage (1.3) - restriction: >= netstandard2.0
+ Fable.Browser.Event (>= 1.6) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.8) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- System.Collections.Immutable (>= 1.7.1) - restriction: >= netstandard2.0
- Fake.Core.SemVer (5.20.4) - restriction: >= netstandard2.0
+ Fable.Core (4.5) - restriction: >= netstandard2.0
+ Fable.React (9.4)
+ Fable.React.Types (>= 18.3) - restriction: >= netstandard2.0
+ Fable.ReactDom.Types (>= 18.2) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.String (5.20.4) - restriction: >= netstandard2.0
+ Fable.React.Types (18.4) - restriction: >= netstandard2.0
+ Fable.Browser.Dom (>= 2.4.4) - restriction: >= netstandard2.0
+ Fable.Core (>= 3.2.7) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Tasks (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Trace (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.FakeVar (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Core.Xml (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.DotNet.Cli (5.20.4)
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.DotNet.MSBuild (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.DotNet.NuGet (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
+ Fable.ReactDom.Types (18.2) - restriction: >= netstandard2.0
+ Fable.React.Types (>= 18.3) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
+ Fake.Core.Context (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Environment (6.1.4)
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Context (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Process (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 8.0) - restriction: >= netstandard2.0
+ Fake.Core.SemVer (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.String (6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Tasks (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Trace (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.FakeVar (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Core.Xml (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.DotNet.Cli (6.1.4)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.DotNet.MSBuild (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.DotNet.NuGet (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
Mono.Posix.NETStandard (>= 1.0) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 12.0.3) - restriction: >= netstandard2.0
- Fake.DotNet.MSBuild (5.20.4) - restriction: >= netstandard2.0
+ Fake.DotNet.MSBuild (6.1.4) - restriction: >= netstandard2.0
BlackFox.VsWhere (>= 1.1) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- MSBuild.StructuredLogger (>= 2.1.176) - restriction: >= netstandard2.0
- Fake.DotNet.NuGet (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Environment (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Process (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.SemVer (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Tasks (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Xml (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (>= 5.20.4) - restriction: >= netstandard2.0
- Fake.Net.Http (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 12.0.3) - restriction: >= netstandard2.0
- NuGet.Protocol (>= 5.6) - restriction: >= netstandard2.0
- Fake.IO.FileSystem (5.20.4)
- Fake.Core.String (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- Fake.Net.Http (5.20.4) - restriction: >= netstandard2.0
- Fake.Core.Trace (>= 5.20.4) - restriction: >= netstandard2.0
- FSharp.Core (>= 4.7.2) - restriction: >= netstandard2.0
- FSharp.Compiler.Service (34.1)
- FSharp.Core (>= 4.6.2) - restriction: || (>= net461) (>= netstandard2.0)
- System.Buffers (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- System.Collections.Immutable (>= 1.5) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.Process (>= 4.1) - restriction: && (< net461) (>= netstandard2.0)
- System.Diagnostics.TraceSource (>= 4.0) - restriction: && (< net461) (>= netstandard2.0)
- System.Memory (>= 4.5.3) - restriction: || (>= net461) (>= netstandard2.0)
- System.Reflection.Emit (>= 4.3) - restriction: && (< net461) (>= netstandard2.0)
- System.Reflection.Metadata (>= 1.6) - restriction: || (>= net461) (>= netstandard2.0)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< net461) (>= netstandard2.0)
- System.Runtime.Loader (>= 4.0) - restriction: && (< net461) (>= netstandard2.0)
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< net461) (>= netstandard2.0)
- System.ValueTuple (>= 4.4) - restriction: >= net461
- FSharp.Core (4.7.2)
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ MSBuild.StructuredLogger (>= 2.1.815) - restriction: >= netstandard2.0
+ Fake.DotNet.NuGet (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Environment (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Process (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.SemVer (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Tasks (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Xml (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Net.Http (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= netstandard2.0
+ NuGet.Protocol (>= 6.12.4) - restriction: >= netstandard2.0
+ Fake.IO.FileSystem (6.1.4)
+ Fake.Core.String (>= 6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ Fake.Net.Http (6.1.4) - restriction: >= netstandard2.0
+ Fake.Core.Trace (>= 6.1.4) - restriction: >= netstandard2.0
+ FSharp.Core (>= 8.0.400) - restriction: >= netstandard2.0
+ FSharp.Compiler.Service (43.9.100)
+ FSharp.Core (9.0.100) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.5.1) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 8.0) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 8.0) - restriction: >= netstandard2.0
+ System.Memory (>= 4.5.5) - restriction: >= netstandard2.0
+ System.Reflection.Emit (>= 4.7) - restriction: >= netstandard2.0
+ System.Reflection.Metadata (>= 8.0) - restriction: >= netstandard2.0
+ System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: >= netstandard2.0
+ FSharp.Core (9.0.100)
FSharp.Formatting (4.0.0-rc1)
FSharp.Compiler.Service (>= 34.1) - restriction: >= netstandard2.0
FSharp.Literate (4.0.0-rc1)
FSharp.Compiler.Service (>= 34.1) - restriction: >= netstandard2.0
FSharp.Core (>= 4.7) - restriction: >= netstandard2.0
- Microsoft.Bcl.AsyncInterfaces (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinios)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinmac)) (&& (>= monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monoandroid) (< netstandard2.0) (>= xamarinios)) (&& (>= monoandroid) (< netstandard2.0) (>= xamarinmac)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= monotouch) (>= xamarinios)) (&& (>= monotouch) (>= xamarinmac)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarintvos)) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinios) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinios) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinmac) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinmac) (>= xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
- Microsoft.Build (16.9) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.9) - restriction: || (>= net472) (>= netcoreapp2.1)
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: >= netcoreapp2.1
- System.Collections.Immutable (>= 5.0) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Memory (>= 4.5.4) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Reflection.Metadata (>= 1.6) - restriction: >= netcoreapp2.1
- System.Security.Principal.Windows (>= 4.7) - restriction: >= netcoreapp2.1
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: >= netcoreapp2.1
- System.Text.Json (>= 4.7) - restriction: || (>= net472) (>= netcoreapp2.1)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: || (>= net472) (>= netcoreapp2.1)
- Microsoft.Build.Framework (16.11) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.Build.Tasks.Core (16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.NET.StringTools (>= 1.0) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.CodeDom (>= 4.4) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 1.6) - restriction: && (< net472) (>= netstandard2.0)
- System.Resources.Extensions (>= 4.6) - restriction: >= netstandard2.0
- System.Security.Cryptography.Pkcs (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Xml (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.NET.StringTools (>= 1.0) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Configuration.ConfigurationManager (>= 4.7) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.Data.Sqlite.Core (5.0.11) - restriction: >= netstandard2.1
- SQLitePCLRaw.core (>= 2.0.4) - restriction: >= netstandard2.0
- Microsoft.DotNet.PlatformAbstractions (3.1.6) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore (5.0.11) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Abstractions (>= 5.0.11) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Analyzers (>= 5.0.11) - restriction: >= netstandard2.1
- Microsoft.Extensions.Caching.Memory (>= 5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.DependencyInjection (>= 5.0.2) - restriction: >= netstandard2.1
- Microsoft.Extensions.Logging (>= 5.0) - restriction: >= netstandard2.1
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.1
- System.ComponentModel.Annotations (>= 5.0) - restriction: >= netstandard2.1
- System.Diagnostics.DiagnosticSource (>= 5.0.1) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Abstractions (5.0.11) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Analyzers (5.0.11) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Relational (5.0.11) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore (>= 5.0.11) - restriction: >= netstandard2.1
- Microsoft.Extensions.Configuration.Abstractions (>= 5.0) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Sqlite (5.0.11)
- Microsoft.EntityFrameworkCore.Sqlite.Core (>= 5.0.11) - restriction: >= netstandard2.1
- SQLitePCLRaw.bundle_e_sqlite3 (>= 2.0.4) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Sqlite.Core (5.0.11) - restriction: >= netstandard2.1
- Microsoft.Data.Sqlite.Core (>= 5.0.11) - restriction: >= netstandard2.1
- Microsoft.DotNet.PlatformAbstractions (>= 3.1.6) - restriction: >= netstandard2.1
- Microsoft.EntityFrameworkCore.Relational (>= 5.0.11) - restriction: >= netstandard2.1
- Microsoft.Extensions.DependencyModel (>= 5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.Caching.Abstractions (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.Primitives (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Caching.Memory (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.Caching.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Configuration.Abstractions (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.Primitives (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection (5.0.2) - restriction: >= netstandard2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (5.0) - restriction: || (&& (>= net461) (>= netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.0)
- Microsoft.Extensions.DependencyModel (5.0) - restriction: >= netstandard2.1
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (>= uap10.1)
- System.Text.Encodings.Web (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net5.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (&& (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Text.Json (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net5.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (&& (< net451) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- Microsoft.Extensions.Logging (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.DependencyInjection (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.DiagnosticSource (>= 5.0) - restriction: || (>= net461) (&& (< net5.0) (>= netstandard2.1)) (&& (>= netstandard2.0) (< netstandard2.1))
- Microsoft.Extensions.Logging.Abstractions (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.Options (5.0) - restriction: >= netstandard2.1
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (5.0.1) - restriction: >= netstandard2.1
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- Microsoft.NET.StringTools (1.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: >= netstandard2.0
- Microsoft.NETCore.Platforms (5.0.2) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (>= net5.0) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (>= netcoreapp2.1) (>= uap10.1)) (&& (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.VisualStudio.Setup.Configuration.Interop (1.16.30) - restriction: >= net472
- Microsoft.Win32.Primitives (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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 (5.0) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1)
+ Microsoft.Bcl.AsyncInterfaces (10.0.5) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (>= netstandard2.0) (< netstandard2.1))
+ Microsoft.Bcl.Cryptography (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (>= net462) (>= net8.0)) (&& (>= net8.0) (< net9.0)) (&& (>= net8.0) (< netstandard2.1))
+ System.Formats.Asn1 (>= 10.0.5) - restriction: || (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1)) (&& (>= netstandard2.0) (< netstandard2.1))
+ Microsoft.Build.Framework (18.4) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 10.0.1) - restriction: >= net472
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: >= net472
+ System.Text.Json (>= 10.0.1) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: >= net472
+ System.ValueTuple (>= 4.6.1) - restriction: >= net472
+ Microsoft.Build.Utilities.Core (18.4) - restriction: >= netstandard2.0
+ Microsoft.Build.Framework (>= 18.4) - restriction: >= netstandard2.0
+ Microsoft.IO.Redist (>= 6.1) - restriction: >= net472
+ Microsoft.NET.StringTools (>= 18.4) - restriction: || (>= net10.0) (>= net472)
+ System.Collections.Immutable (>= 10.0.1) - restriction: >= net472
+ System.Configuration.ConfigurationManager (>= 10.0.1) - restriction: || (>= net10.0) (>= net472)
+ System.Diagnostics.EventLog (>= 10.0.1) - restriction: >= net10.0
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: >= net472
+ System.Security.Cryptography.ProtectedData (>= 10.0.1) - restriction: >= net10.0
+ System.Text.Json (>= 10.0.1) - restriction: >= net472
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: >= net472
+ System.ValueTuple (>= 4.6.1) - restriction: >= net472
+ Microsoft.Data.Sqlite.Core (10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Sqlite (10.0.5)
+ Microsoft.EntityFrameworkCore.Sqlite.Core (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.bundle_e_sqlite3 (>= 2.1.11) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Sqlite.Core (10.0.5) - restriction: >= net10.0
+ Microsoft.Data.Sqlite.Core (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Caching.Memory (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Configuration.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (10.0.5) - restriction: >= net10.0
+ Microsoft.IO.Redist (6.1.3) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: >= net472
+ System.Memory (>= 4.6.3) - restriction: >= net472
+ Microsoft.NET.StringTools (18.4) - restriction: || (>= net10.0) (>= net472)
+ System.Memory (>= 4.6.3) - restriction: || (&& (< net10.0) (>= netstandard2.0)) (>= net472)
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (&& (< net10.0) (>= netstandard2.0)) (>= net472)
+ Microsoft.NETCore.Platforms (7.0.4) - restriction: || (&& (>= monoandroid) (>= netcoreapp2.0) (< netstandard1.3)) (&& (>= monoandroid) (>= netcoreapp2.1) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= monotouch) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netcoreapp2.1)) (&& (>= net461) (>= netcoreapp2.0)) (&& (>= net461) (>= netcoreapp2.1)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinios)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarintvos)) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (>= xamarinwatchos)) (&& (>= netcoreapp2.0) (>= uap10.1)) (&& (< netcoreapp2.0) (>= netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0)) (&& (>= netcoreapp2.1) (>= uap10.1))
+ Microsoft.Win32.Registry (5.0) - restriction: && (< net45) (>= netstandard2.0)
System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- Microsoft.Win32.SystemEvents (5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
Mono.Posix.NETStandard (1.0) - restriction: >= netstandard2.0
- MSBuild.StructuredLogger (2.1.500) - restriction: >= netstandard2.0
- Microsoft.Build (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Tasks.Core (>= 16.4) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.4) - restriction: >= netstandard2.0
- Newtonsoft.Json (13.0.1) - restriction: >= netstandard2.0
- NuGet.Common (5.9.1) - restriction: >= netstandard2.0
- NuGet.Frameworks (>= 5.9.1) - restriction: || (>= net45) (>= netstandard2.0)
- NuGet.Configuration (5.9.1) - restriction: >= netstandard2.0
- NuGet.Common (>= 5.9.1) - restriction: || (>= net45) (>= netstandard2.0)
- System.Security.Cryptography.ProtectedData (>= 4.4) - restriction: && (< net45) (>= netstandard2.0)
- NuGet.Frameworks (5.9.1) - restriction: >= netstandard2.0
- NuGet.Packaging (5.9.1) - restriction: >= netstandard2.0
- Newtonsoft.Json (>= 9.0.1) - restriction: >= netstandard2.0
- NuGet.Configuration (>= 5.9.1) - restriction: >= netstandard2.0
- NuGet.Versioning (>= 5.9.1) - restriction: >= netstandard2.0
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net5.0)
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net5.0)
- NuGet.Protocol (5.9.1) - restriction: >= netstandard2.0
- NuGet.Packaging (>= 5.9.1) - restriction: >= netstandard2.0
- NuGet.Versioning (5.9.1) - restriction: >= netstandard2.0
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< net46) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- SQLitePCLRaw.bundle_e_sqlite3 (2.0.7) - restriction: >= netstandard2.1
- SQLitePCLRaw.core (>= 2.0.7) - restriction: || (>= net461) (>= netstandard2.0) (>= xamarintvos)
- SQLitePCLRaw.lib.e_sqlite3 (>= 2.0.7) - restriction: || (&& (< monoandroid8.0) (>= netstandard2.0) (< xamarinios) (< xamarintvos)) (>= net461)
- SQLitePCLRaw.lib.e_sqlite3.android (>= 2.0.7) - restriction: >= monoandroid8.0
- SQLitePCLRaw.lib.e_sqlite3.ios (>= 2.0.7) - restriction: >= xamarinios
- SQLitePCLRaw.lib.e_sqlite3.tvos (>= 2.0.7) - restriction: >= xamarintvos
- SQLitePCLRaw.provider.e_sqlite3 (>= 2.0.7) - restriction: || (>= monoandroid8.0) (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarintvos))
- SQLitePCLRaw.provider.internal (>= 2.0.7) - restriction: || (>= xamarinios) (>= xamarintvos)
- SQLitePCLRaw.core (2.0.7) - restriction: >= netstandard2.1
- System.Memory (>= 4.5.3) - restriction: >= netstandard2.0
- SQLitePCLRaw.lib.e_sqlite3 (2.0.7) - restriction: || (&& (< monoandroid8.0) (>= netstandard2.1) (< xamarinios) (< xamarintvos)) (&& (>= net461) (>= netstandard2.1))
- SQLitePCLRaw.lib.e_sqlite3.android (2.0.7) - restriction: && (>= monoandroid8.0) (>= netstandard2.1)
- SQLitePCLRaw.lib.e_sqlite3.ios (2.0.7) - restriction: >= xamarinios
- SQLitePCLRaw.lib.e_sqlite3.tvos (2.0.7) - restriction: && (>= netstandard2.1) (>= xamarintvos)
- SQLitePCLRaw.provider.e_sqlite3 (2.0.7) - restriction: || (&& (>= monoandroid8.0) (>= netstandard2.1)) (&& (>= netstandard2.1) (< xamarinios) (< xamarintvos))
- SQLitePCLRaw.core (>= 2.0.7)
- SQLitePCLRaw.provider.internal (2.0.7) - restriction: || (&& (>= netstandard2.1) (>= xamarintvos)) (>= xamarinios)
- SQLitePCLRaw.core (>= 2.0.7) - restriction: >= netstandard2.0
- System.Buffers (4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.1)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (>= netstandard2.0) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos))
- System.CodeDom (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net463) (>= netstandard2.0))
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Collections.Immutable (5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard2.0)) (>= net461) (>= uap10.1)
- System.ComponentModel.Annotations (5.0) - restriction: >= netstandard2.1
- System.Configuration.ConfigurationManager (5.0) - restriction: >= netstandard2.0
- System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Diagnostics.DiagnosticSource (5.0.1) - restriction: >= netstandard2.1
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.3)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (>= uap10.1)
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (&& (>= net45) (< netstandard1.3)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Diagnostics.Process (4.3) - restriction: && (< net461) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.TraceSource (4.3) - restriction: && (< net461) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net463) (>= netstandard2.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Drawing.Common (5.0.2) - restriction: >= netcoreapp3.0
- Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Formats.Asn1 (5.0) - restriction: || (&& (>= monoandroid) (>= net5.0) (< netstandard1.3)) (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (>= monotouch) (>= net5.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (>= net5.0) (< netcoreapp2.0)) (&& (>= net5.0) (>= uap10.1)) (&& (>= net5.0) (>= xamarintvos)) (&& (>= net5.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net5.0) (>= xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.IO (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net461) (>= net463) (>= netstandard2.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- 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.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: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= net463) (>= netstandard2.0))
- System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (>= net5.0) (< netcoreapp2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net5.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (>= net5.0) (>= uap10.1)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0) (&& (>= netstandard2.1) (>= uap10.1))
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Numerics.Vectors (>= 4.4) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Numerics.Vectors (>= 4.5) - restriction: >= net461
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Numerics.Vectors (4.5) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monotouch) (>= netstandard2.1)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1))
- System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit (4.7) - restriction: && (< net461) (>= netstandard2.0)
+ MSBuild.StructuredLogger (2.3.154) - restriction: >= netstandard2.0
+ Microsoft.Build.Framework (>= 17.5) - restriction: >= netstandard2.0
+ Microsoft.Build.Utilities.Core (>= 17.5) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 8.0) - restriction: && (< net10.0) (>= netstandard2.0)
+ System.Memory (>= 4.6) - restriction: && (< net10.0) (>= netstandard2.0)
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net10.0) (>= netstandard2.0)
+ Newtonsoft.Json (13.0.4) - restriction: >= netstandard2.0
+ NuGet.Common (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Frameworks (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Collections.Immutable (>= 8.0) - restriction: >= net472
+ NuGet.Configuration (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Common (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Security.Cryptography.ProtectedData (>= 8.0) - restriction: >= net8.0
+ NuGet.Frameworks (7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Packaging (7.3) - restriction: || (>= net472) (>= net8.0)
+ Newtonsoft.Json (>= 13.0.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Configuration (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ NuGet.Versioning (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Security.Cryptography.Pkcs (>= 8.0.1) - restriction: >= net8.0
+ System.Text.Json (>= 8.0.5) - restriction: >= net472
+ NuGet.Protocol (7.3) - restriction: >= netstandard2.0
+ NuGet.Packaging (>= 7.3) - restriction: || (>= net472) (>= net8.0)
+ System.Text.Json (>= 8.0.5) - restriction: >= net472
+ NuGet.Versioning (7.3) - restriction: || (>= net472) (>= net8.0)
+ SourceGear.sqlite3 (3.50.4.5) - restriction: >= net10.0
+ SQLitePCLRaw.bundle_e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SourceGear.sqlite3 (>= 3.50.4.2) - restriction: >= netstandard2.0
+ SQLitePCLRaw.config.e_sqlite3 (>= 3.0.2) - restriction: >= netstandard2.0
+ SQLitePCLRaw.config.e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SQLitePCLRaw.provider.e_sqlite3 (>= 3.0.2) - restriction: || (>= net471) (&& (>= net8.0) (< net8.0-ios) (< net8.0-tvos)) (&& (< net8.0) (>= netstandard2.0))
+ SQLitePCLRaw.core (3.0.2) - restriction: >= net10.0
+ System.Memory (>= 4.6.3) - restriction: >= netstandard2.0
+ SQLitePCLRaw.provider.e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 3.0.2) - restriction: >= netstandard2.0
+ System.Buffers (4.6.1) - restriction: >= netstandard2.0
+ System.Collections.Immutable (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (>= net8.0) (< net9.0)) (>= netstandard2.0)
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Configuration.ConfigurationManager (10.0.5) - restriction: >= netstandard2.0
+ System.Diagnostics.EventLog (>= 10.0.5) - restriction: >= net8.0
+ System.Security.Cryptography.ProtectedData (>= 10.0.5) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Diagnostics.DiagnosticSource (10.0.5) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Diagnostics.EventLog (10.0.5) - restriction: >= net8.0
+ System.Formats.Asn1 (10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (>= net462) (>= net8.0)) (&& (>= net462) (>= net9.0)) (&& (>= net8.0) (< net9.0)) (&& (>= net8.0) (< netstandard2.1)) (&& (< net8.0) (>= net9.0)) (&& (>= net9.0) (< netstandard2.1))
+ System.IO.Pipelines (10.0.5) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (4.6.3) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (4.6.1) - restriction: || (&& (>= net462) (>= netstandard2.0)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Reflection.Emit (4.7) - restriction: >= netstandard2.0
System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1)
System.Reflection.Emit.ILGeneration (4.7) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1))
- System.Reflection.Metadata (5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< net5.0) (>= netstandard2.0)) (&& (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (>= net461) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81))
- System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (4.7) - restriction: && (< net461) (>= netstandard2.0)
- System.Resources.Extensions (5.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: || (>= net461) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net461) (>= net463) (>= netstandard2.0))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.CompilerServices.Unsafe (5.0) - restriction: || (&& (>= monoandroid) (>= netstandard2.1)) (&& (< monoandroid) (< net5.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp3.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= netstandard2.1)) (&& (< monoandroid) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp3.0)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net45) (>= netstandard2.1)) (&& (>= net46) (>= netstandard2.1)) (>= net461) (&& (< netcoreapp2.0) (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.1) (>= xamarinios)) (&& (< netcoreapp2.1) (>= xamarinmac)) (&& (>= netcoreapp3.0) (>= uap10.1)) (&& (< netstandard1.0) (>= netstandard2.1) (>= win8)) (>= netstandard2.0) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= netstandard2.1) (>= wp8)) (&& (>= netstandard2.1) (>= wpa81)) (&& (>= netstandard2.1) (>= xamarintvos)) (&& (>= netstandard2.1) (>= xamarinwatchos)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
- System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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: || (&& (< net46) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Loader (4.3) - restriction: && (< net461) (>= netstandard2.0)
- System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Numerics (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.AccessControl (5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net5.0) (< netstandard1.4)) (&& (< monoandroid) (>= net5.0) (< netstandard1.6)) (&& (< monoandroid) (>= net5.0) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (>= net5.0) (< netstandard1.4)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (>= net461) (< net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net461) (>= net5.0) (< netstandard1.6)) (&& (< net461) (>= netstandard2.0)) (&& (>= net462) (>= net5.0) (< netstandard1.6)) (&& (>= net462) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net47) (< net472) (>= netstandard2.0)) (&& (>= net47) (>= net5.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< 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: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< 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: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Cng (5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< net472) (>= netstandard2.0)) (>= net5.0) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: && (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (>= 4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.6) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monoandroid) (< net46) (>= netstandard1.4) (< netstandard1.6) (< uap10.1)) (&& (>= net46) (< netstandard1.4)) (&& (>= net461) (< net462) (< netstandard1.6)) (&& (>= net462) (< netstandard1.6)) (>= net47)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net461) (>= net463) (>= netstandard2.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections.Concurrent (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 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.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.Pkcs (5.0.1) - restriction: || (&& (>= monotouch) (>= netstandard2.0)) (&& (< net461) (>= netstandard2.0)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.Buffers (>= 4.5.1) - restriction: && (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net461) (>= net463) (>= netstandard2.0))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< net45) (>= netstandard2.0)) (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: && (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Xml (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: && (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net461) (>= netstandard2.0)) (>= netcoreapp2.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (5.0) - restriction: >= netstandard2.0
- System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net46) (>= net461) (>= netstandard2.0)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Reflection.Metadata (10.0.5) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (6.1.2) - restriction: >= netstandard2.0
+ System.Security.AccessControl (6.0.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
+ System.Security.Principal.Windows (>= 5.0) - restriction: || (>= net461) (&& (< net6.0) (>= netstandard2.0))
+ System.Security.Cryptography.Pkcs (10.0.5) - restriction: >= net8.0
+ Microsoft.Bcl.Cryptography (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1)) (&& (>= netstandard2.0) (< netstandard2.1))
+ System.Formats.Asn1 (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (&& (< net462) (>= netstandard2.0) (< netstandard2.1)) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.1))
+ System.Security.Cryptography.ProtectedData (10.0.5) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Memory (>= 4.6.3) - restriction: && (< net462) (< net8.0) (>= netstandard2.0)
+ System.Security.Principal.Windows (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (&& (>= net461) (>= netcoreapp2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (>= netcoreapp2.1) (< netcoreapp3.0))
- System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net463) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encoding.CodePages (5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net5.0)
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (< monoandroid) (< net5.0) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461)
- System.Text.Encoding.Extensions (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encodings.Web (5.0.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinios)) (&& (>= monoandroid) (< netstandard1.3) (>= xamarinmac)) (&& (>= monoandroid) (< netstandard2.0) (>= netstandard2.1)) (&& (>= monoandroid) (< netstandard2.0) (>= xamarinios)) (&& (>= monoandroid) (< netstandard2.0) (>= xamarinmac)) (&& (< monoandroid) (< net5.0) (>= netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netcoreapp2.1) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netcoreapp3.0)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= monotouch) (>= xamarinios)) (&& (>= monotouch) (>= xamarinmac)) (&& (>= net461) (>= netcoreapp3.0)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (>= netcoreapp3.0) (>= uap10.1)) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarintvos)) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinios) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinios) (>= xamarinwatchos)) (&& (< netstandard2.0) (>= xamarinmac) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinmac) (>= xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
- System.Text.Json (5.0.2) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (>= net472) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (>= netcoreapp2.1) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarintvos)) (&& (< netstandard2.0) (>= netstandard2.1) (>= xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1))
- Microsoft.Bcl.AsyncInterfaces (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos))
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Numerics.Vectors (>= 4.5) - restriction: || (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Text.Encodings.Web (>= 5.0.1) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (&& (< monoandroid) (< net5.0) (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= monotouch) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= xamarinios)) (&& (< netcoreapp2.0) (>= xamarinmac)) (&& (< netstandard2.0) (>= xamarintvos)) (&& (< netstandard2.0) (>= xamarinwatchos)) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Threading (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= net463) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.4) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= net463) (>= netstandard2.0)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Threading.Tasks.Dataflow (5.0) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (4.5.4) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= monotouch) (>= netstandard2.1)) (&& (>= net461) (>= netstandard2.1)) (&& (>= net461) (>= xamarinios)) (&& (>= net461) (>= xamarinmac)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netstandard2.1) (>= uap10.1)) (&& (>= uap10.1) (>= xamarinios)) (&& (>= uap10.1) (>= xamarinmac))
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= wp8)
- System.Threading.Thread (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (4.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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.ValueTuple (4.5) - restriction: >= net461
- System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
- System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
+ System.Text.Encodings.Web (10.0.5) - restriction: >= net472
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Text.Json (10.0.5) - restriction: >= net472
+ Microsoft.Bcl.AsyncInterfaces (>= 10.0.5) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.IO.Pipelines (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Text.Encodings.Web (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.ValueTuple (>= 4.6.1) - restriction: >= net462
+ System.Threading.Tasks.Extensions (4.6.3) - restriction: >= net472
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.ValueTuple (4.6.2) - restriction: >= net472
GROUP Src
STORAGE: NONE
NUGET
remote: https://www.nuget.org/api/v2
- FSharp.Core (6.0.1)
- Humanizer.Core (2.11.10) - restriction: >= net6.0
- Microsoft.Build.Tasks.Git (1.0) - copy_local: true
- Microsoft.EntityFrameworkCore (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Abstractions (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Memory (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Logging (>= 6.0) - restriction: >= net6.0
- System.Collections.Immutable (>= 6.0) - restriction: >= net6.0
- System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Analyzers (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Design (6.0)
- Humanizer.Core (>= 2.8.26) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Caching.Memory (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Configuration.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Logging (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Options (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.SourceLink.Common (1.0) - copy_local: true
+ FSharp.Core (9.0.100)
+ Humanizer.Core (3.0.10) - restriction: >= net10.0
+ Microsoft.Build.Framework (18.4) - restriction: >= net10.0
+ Microsoft.Build.Tasks.Git (10.0.201) - copy_local: true
+ System.IO.Hashing (>= 10.0.5) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.CodeAnalysis.Analyzers (5.3) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp (5.3) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (5.3) - restriction: >= net10.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: >= netstandard2.0
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: >= net10.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Workspaces.MSBuild (5.3) - restriction: >= net10.0
+ Humanizer.Core (>= 2.14.1) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Build.Framework (>= 17.11.48) - restriction: >= net8.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.DependencyInjection (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Logging (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Options (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Primitives (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.VisualStudio.SolutionPersistence (>= 1.0.52) - restriction: || (>= net472) (>= net8.0)
+ System.Composition (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.EntityFrameworkCore (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Design (10.0.5)
+ Humanizer.Core (>= 2.14.1) - restriction: >= net10.0
+ Microsoft.Build.Framework (>= 18.0.2) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Workspaces.MSBuild (>= 5.0) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Mono.TextTemplating (>= 3.0) - restriction: >= net10.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Caching.Memory (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Configuration.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (10.0.5) - restriction: >= net10.0
+ Microsoft.SourceLink.Common (10.0.201) - copy_local: true
Microsoft.SourceLink.GitHub (1.0) - copy_local: true
Microsoft.Build.Tasks.Git (>= 1.0)
Microsoft.SourceLink.Common (>= 1.0)
- System.Collections.Immutable (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.DiagnosticSource (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Runtime.CompilerServices.Unsafe (6.0) - restriction: >= net6.0
+ Microsoft.VisualStudio.SolutionPersistence (1.0.52) - restriction: >= net10.0
+ Mono.TextTemplating (3.0) - restriction: >= net10.0
+ System.CodeDom (>= 6.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net6.0)
+ Newtonsoft.Json (13.0.4) - restriction: >= net10.0
+ System.Buffers (4.6.1) - copy_local: true, restriction: || (&& (>= net462) (>= net8.0)) (>= net472)
+ System.CodeDom (10.0.5) - restriction: >= net10.0
+ System.Composition (10.0.5) - restriction: >= net10.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Convention (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.TypedParts (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.AttributedModel (10.0.5) - restriction: >= net10.0
+ System.Composition.Convention (10.0.5) - restriction: >= net10.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (10.0.5) - restriction: >= net10.0
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (10.0.5) - restriction: >= net10.0
+ System.Composition.TypedParts (10.0.5) - restriction: >= net10.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.IO.Hashing (10.0.5) - copy_local: true, restriction: || (>= net472) (>= net8.0)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (4.6.3) - copy_local: true, restriction: || (&& (>= net462) (>= net8.0)) (>= net472)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (4.6.1) - copy_local: true, restriction: || (&& (>= net462) (>= net8.0)) (>= net472)
+ System.Runtime.CompilerServices.Unsafe (6.1.2) - copy_local: true, restriction: || (&& (>= net462) (>= net8.0)) (>= net472)
GROUP Tests
STORAGE: NONE
NUGET
remote: https://www.nuget.org/api/v2
altcover (8.2.828)
- Azure.Core (1.21) - restriction: >= net6.0
- Microsoft.Bcl.AsyncInterfaces (>= 1.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.DiagnosticSource (>= 4.6) - restriction: || (>= net461) (>= netstandard2.0)
- System.Memory.Data (>= 1.0.2) - restriction: || (>= net461) (>= netstandard2.0)
- System.Numerics.Vectors (>= 4.5) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Encodings.Web (>= 4.7.2) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Json (>= 4.6) - restriction: || (>= net461) (>= netstandard2.0)
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (>= net461) (>= netstandard2.0)
- Azure.Identity (1.5) - restriction: >= net6.0
- Azure.Core (>= 1.20) - restriction: >= netstandard2.0
- Microsoft.Identity.Client (>= 4.30.1) - restriction: >= netstandard2.0
- Microsoft.Identity.Client.Extensions.Msal (>= 2.18.4) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: >= netstandard2.0
- System.Text.Json (>= 4.6) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: >= netstandard2.0
- Castle.Core (4.4.1) - restriction: >= net6.0
- NETStandard.Library (>= 1.6.1) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Collections.Specialized (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.ComponentModel (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Dynamic.Runtime (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Reflection (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Reflection.Emit (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Reflection.TypeExtensions (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
- System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< net35) (>= netstandard1.3) (< netstandard1.5)) (&& (< net35) (>= netstandard1.5))
+ Castle.Core (5.2.1) - restriction: >= net10.0
+ System.Diagnostics.EventLog (>= 6.0) - restriction: >= net6.0
Expecto (9.0.2)
FSharp.Core (>= 4.6) - restriction: || (>= net461) (>= netstandard2.0)
Mono.Cecil (>= 0.11.2) - restriction: || (>= net461) (>= netstandard2.0)
- FSharp.Compiler.Service (41.0.1)
- FSharp.Core (6.0.1) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Tasks.Core (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.11) - restriction: >= netstandard2.0
+ FSharp.Compiler.Service (43.9.100)
+ FSharp.Core (9.0.100) - restriction: >= netstandard2.0
System.Buffers (>= 4.5.1) - restriction: >= netstandard2.0
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Diagnostics.Process (>= 4.3) - restriction: >= netstandard2.0
- System.Diagnostics.TraceSource (>= 4.3) - restriction: >= netstandard2.0
- System.Linq.Expressions (>= 4.3) - restriction: >= netstandard2.0
- System.Linq.Queryable (>= 4.3) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Net.Requests (>= 4.3) - restriction: >= netstandard2.0
- System.Net.Security (>= 4.3.1) - restriction: >= netstandard2.0
- System.Reflection.Emit (>= 4.3) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.TypeExtensions (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: >= netstandard2.0
- System.Runtime.InteropServices (>= 4.3) - restriction: >= netstandard2.0
- System.Runtime.Loader (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Claims (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: >= netstandard2.0
- System.Security.Principal (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.Tasks.Parallel (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.Thread (>= 4.3) - restriction: >= netstandard2.0
- System.Threading.ThreadPool (>= 4.3) - restriction: >= netstandard2.0
- FSharp.Core (6.0.1)
- Humanizer.Core (2.11.10) - restriction: >= netstandard2.0
- Microsoft.Bcl.AsyncInterfaces (5.0) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (>= net461) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
- Microsoft.Build.Framework (16.11) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.Build.Tasks.Core (16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Utilities.Core (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.NET.StringTools (>= 1.0) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.CodeDom (>= 4.4) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 1.6) - restriction: && (< net472) (>= netstandard2.0)
- System.Resources.Extensions (>= 4.6) - restriction: >= netstandard2.0
- System.Security.Cryptography.Pkcs (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Cryptography.Xml (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Threading.Tasks.Dataflow (>= 4.9) - restriction: >= netstandard2.0
- Microsoft.Build.Tasks.Git (1.0) - copy_local: true
- Microsoft.Build.Utilities.Core (16.11) - restriction: >= netstandard2.0
- Microsoft.Build.Framework (>= 16.11) - restriction: >= netstandard2.0
- Microsoft.NET.StringTools (>= 1.0) - restriction: >= netstandard2.0
- Microsoft.VisualStudio.Setup.Configuration.Interop (>= 1.16.30) - restriction: >= net472
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Configuration.ConfigurationManager (>= 4.7) - restriction: >= netstandard2.0
- System.Security.Permissions (>= 4.7) - restriction: && (< net472) (>= netstandard2.0)
- System.Text.Encoding.CodePages (>= 4.0.1) - restriction: && (< net472) (>= netstandard2.0)
- Microsoft.CodeAnalysis (3.11)
- Microsoft.CodeAnalysis.CSharp.Workspaces (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.VisualBasic.Workspaces (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (3.3.3) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Analyzers (>= 3.3.2) - restriction: >= netstandard2.0
- System.Collections.Immutable (>= 5.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Reflection.Metadata (>= 5.0) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: >= netstandard2.0
- System.Text.Encoding.CodePages (>= 4.5.1) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.CSharp (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.CSharp.Workspaces (3.11) - restriction: >= netstandard2.0
- Humanizer.Core (>= 2.2) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.CSharp (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Workspaces.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.VisualBasic (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.VisualBasic.Workspaces (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.VisualBasic (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Workspaces.Common (3.11) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Workspaces.Common (3.11) - restriction: >= netstandard2.0
- Humanizer.Core (>= 2.2) - restriction: >= netstandard2.0
- Microsoft.Bcl.AsyncInterfaces (>= 5.0) - restriction: >= netstandard2.0
- Microsoft.CodeAnalysis.Common (3.11) - restriction: >= netstandard2.0
- System.Composition (>= 1.0.31) - restriction: >= netstandard2.0
- System.IO.Pipelines (>= 5.0.1) - restriction: >= netstandard2.0
- Microsoft.CodeCoverage (17.0) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.CSharp (4.7) - restriction: >= net6.0
- Microsoft.Data.SqlClient (3.0.1) - restriction: >= net6.0
- Azure.Identity (>= 1.3) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.Data.SqlClient.SNI.runtime (>= 3.0) - restriction: || (&& (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.Identity.Client (>= 4.22) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.IdentityModel.JsonWebTokens (>= 6.8) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.8) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.Win32.Registry (>= 4.7) - restriction: || (&& (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- System.Configuration.ConfigurationManager (>= 4.7) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- System.Diagnostics.DiagnosticSource (>= 4.7) - restriction: || (&& (>= netcoreapp2.1) (< netstandard2.1)) (>= netcoreapp3.1)
- System.Runtime.Caching (>= 4.7) - restriction: || (&& (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- System.Security.Principal.Windows (>= 4.7) - restriction: || (&& (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- System.Text.Encoding.CodePages (>= 4.7) - restriction: || (&& (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- System.Text.Encodings.Web (>= 4.7.2) - restriction: || (>= net461) (&& (>= netcoreapp2.1) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1)) (&& (< netcoreapp2.1) (>= netstandard2.1)) (>= netcoreapp3.1)
- Microsoft.Data.SqlClient.SNI.runtime (3.0) - restriction: >= net6.0
- Microsoft.Data.Sqlite.Core (6.0) - restriction: >= net6.0
- SQLitePCLRaw.core (>= 2.0.6) - restriction: >= netstandard2.0
- Microsoft.EntityFrameworkCore (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Abstractions (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Analyzers (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Memory (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Logging (>= 6.0) - restriction: >= net6.0
- System.Collections.Immutable (>= 6.0) - restriction: >= net6.0
- System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Analyzers (6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Design (6.0)
- Humanizer.Core (>= 2.8.26) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.InMemory (6.0)
- Microsoft.EntityFrameworkCore (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Proxies (6.0) - restriction: >= net6.0
- Castle.Core (>= 4.4.1) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (6.0)
- Microsoft.EntityFrameworkCore (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Specification.Tests (6.0)
- Microsoft.EntityFrameworkCore (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Proxies (>= 6.0) - restriction: >= net6.0
- NetTopologySuite (>= 2.3) - restriction: >= net6.0
- Newtonsoft.Json (>= 13.0.1) - restriction: >= net6.0
- xunit.assert (>= 2.4.1) - restriction: >= net6.0
- xunit.core (>= 2.4.1) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Sqlite (6.0)
- Microsoft.EntityFrameworkCore.Sqlite.Core (>= 6.0) - restriction: >= net6.0
- SQLitePCLRaw.bundle_e_sqlite3 (>= 2.0.6) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Sqlite.Core (6.0) - restriction: >= net6.0
- Microsoft.Data.Sqlite.Core (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyModel (>= 6.0) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.SqlServer (6.0)
- Microsoft.Data.SqlClient (>= 2.1.4) - restriction: >= net6.0
- Microsoft.EntityFrameworkCore.Relational (>= 6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Caching.Memory (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Caching.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Configuration.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyModel (6.0) - restriction: >= net6.0
- System.Buffers (>= 4.5.1) - restriction: || (>= net461) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: || (>= net461) (>= netstandard2.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Encodings.Web (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Json (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Options (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.DiagnosticSource (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Logging.Abstractions (6.0) - restriction: >= net6.0
- Microsoft.Extensions.Options (6.0) - restriction: >= net6.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Extensions.Primitives (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- Microsoft.Identity.Client (4.37) - restriction: >= net6.0
- Microsoft.CSharp (>= 4.5) - restriction: || (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< xamarinmac)) (>= uap10.0) (>= xamarinios)
- System.ComponentModel.TypeConverter (>= 4.3) - restriction: || (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< uap10.0) (< xamarinmac)) (>= xamarinios)
- System.Runtime.Serialization.Formatters (>= 4.3) - restriction: || (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< xamarinmac)) (>= uap10.0) (>= xamarinios)
- System.Runtime.Serialization.Primitives (>= 4.3) - restriction: || (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< xamarinmac)) (>= uap10.0) (>= xamarinios)
- System.Security.SecureString (>= 4.3) - restriction: || (>= monoandroid10.0) (&& (>= monoandroid9.0) (< netcoreapp2.1)) (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< xamarinmac)) (>= uap10.0) (>= xamarinios)
- System.Xml.XmlDocument (>= 4.3) - restriction: || (&& (< monoandroid9.0) (< net45) (< netcoreapp2.1) (>= netstandard1.3) (< uap10.0) (< xamarinmac)) (>= xamarinios)
- Xamarin.AndroidX.Browser (>= 1.0) - restriction: >= monoandroid10.0
- Microsoft.Identity.Client.Extensions.Msal (2.19.2) - restriction: >= net6.0
- Microsoft.Identity.Client (>= 4.37) - restriction: || (>= net45) (>= netstandard2.0)
- System.Security.Cryptography.ProtectedData (>= 4.5) - restriction: || (&& (< net45) (>= netstandard2.0)) (>= netcoreapp2.1)
- Microsoft.IdentityModel.JsonWebTokens (6.14.1) - restriction: >= net6.0
- Microsoft.IdentityModel.Tokens (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- Microsoft.IdentityModel.Logging (6.14.1) - restriction: >= net6.0
- Microsoft.IdentityModel.Protocols (6.14.1) - restriction: >= net6.0
- Microsoft.IdentityModel.Logging (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- Microsoft.IdentityModel.Tokens (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- Microsoft.IdentityModel.Protocols.OpenIdConnect (6.14.1) - restriction: >= net6.0
- Microsoft.IdentityModel.Protocols (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- System.IdentityModel.Tokens.Jwt (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- Microsoft.IdentityModel.Tokens (6.14.1) - restriction: >= net6.0
- Microsoft.CSharp (>= 4.5) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.IdentityModel.Logging (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- System.Security.Cryptography.Cng (>= 4.5) - restriction: && (< net45) (>= netstandard2.0)
- Microsoft.NET.StringTools (1.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: >= netstandard2.0
- System.Runtime.CompilerServices.Unsafe (>= 5.0) - restriction: >= netstandard2.0
- Microsoft.NET.Test.Sdk (17.0)
- Microsoft.CodeCoverage (>= 17.0) - restriction: || (>= net45) (>= netcoreapp1.0)
- Microsoft.TestPlatform.TestHost (>= 17.0) - 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 (5.0.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0) (&& (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (5.0) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.SourceLink.Common (1.0) - copy_local: true
+ System.Collections.Immutable (>= 8.0) - restriction: >= netstandard2.0
+ System.Diagnostics.DiagnosticSource (>= 8.0) - restriction: >= netstandard2.0
+ System.Memory (>= 4.5.5) - restriction: >= netstandard2.0
+ System.Reflection.Emit (>= 4.7) - restriction: >= netstandard2.0
+ System.Reflection.Metadata (>= 8.0) - restriction: >= netstandard2.0
+ System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: >= netstandard2.0
+ FSharp.Core (9.0.100)
+ Humanizer.Core (3.0.10) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 9.0.10) - restriction: || (>= net48) (&& (< net8.0) (>= netstandard2.0))
+ System.ComponentModel.Annotations (>= 5.0) - restriction: || (>= net48) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net48) (&& (< net8.0) (>= netstandard2.0))
+ Microsoft.Bcl.AsyncInterfaces (10.0.5) - restriction: >= netstandard2.0
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (>= netstandard2.0) (< netstandard2.1))
+ Microsoft.Bcl.Cryptography (10.0.5) - restriction: >= net10.0
+ Microsoft.Build.Framework (18.4) - restriction: >= net10.0
+ Microsoft.Build.Tasks.Git (10.0.201) - copy_local: true
+ System.IO.Hashing (>= 10.0.5) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.CodeAnalysis (5.3)
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (>= 9.0) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.VisualBasic.Workspaces (5.3) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: >= netstandard2.0
+ System.Collections.Immutable (>= 9.0) - restriction: >= netstandard2.0
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 9.0) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6) - restriction: >= netstandard2.0
+ System.Numerics.Vectors (>= 4.6) - restriction: >= netstandard2.0
+ System.Reflection.Metadata (>= 9.0) - restriction: >= netstandard2.0
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: >= netstandard2.0
+ System.Text.Encoding.CodePages (>= 8.0) - restriction: >= netstandard2.0
+ System.Threading.Channels (>= 8.0) - restriction: >= netstandard2.0
+ System.Threading.Tasks.Extensions (>= 4.6) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (5.3) - restriction: >= netstandard2.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (>= 9.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.CSharp (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Collections.Immutable (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Numerics.Vectors (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Reflection.Metadata (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Text.Encoding.CodePages (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Channels (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Tasks.Extensions (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.VisualBasic (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Collections.Immutable (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Numerics.Vectors (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Reflection.Metadata (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Text.Encoding.CodePages (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Tasks.Extensions (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.VisualBasic.Workspaces (5.3) - restriction: >= netstandard2.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (>= 9.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.VisualBasic (5.3) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Collections.Immutable (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Numerics.Vectors (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Reflection.Metadata (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Text.Encoding.CodePages (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Channels (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Tasks.Extensions (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: >= netstandard2.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (>= 9.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: >= netstandard2.0
+ Microsoft.CodeAnalysis.Common (5.3) - restriction: >= netstandard2.0
+ System.Buffers (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Collections.Immutable (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Composition (>= 9.0) - restriction: >= netstandard2.0
+ System.IO.Pipelines (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Numerics.Vectors (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Reflection.Metadata (>= 9.0) - restriction: || (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Text.Encoding.CodePages (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Channels (>= 8.0) - restriction: && (< net8.0) (>= netstandard2.0)
+ System.Threading.Tasks.Extensions (>= 4.6) - restriction: && (< net8.0) (>= netstandard2.0)
+ Microsoft.CodeAnalysis.Workspaces.MSBuild (5.3) - restriction: >= net10.0
+ Humanizer.Core (>= 2.14.1) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Build.Framework (>= 17.11.48) - restriction: >= net8.0
+ Microsoft.CodeAnalysis.Analyzers (>= 5.3.0-2.25625.1) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.CodeAnalysis.Workspaces.Common (5.3) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.DependencyInjection (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Logging (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Options (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.Extensions.Primitives (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.VisualStudio.SolutionPersistence (>= 1.0.52) - restriction: || (>= net472) (>= net8.0)
+ System.Composition (>= 9.0) - restriction: || (>= net472) (>= net8.0)
+ Microsoft.CodeCoverage (18.3) - restriction: || (>= net462) (>= netcoreapp3.1)
+ Microsoft.Data.SqlClient (7.0) - restriction: >= net10.0
+ Microsoft.Bcl.Cryptography (>= 9.0.13) - restriction: >= net9.0
+ Microsoft.Data.SqlClient.Extensions.Abstractions (>= 1.0) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Data.SqlClient.Internal.Logging (>= 1.0) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Data.SqlClient.SNI.runtime (>= 6.0.2) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ Microsoft.Extensions.Caching.Memory (>= 9.0.13) - restriction: >= net9.0
+ Microsoft.IdentityModel.JsonWebTokens (>= 8.16) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 8.16) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.SqlServer.Server (>= 1.0) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Configuration.ConfigurationManager (>= 9.0.13) - restriction: >= net9.0
+ System.Security.Cryptography.Pkcs (>= 9.0.13) - restriction: >= net9.0
+ Microsoft.Data.SqlClient.Extensions.Abstractions (1.0) - restriction: >= net10.0
+ Microsoft.Data.SqlClient.Internal.Logging (>= 1.0) - restriction: >= netstandard2.0
+ Microsoft.Data.SqlClient.Internal.Logging (1.0) - restriction: >= net10.0
+ Microsoft.Data.SqlClient.SNI.runtime (6.0.2) - restriction: >= net10.0
+ Microsoft.Data.Sqlite.Core (10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= netstandard2.0
+ Microsoft.EntityFrameworkCore (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Design (10.0.5)
+ Humanizer.Core (>= 2.14.1) - restriction: >= net10.0
+ Microsoft.Build.Framework (>= 18.0.2) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Workspaces.MSBuild (>= 5.0) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Mono.TextTemplating (>= 3.0) - restriction: >= net10.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.InMemory (10.0.5)
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Proxies (10.0.5) - restriction: >= net10.0
+ Castle.Core (>= 5.2.1) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (10.0.5)
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Specification.Tests (10.0.5)
+ Castle.Core (>= 5.2.1) - restriction: >= net10.0
+ Humanizer.Core (>= 2.14.1) - restriction: >= net10.0
+ Microsoft.Build.Framework (>= 18.0.2) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.CSharp.Workspaces (>= 5.0) - restriction: >= net10.0
+ Microsoft.CodeAnalysis.Workspaces.MSBuild (>= 5.0) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Analyzers (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Design (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Proxies (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Mono.TextTemplating (>= 3.0) - restriction: >= net10.0
+ NetTopologySuite (>= 2.6) - restriction: >= net10.0
+ NetTopologySuite.IO.GeoJSON (>= 4.0) - restriction: >= net10.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= net10.0
+ xunit.assert (>= 2.9.3) - restriction: >= net10.0
+ xunit.core (>= 2.9.3) - restriction: >= net10.0
+ xunit.runner.visualstudio (>= 3.1.3) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Sqlite (10.0.5)
+ Microsoft.EntityFrameworkCore.Sqlite.Core (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.bundle_e_sqlite3 (>= 2.1.11) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Sqlite.Core (10.0.5) - restriction: >= net10.0
+ Microsoft.Data.Sqlite.Core (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 2.1.11) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.SqlServer (10.0.5)
+ Microsoft.Data.SqlClient (>= 6.1.1) - restriction: >= net10.0
+ Microsoft.EntityFrameworkCore.Relational (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Memory (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (>= 10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Caching.Memory (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Caching.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Configuration.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.DependencyInjection.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyModel (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.Logging (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Logging.Abstractions (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Options (10.0.5) - restriction: >= net10.0
+ Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.Extensions.Primitives (10.0.5) - restriction: >= net10.0
+ Microsoft.IdentityModel.Abstractions (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.JsonWebTokens (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.Tokens (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Logging (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.Abstractions (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Protocols (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.Tokens (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Protocols.OpenIdConnect (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.Protocols (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ System.IdentityModel.Tokens.Jwt (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Tokens (8.17) - restriction: >= net10.0
+ Microsoft.Extensions.Logging.Abstractions (>= 8.0) - restriction: >= net8.0
+ Microsoft.IdentityModel.Logging (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.NET.Test.Sdk (17.12)
+ Microsoft.CodeCoverage (>= 17.12) - restriction: || (>= net462) (>= netcoreapp3.1)
+ Microsoft.TestPlatform.TestHost (>= 17.12) - restriction: >= netcoreapp3.1
+ Microsoft.NETCore.Platforms (7.0.4) - restriction: || (&& (< 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 (5.0) - restriction: || (&& (< 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.SourceLink.Common (10.0.201) - copy_local: true
Microsoft.SourceLink.GitHub (1.0) - copy_local: true
Microsoft.Build.Tasks.Git (>= 1.0)
Microsoft.SourceLink.Common (>= 1.0)
- Microsoft.TestPlatform.ObjectModel (17.0) - restriction: >= netcoreapp1.0
- NuGet.Frameworks (>= 4.6.4) - restriction: && (>= netcoreapp1.0) (< netstandard2.0)
- NuGet.Frameworks (>= 5.0) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (< netcoreapp1.0) (>= netstandard2.0) (< uap10.0)) (>= net451) (>= netcoreapp2.1)
- System.Reflection.Metadata (>= 1.6) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (< netcoreapp1.0) (>= netstandard1.3) (< netstandard2.0) (< uap10.0)) (&& (< net45) (< netcoreapp1.0) (>= netstandard2.0) (< uap10.0)) (>= net451) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1)
- Microsoft.TestPlatform.TestHost (17.0) - restriction: >= netcoreapp1.0
- Microsoft.TestPlatform.ObjectModel (>= 17.0) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- Newtonsoft.Json (>= 9.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- System.Diagnostics.Process (>= 4.1) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Diagnostics.StackTrace (>= 4.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Diagnostics.TextWriterTraceListener (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Diagnostics.TraceSource (>= 4.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Runtime.Loader (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Threading.Thread (>= 4.0) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- Microsoft.VisualStudio.Setup.Configuration.Interop (1.16.30) - restriction: >= net472
- Microsoft.Win32.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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 (5.0) - restriction: || (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net472) (>= netstandard2.0)) (>= net6.0)
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.AccessControl (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (>= netcoreapp2.0)) (>= monotouch) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.1) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- Microsoft.Win32.SystemEvents (5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- Mono.Cecil (0.11.4) - restriction: || (>= net461) (>= netstandard2.0)
- NETStandard.Library (2.0.3) - restriction: >= net6.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
- NetTopologySuite (2.4) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.3) - restriction: >= netstandard2.0
+ Microsoft.SqlServer.Server (1.0) - restriction: >= net10.0
+ Microsoft.TestPlatform.ObjectModel (18.3) - restriction: >= net8.0
+ System.Reflection.Metadata (>= 8.0) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.TestPlatform.TestHost (18.3) - restriction: >= netcoreapp3.1
+ Microsoft.TestPlatform.ObjectModel (>= 18.3) - restriction: >= net8.0
+ Newtonsoft.Json (>= 13.0.3) - restriction: >= net8.0
+ Microsoft.VisualStudio.SolutionPersistence (1.0.52) - restriction: >= net10.0
+ Mono.Cecil (0.11.6) - restriction: || (>= net461) (>= netstandard2.0)
+ Mono.TextTemplating (3.0) - restriction: >= net10.0
+ System.CodeDom (>= 6.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net6.0)
+ NetTopologySuite (2.6) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6) - restriction: && (>= netstandard2.0) (< netstandard2.1)
+ NetTopologySuite.Features (2.2) - restriction: >= net10.0
+ NetTopologySuite (>= 2.0 < 3.0.0-A) - restriction: >= netstandard2.0
+ NetTopologySuite.IO.GeoJSON (4.0) - restriction: >= net10.0
+ NetTopologySuite (>= 2.0 < 3.0.0-A) - restriction: >= netstandard2.0
+ NetTopologySuite.Features (>= 2.0 < 3.0.0-A) - restriction: >= netstandard2.0
+ Newtonsoft.Json (>= 13.0.1) - restriction: >= netstandard2.0
NetTopologySuite.IO.SqlServerBytes (2.0)
NetTopologySuite (>= 2.0 < 3.0.0-A) - restriction: >= netstandard2.0
- Newtonsoft.Json (13.0.1) - restriction: || (>= netcoreapp1.0) (>= uap10.0)
- NuGet.Frameworks (5.11) - restriction: || (&& (>= net45) (>= netcoreapp1.0) (< netstandard1.3)) (&& (>= net451) (>= netcoreapp1.0)) (&& (>= netcoreapp1.0) (< netstandard2.0)) (>= netcoreapp2.1)
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Net.Http (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Net.Security (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1)
- Microsoft.NETCore.Targets (>= 1.1.3)
- runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (>= 4.3.1)
- runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.3)
- runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple (4.3.1) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl (4.3.3) - restriction: && (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- SQLitePCLRaw.bundle_e_sqlite3 (2.0.7) - restriction: >= net6.0
- SQLitePCLRaw.core (>= 2.0.7) - restriction: || (>= net461) (>= netstandard2.0) (>= xamarintvos)
- SQLitePCLRaw.lib.e_sqlite3 (>= 2.0.7) - restriction: || (&& (< monoandroid8.0) (>= netstandard2.0) (< xamarinios) (< xamarintvos)) (>= net461)
- SQLitePCLRaw.lib.e_sqlite3.android (>= 2.0.7) - restriction: >= monoandroid8.0
- SQLitePCLRaw.lib.e_sqlite3.ios (>= 2.0.7) - restriction: >= xamarinios
- SQLitePCLRaw.lib.e_sqlite3.tvos (>= 2.0.7) - restriction: >= xamarintvos
- SQLitePCLRaw.provider.e_sqlite3 (>= 2.0.7) - restriction: || (>= monoandroid8.0) (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarintvos))
- SQLitePCLRaw.provider.internal (>= 2.0.7) - restriction: || (>= xamarinios) (>= xamarintvos)
- SQLitePCLRaw.core (2.0.7) - restriction: >= net6.0
- System.Memory (>= 4.5.3) - restriction: >= netstandard2.0
- SQLitePCLRaw.lib.e_sqlite3 (2.0.7) - restriction: || (&& (< monoandroid8.0) (>= net6.0) (< xamarinios) (< xamarintvos)) (&& (>= net461) (>= net6.0))
- SQLitePCLRaw.lib.e_sqlite3.android (2.0.7) - restriction: && (>= monoandroid8.0) (>= net6.0)
- SQLitePCLRaw.lib.e_sqlite3.ios (2.0.7) - restriction: && (>= net6.0) (>= xamarinios)
- SQLitePCLRaw.lib.e_sqlite3.tvos (2.0.7) - restriction: && (>= net6.0) (>= xamarintvos)
- SQLitePCLRaw.provider.e_sqlite3 (2.0.7) - restriction: || (&& (>= monoandroid8.0) (>= net6.0)) (&& (>= net6.0) (< xamarinios) (< xamarintvos))
- SQLitePCLRaw.core (>= 2.0.7)
- SQLitePCLRaw.provider.internal (2.0.7) - restriction: || (&& (>= net6.0) (>= xamarinios)) (&& (>= net6.0) (>= xamarintvos))
- SQLitePCLRaw.core (>= 2.0.7) - restriction: >= netstandard2.0
- System.Buffers (4.5.1) - restriction: || (&& (>= monoandroid) (>= net6.0) (< netstandard1.3)) (&& (>= monotouch) (>= net6.0)) (&& (>= net6.0) (< netcoreapp2.0)) (&& (>= net6.0) (>= xamarinios)) (&& (>= net6.0) (>= xamarinmac)) (&& (>= net6.0) (>= xamarintvos)) (&& (>= net6.0) (>= xamarinwatchos)) (>= netstandard2.0)
- System.CodeDom (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Collections (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Collections.Immutable (6.0)
- System.Memory (>= 4.5.4) - restriction: || (>= net461) (&& (< net6.0) (>= netstandard2.0))
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Collections.NonGeneric (4.3) - restriction: && (< monoandroid) (>= net6.0) (< 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)
- 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.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections.Specialized (4.3) - restriction: >= net6.0
- System.Collections.NonGeneric (>= 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.Globalization.Extensions (>= 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.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.ComponentModel (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0)
+ Newtonsoft.Json (13.0.4) - restriction: >= net8.0
+ SourceGear.sqlite3 (3.50.4.5) - restriction: >= net10.0
+ SQLitePCLRaw.bundle_e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SourceGear.sqlite3 (>= 3.50.4.2) - restriction: >= netstandard2.0
+ SQLitePCLRaw.config.e_sqlite3 (>= 3.0.2) - restriction: >= netstandard2.0
+ SQLitePCLRaw.config.e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SQLitePCLRaw.provider.e_sqlite3 (>= 3.0.2) - restriction: || (>= net471) (&& (>= net8.0) (< net8.0-ios) (< net8.0-tvos)) (&& (< net8.0) (>= netstandard2.0))
+ SQLitePCLRaw.core (3.0.2) - restriction: >= net10.0
+ System.Memory (>= 4.6.3) - restriction: >= netstandard2.0
+ SQLitePCLRaw.provider.e_sqlite3 (3.0.2) - restriction: >= net10.0
+ SQLitePCLRaw.core (>= 3.0.2) - restriction: >= netstandard2.0
+ System.Buffers (4.6.1) - restriction: || (>= net462) (>= netstandard2.0)
+ System.CodeDom (10.0.5) - restriction: >= net10.0
+ System.Collections.Immutable (10.0.5)
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.ComponentModel (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
+ System.ComponentModel.Annotations (5.0) - restriction: || (>= net48) (&& (< net8.0) (>= netstandard2.0))
System.ComponentModel.Primitives (4.3)
System.ComponentModel (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.ComponentModel.TypeConverter (4.3) - restriction: || (>= net6.0) (>= uap10.0)
- System.ComponentModel.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.5) (< win8)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net45) (< netstandard1.5)) (>= net462) (&& (< netstandard1.0) (>= win8)) (>= wp8) (>= wpa81)
- System.Composition (5.0.1) - restriction: >= netstandard2.0
- System.Composition.AttributedModel (>= 5.0.1)
- System.Composition.Convention (>= 5.0.1)
- System.Composition.Hosting (>= 5.0.1)
- System.Composition.Runtime (>= 5.0.1)
- System.Composition.TypedParts (>= 5.0.1)
- System.Composition.AttributedModel (5.0.1) - restriction: >= netstandard2.0
- System.Composition.Convention (5.0.1) - restriction: >= netstandard2.0
- System.Composition.AttributedModel (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= wp8)
- System.Composition.Hosting (5.0.1) - restriction: >= netstandard2.0
- System.Composition.Runtime (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= wp8)
- System.Composition.Runtime (5.0.1) - restriction: >= netstandard2.0
- System.Composition.TypedParts (5.0.1) - restriction: >= netstandard2.0
- System.Composition.AttributedModel (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= wp8)
- System.Composition.Hosting (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= wp8)
- System.Composition.Runtime (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< win8)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= wp8)
- System.Configuration.ConfigurationManager (5.0) - restriction: || (&& (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- System.Security.Cryptography.ProtectedData (>= 5.0) - restriction: && (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Diagnostics.Debug (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Composition (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Convention (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.TypedParts (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.AttributedModel (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.Convention (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.TypedParts (10.0.5) - restriction: >= netstandard2.0
+ System.Composition.AttributedModel (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Hosting (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Composition.Runtime (>= 10.0.5) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Configuration.ConfigurationManager (10.0.5) - restriction: >= net10.0
+ System.Diagnostics.EventLog (>= 10.0.5) - restriction: >= net8.0
+ System.Security.Cryptography.ProtectedData (>= 10.0.5) - restriction: || (&& (< net462) (>= netstandard2.0)) (>= net8.0)
+ System.Diagnostics.DiagnosticSource (10.0.5) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Diagnostics.EventLog (10.0.5) - restriction: >= net10.0
+ System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Diagnostics.DiagnosticSource (6.0) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0)
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Diagnostics.Process (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp2.1)) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.Win32.Registry (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.4)) (&& (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Thread (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.4) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.StackTrace (4.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.IO.FileSystem (>= 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)
- System.Reflection.Metadata (>= 1.4.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.TextWriterTraceListener (4.3) - restriction: && (>= netcoreapp1.0) (< netcoreapp2.1)
- System.Diagnostics.TraceSource (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.TraceSource (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp2.1)) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- 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: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Drawing.Common (5.0.2) - restriction: >= netcoreapp3.0
- Microsoft.Win32.SystemEvents (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Dynamic.Runtime (4.3) - restriction: >= net6.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.ObjectModel (>= 4.3) - restriction: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (&& (>= monotouch) (>= netstandard2.0)) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (&& (>= netstandard2.0) (>= uap10.1)) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.Globalization (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization.Extensions (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IdentityModel.Tokens.Jwt (6.14.1) - restriction: >= net6.0
- Microsoft.IdentityModel.JsonWebTokens (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- Microsoft.IdentityModel.Tokens (>= 6.14.1) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net461)
- System.IO (4.3) - restriction: || (&& (< 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) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net463) (>= netstandard2.0))
+ System.IdentityModel.Tokens.Jwt (8.17) - restriction: >= net10.0
+ Microsoft.IdentityModel.JsonWebTokens (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ Microsoft.IdentityModel.Tokens (>= 8.17) - restriction: || (>= net462) (>= netstandard2.0)
+ System.IO (4.3) - restriction: || (&& (< 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.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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.IO.FileSystem.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- 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.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: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.Pipelines (5.0.1) - restriction: >= netstandard2.0
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (>= monotouch) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (>= uap10.1)
- System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< netstandard2.0) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net46) (< netstandard2.0)) (&& (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net461) (>= uap10.1)
- System.Linq (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.6) (< win8) (< wp8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq.Expressions (4.3) - restriction: || (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- System.Collections (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.ObjectModel (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.Lightweight (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq.Queryable (4.3) - restriction: >= netstandard2.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Linq.Expressions (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Memory (4.5.4) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (>= net461) (>= netstandard2.0)
- System.Buffers (>= 4.5.1) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (< uap10.1) (>= wpa81)) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Numerics.Vectors (>= 4.4) - restriction: && (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Numerics.Vectors (>= 4.5) - restriction: >= net461
- System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (>= monoandroid) (< netstandard1.1)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (>= monotouch) (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0)) (>= net461) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory.Data (1.0.2) - restriction: >= net6.0
- System.Text.Encodings.Web (>= 4.7.2) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Json (>= 4.6) - restriction: || (>= net461) (>= netstandard2.0)
- System.Net.Http (4.3.4) - restriction: && (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- runtime.native.System (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Net.Http (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3.2) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Debug (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.DiagnosticSource (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.IO.FileSystem (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: && (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Net.Primitives (4.3.1) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< 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.3) - restriction: || (&& (< 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.1) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Requests (4.3) - restriction: >= netstandard2.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< 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.Net.Http (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< 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.Net.WebHeaderCollection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (>= netstandard1.0) (< netstandard1.1) (< win8) (< wp8))
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Net.Security (4.3.2) - restriction: >= netstandard2.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.Win32.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< 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.Security (>= 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: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Diagnostics.Tracing (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Globalization.Extensions (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Net.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Extensions (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Claims (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Algorithms (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.X509Certificates (>= 4.3) - restriction: || (&& (< monoandroid) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Security.Principal (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading.ThreadPool (>= 4.3) - restriction: || (&& (< monoandroid) (< net46) (>= netstandard1.3) (< netstandard1.6)) (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Net.WebHeaderCollection (4.3) - restriction: && (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 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.Numerics.Vectors (4.5) - restriction: || (&& (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (>= netstandard2.0)) (>= net6.0)
- System.ObjectModel (4.3) - restriction: || (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< 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) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.IO.Hashing (10.0.5) - copy_local: true, restriction: || (>= net472) (>= net8.0)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.IO.Pipelines (10.0.5) - restriction: || (&& (>= net8.0) (< net9.0)) (>= netstandard2.0)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Memory (4.6.3) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Buffers (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (>= 4.6.1) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.Numerics.Vectors (4.6.1) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Reflection (4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Emit (4.7) - restriction: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
+ System.Reflection.Emit (4.7) - restriction: >= netstandard2.0
System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81)) (>= uap10.1)
- System.Reflection.Emit.ILGeneration (4.7) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1))
- System.Reflection.Emit.Lightweight (4.7) - restriction: && (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Emit.ILGeneration (>= 4.7) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< netstandard2.0) (< win8) (< wp8) (< wpa81) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netstandard2.0) (>= wpa81)) (&& (>= portable-net45+win8+wp8+wpa81) (< portable-net45+wp8) (< win8)) (&& (< portable-net45+wp8) (>= win8)) (>= uap10.1)
- System.Reflection.Extensions (4.3) - restriction: && (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.Metadata (5.0) - restriction: || (>= netcoreapp1.0) (>= netstandard2.0)
- System.Collections.Immutable (>= 5.0) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (< net5.0) (>= netstandard2.0)) (&& (< net45) (>= netstandard1.1) (< netstandard2.0) (< win8) (< wpa81)) (>= net461) (&& (< netstandard1.1) (>= portable-net45+win8+wpa81) (< win8)) (&& (< netstandard1.1) (>= win8)) (&& (< netstandard2.0) (>= wpa81))
- System.Reflection.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.2) (>= netstandard2.0) (< win8)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Reflection.Emit.ILGeneration (4.7) - restriction: || (&& (< monoandroid) (< net45) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< netstandard1.1) (>= netstandard2.0) (< win8)) (&& (< netstandard1.1) (>= netstandard2.0) (>= win8)) (&& (>= netstandard2.0) (>= uap10.1))
+ System.Reflection.Metadata (10.0.5) - restriction: || (&& (>= net8.0) (< net9.0)) (>= netstandard2.0)
+ System.Collections.Immutable (>= 10.0.5) - restriction: || (&& (< net10.0) (>= net9.0)) (>= net462) (&& (>= net8.0) (< net9.0)) (&& (< net8.0) (>= netstandard2.0))
+ System.Reflection.Primitives (4.3) - restriction: || (&& (< 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.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection.TypeExtensions (4.7) - restriction: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- System.Resources.Extensions (5.0) - restriction: >= netstandard2.0
- System.Memory (>= 4.5.4) - restriction: || (>= net461) (&& (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Resources.ResourceManager (4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Targets (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Reflection (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= net6.0) (< netstandard1.6)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
+ System.Runtime (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.2) (< win8) (< wp8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Caching (5.0) - restriction: >= net6.0
- System.Configuration.ConfigurationManager (>= 5.0) - restriction: && (< net45) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.CompilerServices.Unsafe (6.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1)) (>= net461) (>= netstandard2.0)
- System.Runtime.Extensions (4.3.1) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Runtime.CompilerServices.Unsafe (6.1.2) - restriction: || (>= net462) (>= netstandard2.0)
+ System.Runtime.Extensions (4.3.1) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
Microsoft.NETCore.Platforms (>= 1.1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
Microsoft.NETCore.Targets (>= 1.1.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.5) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net45) (< netcoreapp1.1) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Targets (>= 1.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Reflection.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< monoandroid) (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net462) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.5) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.5) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime.InteropServices.RuntimeInformation (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp2.1)) (>= uap10.0)
- System.Runtime.Loader (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp2.1)) (>= netstandard2.0)
- System.IO (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Reflection (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monotouch) (< net462) (>= netstandard1.5) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime.Numerics (4.3)
System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Serialization.Formatters (4.3) - restriction: || (&& (< monoandroid9.0) (>= net6.0) (< netcoreapp2.1) (< xamarinmac)) (&& (>= net6.0) (>= uap10.0)) (&& (>= net6.0) (>= xamarinios))
- System.Runtime.Serialization.Primitives (4.3) - restriction: || (&& (< monoandroid9.0) (>= net6.0) (< netcoreapp2.1) (< xamarinmac)) (&& (>= net6.0) (>= uap10.0)) (&& (>= net6.0) (>= xamarinios))
- System.Security.AccessControl (5.0) - restriction: || (&& (< net472) (>= netstandard2.0)) (>= net6.0)
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: >= netcoreapp2.0
- System.Security.Principal.Windows (>= 5.0) - restriction: || (&& (>= net46) (< netstandard2.0)) (&& (< net46) (>= netstandard1.3) (< netstandard2.0) (< uap10.1)) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0)
- System.Security.Claims (4.3) - restriction: >= netstandard2.0
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Principal (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Algorithms (4.3.1) - restriction: >= netstandard2.0
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< 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: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< 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: || (&& (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net463)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Cng (5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: && (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: && (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Csp (4.3) - restriction: || (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- 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)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 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.Security.Cryptography.Algorithms (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Security.Cryptography.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Primitives (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net46)
- System.Text.Encoding (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.6) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net463) (>= netstandard2.0))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- runtime.native.System.Security.Cryptography.OpenSsl (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections.Concurrent (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Linq (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 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.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 (5.0) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: && (>= netcoreapp2.0) (< netcoreapp2.1)
- System.Formats.Asn1 (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Cryptography.Pkcs (5.0.1) - restriction: || (&& (>= monotouch) (>= netstandard2.0)) (&& (< net461) (>= netstandard2.0)) (&& (< net472) (>= netstandard2.0)) (>= netcoreapp2.1) (&& (>= netstandard2.0) (>= xamarintvos)) (&& (>= netstandard2.0) (>= xamarinwatchos)) (>= xamarinios) (>= xamarinmac)
- System.Buffers (>= 4.5.1) - restriction: && (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)
- System.Formats.Asn1 (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard1.3)) (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1)) (>= monotouch) (&& (< netcoreapp2.0) (>= netstandard2.1)) (>= netcoreapp3.0) (>= uap10.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Memory (>= 4.5.4) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (>= uap10.1)
- System.Security.Cryptography.Cng (>= 5.0) - restriction: || (&& (< monoandroid) (< net46) (< netcoreapp2.0) (>= netstandard2.0) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.1) (< netstandard2.1) (< xamarintvos) (< xamarinwatchos)) (&& (< netcoreapp2.0) (>= netstandard2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp3.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Security.Cryptography.Primitives (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4) (>= netstandard2.0)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= net461) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net463) (>= netstandard2.0))
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.ProtectedData (5.0) - restriction: || (&& (< net461) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net6.0)
- System.Memory (>= 4.5.4) - restriction: && (< net46) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.X509Certificates (4.3.2) - restriction: || (&& (< monoandroid) (< netstandard1.6) (>= netstandard2.0)) (&& (>= net46) (>= netstandard2.0)) (&& (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: && (< 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: && (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization.Calendars (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem (>= 4.3) - restriction: && (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: || (&& (< 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: && (< 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.Algorithms (>= 4.3) - restriction: || (&& (< 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: && (< 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: || (&& (< 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: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monotouch) (< net46) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Xml (5.0) - restriction: && (< net472) (>= netstandard2.0)
- System.Memory (>= 4.5.4) - restriction: && (< net461) (< netcoreapp2.1) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Cryptography.Pkcs (>= 5.0) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net461) (>= netstandard2.0)) (>= netcoreapp2.1) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (>= 5.0) - restriction: || (>= monoandroid) (>= monotouch) (>= net461) (>= netstandard2.0) (>= xamarintvos) (>= xamarinwatchos)
- System.Security.Permissions (5.0) - restriction: >= netstandard2.0
- System.Security.AccessControl (>= 5.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Windows.Extensions (>= 5.0) - restriction: >= netcoreapp3.0
- System.Security.Principal (4.3) - restriction: >= netstandard2.0
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.0) (< win8) (< wp8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Security.Principal.Windows (5.0) - restriction: >= net6.0
- System.Security.SecureString (4.3) - restriction: || (&& (>= monoandroid10.0) (>= net6.0)) (&& (>= monoandroid9.0) (>= net6.0) (< netcoreapp2.1)) (&& (< monoandroid9.0) (>= net6.0) (< netcoreapp2.1) (< xamarinmac)) (&& (>= net6.0) (>= uap10.0)) (&& (>= net6.0) (>= xamarinios))
- System.Text.Encoding (4.3) - restriction: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encoding.CodePages (5.0) - restriction: >= netstandard2.0
- Microsoft.NETCore.Platforms (>= 5.0) - restriction: || (&& (< monoandroid) (>= netcoreapp2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= net5.0)
- System.Text.Encoding.Extensions (4.3) - restriction: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Security.Cryptography.Pkcs (10.0.5) - restriction: >= net10.0
+ System.Security.Cryptography.ProtectedData (10.0.5) - restriction: >= net10.0
+ System.Text.Encoding (4.3) - restriction: || (&& (< 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)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encodings.Web (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Json (6.0) - restriction: >= net6.0
- System.Runtime.CompilerServices.Unsafe (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.Encodings.Web (>= 6.0) - restriction: || (>= net461) (>= netstandard2.0)
- System.Text.RegularExpressions (4.3.1) - restriction: && (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3.1) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard1.3) (< netstandard1.6) (< win8) (< wpa81)) (&& (< monotouch) (< net45) (< netcoreapp1.1) (>= netstandard1.6) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (>= netcoreapp1.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Threading (4.3) - restriction: || (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp1.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard2.0) (< win8) (< wpa81)) (&& (< monoandroid) (< net45) (>= netstandard2.0) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net46) (< netstandard1.6) (>= netstandard2.0)) (&& (< monoandroid) (>= net6.0) (< netstandard1.3)) (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< net46) (>= netstandard2.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos))
+ System.Text.Encoding.CodePages (10.0.5) - restriction: >= netstandard2.0
+ System.Memory (>= 4.6.3) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< net8.0) (>= netstandard2.0))
+ System.ValueTuple (>= 4.6.1) - restriction: >= net462
+ System.Threading.Channels (10.0.5) - restriction: >= netstandard2.0
+ Microsoft.Bcl.AsyncInterfaces (>= 10.0.5) - restriction: || (>= net462) (&& (>= netstandard2.0) (< netstandard2.1))
+ System.Threading.Tasks.Extensions (>= 4.6.3) - restriction: || (>= net462) (&& (>= netstandard2.0) (< netstandard2.1))
+ System.Threading.Tasks (4.3) - restriction: || (&& (< 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)) (&& (< monoandroid) (< net45) (< netstandard1.3) (>= netstandard1.5) (< win8) (< wpa81))
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (< 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: || (&& (< 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: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Threading.Tasks.Dataflow (5.0) - restriction: >= netstandard2.0
- System.Threading.Tasks.Extensions (4.5.4) - restriction: || (&& (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (>= netcoreapp2.0) (< netcoreapp2.1) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (>= netstandard2.0)
- System.Threading.Tasks.Parallel (4.3) - restriction: >= netstandard2.0
- System.Collections.Concurrent (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Tracing (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.1) (< netstandard1.3) (< win8) (< wpa81))
- System.Threading.Thread (4.3) - restriction: || (&& (>= netcoreapp1.0) (< netcoreapp2.1)) (>= netstandard2.0)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.ThreadPool (4.3) - restriction: >= netstandard2.0
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Handles (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Windows.Extensions (5.0) - restriction: >= netcoreapp3.0
- System.Drawing.Common (>= 5.0) - restriction: >= netcoreapp3.0
- System.Xml.ReaderWriter (4.3.1) - restriction: && (< monoandroid) (>= net6.0) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Collections (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Diagnostics.Debug (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Globalization (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.IO.FileSystem (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.IO.FileSystem.Primitives (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.InteropServices (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.Encoding (>= 4.3) - restriction: || (&& (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)) (&& (< monoandroid) (< net45) (>= netstandard1.0) (< netstandard1.3) (< win8) (< wp8) (< wpa81))
- System.Text.Encoding.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Text.RegularExpressions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Threading.Tasks (>= 4.3) - restriction: || (&& (< 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: && (< monoandroid) (< monotouch) (< net45) (>= netstandard1.3) (< win8) (< wpa81) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Xml.XmlDocument (4.3) - restriction: >= net6.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)
- System.IO (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Resources.ResourceManager (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.Runtime.Extensions (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- System.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.Xml.ReaderWriter (>= 4.3) - restriction: && (< monoandroid) (< monotouch) (< net46) (>= netstandard1.3) (< xamarinios) (< xamarinmac) (< xamarintvos) (< xamarinwatchos)
- Xamarin.AndroidX.Annotation (1.2.0.3) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation.Experimental (1.1.0.3) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Arch.Core.Common (2.1.0.11) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Arch.Core.Runtime (2.1.0.11) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.11) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Browser (1.3.0.8) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Collection (>= 1.1.0.10) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Concurrent.Futures (>= 1.1.0.5) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Core (>= 1.6.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Interpolator (>= 1.0.0.10) - restriction: >= monoandroid9.0
- Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.4) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Collection (1.1.0.10) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Concurrent.Futures (1.1.0.5) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.Google.Guava.ListenableFuture (>= 1.0.0.4) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Core (1.6.0.3) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Annotation.Experimental (>= 1.1.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Collection (>= 1.1.0.10) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Lifecycle.Runtime (>= 2.3.1.4) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.VersionedParcelable (>= 1.1.1.10) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Interpolator (1.0.0.10) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Lifecycle.Common (2.3.1.3) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Lifecycle.Runtime (2.3.1.4) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Arch.Core.Common (>= 2.1.0.11) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Arch.Core.Runtime (>= 2.1.0.11) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Lifecycle.Common (>= 2.3.1.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.VersionedParcelable (1.1.1.10) - restriction: && (>= monoandroid10.0) (>= net6.0)
- Xamarin.AndroidX.Annotation (>= 1.2.0.3) - restriction: >= monoandroid9.0
- Xamarin.AndroidX.Collection (>= 1.1.0.10) - restriction: >= monoandroid9.0
- Xamarin.Google.Guava.ListenableFuture (1.0.0.4) - restriction: && (>= monoandroid10.0) (>= net6.0)
- xunit.abstractions (2.0.3) - restriction: >= net6.0
- xunit.assert (2.4.1) - restriction: >= net6.0
- NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
- xunit.core (2.4.1) - restriction: >= net6.0
- xunit.extensibility.core (2.4.1)
- xunit.extensibility.execution (2.4.1)
- xunit.extensibility.core (2.4.1) - restriction: >= net6.0
- NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
+ System.Threading.Tasks.Extensions (4.6.3) - restriction: >= netstandard2.0
+ System.Runtime.CompilerServices.Unsafe (>= 6.1.2) - restriction: || (>= net462) (&& (< netcoreapp2.1) (>= netstandard2.0) (< netstandard2.1))
+ System.ValueTuple (4.6.2) - restriction: && (>= net462) (>= netstandard2.0)
+ xunit.abstractions (2.0.3) - restriction: >= net10.0
+ xunit.assert (2.9.3) - restriction: >= net10.0
+ xunit.core (2.9.3) - restriction: >= net10.0
+ xunit.extensibility.core (2.9.3)
+ xunit.extensibility.execution (2.9.3)
+ xunit.extensibility.core (2.9.3) - restriction: >= net10.0
xunit.abstractions (>= 2.0.3) - restriction: >= netstandard1.1
- xunit.extensibility.execution (2.4.1) - restriction: >= net6.0
- NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
- xunit.extensibility.core (2.4.1) - restriction: >= netstandard1.1
+ xunit.extensibility.execution (2.9.3) - restriction: >= net10.0
+ xunit.extensibility.core (2.9.3) - restriction: >= netstandard1.1
+ xunit.runner.visualstudio (3.1.5) - restriction: >= net10.0
YoloDev.Expecto.TestSdk (0.12.10)
Expecto (>= 9.0 < 10.0) - restriction: >= netcoreapp2.1
FSharp.Core (>= 4.6) - restriction: >= netcoreapp2.1
diff --git a/src/EFCore.FSharp/AssemblyInfo.fs b/src/EFCore.FSharp/AssemblyInfo.fs
index 9d20573..3cb6822 100644
--- a/src/EFCore.FSharp/AssemblyInfo.fs
+++ b/src/EFCore.FSharp/AssemblyInfo.fs
@@ -1,23 +1,39 @@
-// Auto-Generated by FAKE; do not edit
+// Auto-Generated by FAKE; do not edit
namespace System
+
open System.Reflection
[]
[]
-[]
-[]
-[]
-[]
-[]
-[]
+[]
+[]
+[]
+[]
+[]
+[]
do ()
module internal AssemblyVersionInformation =
- let [] AssemblyTitle = "EFCore.FSharp"
- let [] AssemblyProduct = "EFCore.FSharp"
- let [] AssemblyVersion = "6.0.7"
- let [] AssemblyMetadata_ReleaseDate = "2022-06-26T00:00:00.0000000+01:00"
- let [] AssemblyFileVersion = "6.0.7"
- let [] AssemblyInformationalVersion = "6.0.7"
- let [] AssemblyMetadata_ReleaseChannel = "release"
- let [] AssemblyMetadata_GitHash = "bd06b49bb7290ad9a1242b35b07609a0299fdc04"
+ []
+ let AssemblyTitle = "EFCore.FSharp"
+
+ []
+ let AssemblyProduct = "EFCore.FSharp"
+
+ []
+ let AssemblyVersion = "10.0.0"
+
+ []
+ let AssemblyMetadata_ReleaseDate = "2026-04-05T00:00:00.0000000+00:00"
+
+ []
+ let AssemblyFileVersion = "10.0.0"
+
+ []
+ let AssemblyInformationalVersion = "10.0.0"
+
+ []
+ let AssemblyMetadata_ReleaseChannel = "release"
+
+ []
+ let AssemblyMetadata_GitHash = "68652cf"
diff --git a/src/EFCore.FSharp/DbContextHelpers.fs b/src/EFCore.FSharp/DbContextHelpers.fs
index 53f3576..fc6489f 100644
--- a/src/EFCore.FSharp/DbContextHelpers.fs
+++ b/src/EFCore.FSharp/DbContextHelpers.fs
@@ -8,16 +8,13 @@ open System.Threading.Tasks
let private awaitValueTask (x: ValueTask<_>) = Async.AwaitTask(x.AsTask())
type KeyType =
- | Composite of obj []
+ | Composite of obj[]
| Single of obj
let private transform (a: obj) =
match a with
- | :? seq as s ->
- Array.ofSeq s
- |> Array.map (fun i -> box i)
- |> Composite
+ | :? seq as s -> Array.ofSeq s |> Array.map (fun i -> box i) |> Composite
| _ -> Single a
let findEntity<'a when 'a: not struct> (ctx: DbContext) (key: obj) : 'a =
@@ -29,10 +26,7 @@ let findEntity<'a when 'a: not struct> (ctx: DbContext) (key: obj) : 'a =
let tryFindEntity<'a when 'a: not struct> (ctx: DbContext) (key: obj) : 'a option =
let result = findEntity<'a> ctx key
- if isNull (box result) then
- None
- else
- Some result
+ if isNull (box result) then None else Some result
let findEntityAsync<'a when 'a: not struct> (ctx: DbContext) (key: obj) : Async<'a> =
let f =
@@ -51,11 +45,7 @@ let tryFindEntityAsync<'a when 'a: not struct> (ctx: DbContext) (key: obj) : Asy
async {
let! result = findEntityAsync<'a> ctx key
- let result' =
- if isNull (box result) then
- None
- else
- Some result
+ let result' = if isNull (box result) then None else Some result
return result'
}
@@ -65,20 +55,14 @@ let tryFindEntityTaskAsync<'a when 'a: not struct> (ctx: DbContext) (key: obj) :
result
.AsTask()
- .ContinueWith(fun (t: Task<'a>) ->
- if isNull (box t.Result) then
- None
- else
- Some t.Result)
+ .ContinueWith(fun (t: Task<'a>) -> if isNull (box t.Result) then None else Some t.Result)
/// Helper method for saving an updated record type
let updateEntity (ctx: DbContext) (key: 'a -> 'b) (entity: 'a when 'a: not struct) =
let currentEntity = findEntity<'a> ctx (key entity)
- ctx
- .Entry(currentEntity)
- .CurrentValues.SetValues(entity :> obj)
+ ctx.Entry(currentEntity).CurrentValues.SetValues(entity :> obj)
entity
@@ -86,8 +70,7 @@ let updateEntityAsync (ctx: DbContext) (key: 'a -> 'b) (entity: 'a when 'a: not
async { return updateEntity ctx key entity }
let updateEntityRange (ctx: DbContext) (key: 'a -> 'b) (entities: 'a seq when 'a: not struct) =
- entities
- |> Seq.map (fun e -> updateEntity ctx key e)
+ entities |> Seq.map (fun e -> updateEntity ctx key e)
let updateEntityRangeAsync (ctx: DbContext) (key: 'a -> 'b) (entities: 'a seq when 'a: not struct) =
async { return updateEntityRange ctx key entities }
@@ -125,11 +108,7 @@ let addEntityRange' (ctx: #DbContext) (entities: 'a seq when 'a: not struct) = c
let addEntityRange (ctx: #DbContext) (entities: 'a seq when 'a: not struct) = addEntityRange' ctx entities |> ignore
let addEntityRangeAsync' (ctx: #DbContext) (entities: 'a seq when 'a: not struct) =
- async {
- return!
- ctx.Set<'a>().AddRangeAsync(entities)
- |> Async.AwaitTask
- }
+ async { return! ctx.Set<'a>().AddRangeAsync(entities) |> Async.AwaitTask }
let addEntityRangeAsync (ctx: #DbContext) (entities: 'a seq when 'a: not struct) =
addEntityRangeAsync' ctx entities |> Async.Ignore
@@ -170,23 +149,19 @@ let tryFirstTaskAsync dbset =
let tryFirst (dbset: #IQueryable<_>) =
- dbset.FirstOrDefault()
- |> FSharpUtilities.OptionOfNullableObj
+ dbset.FirstOrDefault() |> FSharpUtilities.OptionOfNullableObj
let tryFilterFirstAsync predicate (dbSet: #IQueryable<_>) =
async {
let pred = FSharpUtilities.exprToLinq predicate
- let! ret =
- dbSet.FirstOrDefaultAsync(predicate = pred)
- |> Async.AwaitTask
+ let! ret = dbSet.FirstOrDefaultAsync(predicate = pred) |> Async.AwaitTask
return FSharpUtilities.OptionOfNullableObj ret
}
let tryFilterFirstTaskAsync predicate (dbSet: #IQueryable<_>) =
- tryFilterFirstAsync predicate dbSet
- |> Async.StartAsTask
+ tryFilterFirstAsync predicate dbSet |> Async.StartAsTask
let tryFilterFirst predicate (dbSet: #IQueryable<_>) =
let pred = FSharpUtilities.exprToLinq predicate
@@ -200,9 +175,7 @@ type IQueryable<'T> with
member this.TryFirstAsync expr =
async {
- let! ret =
- this.FirstOrDefaultAsync(predicate = expr)
- |> Async.AwaitTask
+ let! ret = this.FirstOrDefaultAsync(predicate = expr) |> Async.AwaitTask
return FSharpUtilities.OptionOfNullableObj ret
}
@@ -211,5 +184,4 @@ type IQueryable<'T> with
this.TryFirstAsync(expr) |> Async.StartAsTask
member this.TryFirst expr =
- this.FirstOrDefault(predicate = expr)
- |> FSharpUtilities.OptionOfNullableObj
+ this.FirstOrDefault(predicate = expr) |> FSharpUtilities.OptionOfNullableObj
diff --git a/src/EFCore.FSharp/EFCore.FSharp.fsproj b/src/EFCore.FSharp/EFCore.FSharp.fsproj
index da7ea9c..66cbbc9 100644
--- a/src/EFCore.FSharp/EFCore.FSharp.fsproj
+++ b/src/EFCore.FSharp/EFCore.FSharp.fsproj
@@ -1,12 +1,11 @@
- net6.0
+ net10.0
EntityFrameworkCore.FSharp
EntityFrameworkCore.FSharp
Simon Reynolds, Brice Lambson et al.
Adds F# design-time support to EF Core
- https://github.com/efcore/EFCore.FSharp/blob/master/LICENSE.md
https://github.com/efcore/EFCore.FSharp
Entity Framework Core;entity-framework-core;ef;efcore;fsharp
https://github.com/efcore/EFCore.FSharp.git
@@ -15,7 +14,7 @@
latest
bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml
true
- 6.0.0-local001
+ 10.0.0-local001
true
diff --git a/src/EFCore.FSharp/EFCoreFSharpServices.fs b/src/EFCore.FSharp/EFCoreFSharpServices.fs
index 461d563..4578823 100644
--- a/src/EFCore.FSharp/EFCoreFSharpServices.fs
+++ b/src/EFCore.FSharp/EFCoreFSharpServices.fs
@@ -3,7 +3,6 @@ namespace EntityFrameworkCore.FSharp
open Microsoft.EntityFrameworkCore.Design
open Microsoft.EntityFrameworkCore.Migrations.Design
open Microsoft.EntityFrameworkCore.Scaffolding
-open Microsoft.EntityFrameworkCore.Scaffolding.Internal
open Microsoft.Extensions.DependencyInjection
open EntityFrameworkCore.FSharp
@@ -18,8 +17,7 @@ type EFCoreFSharpServices(scaffoldOptions: ScaffoldOptions) =
new() = EFCoreFSharpServices(ScaffoldOptions.Default)
- static member Default =
- EFCoreFSharpServices() :> IDesignTimeServices
+ static member Default = EFCoreFSharpServices() :> IDesignTimeServices
static member WithScaffoldOptions scaffoldOptions =
EFCoreFSharpServices scaffoldOptions :> IDesignTimeServices
@@ -30,8 +28,8 @@ type EFCoreFSharpServices(scaffoldOptions: ScaffoldOptions) =
.AddSingleton(scaffoldOptions)
.AddSingleton()
.AddSingleton()
- .AddSingleton()
- .AddSingleton()
+ .AddSingleton()
+ .AddSingleton()
.AddSingleton()
.AddSingleton()
.AddSingleton()
diff --git a/src/EFCore.FSharp/Extensions/ModelBuilderExtensions.fs b/src/EFCore.FSharp/Extensions/ModelBuilderExtensions.fs
index c811413..34496b4 100644
--- a/src/EFCore.FSharp/Extensions/ModelBuilderExtensions.fs
+++ b/src/EFCore.FSharp/Extensions/ModelBuilderExtensions.fs
@@ -21,17 +21,10 @@ module Extensions =
member this.UseValueConverterForType(``type``: Type, converter: ValueConverter) =
this.Model.GetEntityTypes()
- |> Seq.iter
- (fun e ->
- e.ClrType.GetProperties()
- |> Seq.filter (fun p -> p.PropertyType = ``type``)
- |> Seq.iter
- (fun p ->
- this
- .Entity(e.Name)
- .Property(p.Name)
- .HasConversion(converter)
- |> ignore))
+ |> Seq.iter (fun e ->
+ e.ClrType.GetProperties()
+ |> Seq.filter (fun p -> p.PropertyType = ``type``)
+ |> Seq.iter (fun p -> this.Entity(e.Name).Property(p.Name).HasConversion(converter) |> ignore))
this
@@ -40,11 +33,9 @@ module Extensions =
let makeOptionConverter t =
let underlyingType = SharedTypeExtensions.unwrapOptionType t
- let converterType =
- genericOptionConverterType.MakeGenericType(underlyingType)
+ let converterType = genericOptionConverterType.MakeGenericType(underlyingType)
- let converter =
- converterType.GetConstructor([||]).Invoke([||]) :?> ValueConverter
+ let converter = converterType.GetConstructor([||]).Invoke([||]) :?> ValueConverter
converter
@@ -64,23 +55,18 @@ module Extensions =
member this.RegisterSingleUnionCases() =
let makeSingleUnionCaseConverter tUnion =
- let underlyingType =
- SharedTypeExtensions.unwrapSingleCaseUnion tUnion
+ let underlyingType = SharedTypeExtensions.unwrapSingleCaseUnion tUnion
let converterType =
genericSingleCaseUnionConverterType.MakeGenericType(underlyingType, tUnion)
- let converter =
- converterType.GetConstructor([||]).Invoke([||]) :?> ValueConverter
+ let converter = converterType.GetConstructor([||]).Invoke([||]) :?> ValueConverter
converter
let converterDetails =
this.Model.GetEntityTypes()
- |> Seq.filter
- (fun p ->
- not
- <| SharedTypeExtensions.isSingleCaseUnion p.ClrType)
+ |> Seq.filter (fun p -> not <| SharedTypeExtensions.isSingleCaseUnion p.ClrType)
|> Seq.collect (fun e -> e.ClrType.GetProperties())
|> Seq.filter (fun p -> SharedTypeExtensions.isSingleCaseUnion p.PropertyType)
|> Seq.map (fun p -> (p, (makeSingleUnionCaseConverter p.PropertyType)))
@@ -107,8 +93,7 @@ module Extensions =
type DbContextOptionsBuilder with
member this.UseFSharpTypes() =
let extension =
- let found =
- this.Options.FindExtension()
+ let found = this.Options.FindExtension()
if notNull found then
found
@@ -116,7 +101,6 @@ module Extensions =
fSharpTypeOptionsExtensionInstance
- (this :> IDbContextOptionsBuilderInfrastructure)
- .AddOrUpdateExtension(extension)
+ (this :> IDbContextOptionsBuilderInfrastructure).AddOrUpdateExtension(extension)
this
diff --git a/src/EFCore.FSharp/Internal/FSharpHelper.fs b/src/EFCore.FSharp/Internal/FSharpHelper.fs
index 3b68cd7..04f11de 100644
--- a/src/EFCore.FSharp/Internal/FSharpHelper.fs
+++ b/src/EFCore.FSharp/Internal/FSharpHelper.fs
@@ -147,9 +147,9 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
| true, value -> value
| _ ->
if t |> isNullableType then
- sprintf "Nullable<%s>" (this.ReferenceFullName(t |> unwrapNullableType) useFullName)
+ sprintf "Nullable<%s>" (this.ReferenceFullName (t |> unwrapNullableType) useFullName)
elif t |> isOptionType then
- sprintf "%s option" (this.ReferenceFullName(t |> unwrapOptionType) useFullName)
+ sprintf "%s option" (this.ReferenceFullName (t |> unwrapOptionType) useFullName)
else
let builder = StringBuilder()
@@ -159,9 +159,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
builder.Append(name) |> string
if t.IsArray then
- builder
- .Append(this.ReferenceFullName(t.GetElementType()) false)
- .Append("[")
+ builder.Append(this.ReferenceFullName (t.GetElementType()) false).Append("[")
|> ignore
match t.GetArrayRank() with
@@ -170,9 +168,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
builder |> string
elif t.IsNested then
- builder
- .Append(this.ReferenceFullName(t.DeclaringType) false)
- .Append(".")
+ builder.Append(this.ReferenceFullName (t.DeclaringType) false).Append(".")
|> ignore
returnName ()
@@ -180,10 +176,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
returnName ()
member private this.ensureDecimalPlaces(number: string) =
- if number.IndexOf('.') >= 0 then
- number
- else
- number + ".0"
+ if number.IndexOf('.') >= 0 then number else number + ".0"
member private this.literalString(value: string) =
"\""
@@ -198,27 +191,21 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member private this.literalByte(value: byte) = sprintf "(byte %d)" value
- member private this.literalByteArray(values: byte []) =
+ member private this.literalByteArray(values: byte[]) =
let v = values |> Seq.map this.literalByte
sprintf "[| %s |]" (String.Join("; ", v))
- member private this.literalStringArray(values: string []) =
+ member private this.literalStringArray(values: string[]) =
let v = values |> Seq.map this.literalString
sprintf "[| %s |]" (String.Join("; ", v))
member private this.literalArray(values: Array) =
- let v =
- values.Cast() |> Seq.map this.unknownLiteral
+ let v = values.Cast() |> Seq.map this.unknownLiteral
sprintf "[| %s |]" (String.Join("; ", v))
member private this.literalChar(value: char) =
- "\'"
- + (if value = '\'' then
- "\\'"
- else
- value.ToString())
- + "\'"
+ "\'" + (if value = '\'' then "\\'" else value.ToString()) + "\'"
member private this.literalDateTime(value: DateTime) =
sprintf
@@ -248,8 +235,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member private this.literalDecimal(value: decimal) = sprintf "%fm" value
member private this.literalDouble(value: double) =
- (value.ToString("R", CultureInfo.InvariantCulture))
- |> this.ensureDecimalPlaces
+ (value.ToString("R", CultureInfo.InvariantCulture)) |> this.ensureDecimalPlaces
member private this.literalFloat32(value: float32) = sprintf "(float32 %f)" value
@@ -278,9 +264,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let values' =
if isObjType then
- values
- |> Seq.map this.unknownLiteral
- |> Seq.map literalAsObj
+ values |> Seq.map this.unknownLiteral |> Seq.map literalAsObj
else
values |> Seq.map this.unknownLiteral
@@ -295,23 +279,19 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
}
- member private this.literalArray2D(values: obj [,]) =
+ member private this.literalArray2D(values: obj[,]) =
let rowCount = Array2D.length1 values - 1
let valuesCount = Array2D.length2 values - 1
let rowContents =
- [ 0 .. rowCount ]
- |> Seq.map
- (fun i ->
- let row' = values.[i, 0..valuesCount]
+ [ 0..rowCount ]
+ |> Seq.map (fun i ->
+ let row' = values.[i, 0..valuesCount]
- let entries =
- row'
- |> Seq.map this.unknownLiteral
- |> Seq.map literalAsObj
+ let entries = row' |> Seq.map this.unknownLiteral |> Seq.map literalAsObj
- sprintf "[ %s ]" (String.Join("; ", entries)))
+ sprintf "[ %s ]" (String.Join("; ", entries)))
sprintf "array2D [ %s ]" (String.Join("; ", rowContents))
@@ -330,14 +310,13 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let results =
exps
- |> Seq.map
- (fun e ->
- sb.Append(separator) |> ignore
+ |> Seq.map (fun e ->
+ sb.Append(separator) |> ignore
- let result = this.handleExpression e simple sb
+ let result = this.handleExpression e simple sb
- separator <- ", "
- result)
+ separator <- ", "
+ result)
results |> Seq.forall (fun r -> r = true)
@@ -356,16 +335,13 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
| ExpressionType.Convert ->
sb.Append("(") |> ignore
- let result =
- this.handleExpression (expression :?> UnaryExpression).Operand false sb
+ let result = this.handleExpression (expression :?> UnaryExpression).Operand false sb
- sb.Append($" :?> {this.ReferenceFullName expression.Type true})")
- |> ignore
+ sb.Append($" :?> {this.ReferenceFullName expression.Type true})") |> ignore
result
| ExpressionType.New ->
- sb.Append(this.ReferenceFullName expression.Type true)
- |> ignore
+ sb.Append(this.ReferenceFullName expression.Type true) |> ignore
this.handleArguments ((expression :?> NewExpression).Arguments) sb
@@ -375,8 +351,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let callExpr = expression :?> MethodCallExpression
if callExpr.Method.IsStatic then
- sb.Append(this.ReferenceFullName callExpr.Method.DeclaringType true)
- |> ignore
+ sb.Append(this.ReferenceFullName callExpr.Method.DeclaringType true) |> ignore
else if (not (this.handleExpression callExpr.Object false sb)) then
exitEarly <- true
@@ -388,8 +363,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
this.handleArguments callExpr.Arguments sb
| ExpressionType.Constant ->
- let value =
- (expression :?> ConstantExpression).Value
+ let value = (expression :?> ConstantExpression).Value
let valueToWrite =
if simple && (value.GetType() |> isNumeric) then
@@ -405,8 +379,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let memberExpression = expression :?> MemberExpression
let appendAndReturn () =
- sb.Append($".{memberExpression.Member.Name}")
- |> ignore
+ sb.Append($".{memberExpression.Member.Name}") |> ignore
true
@@ -415,16 +388,14 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
|> ignore
appendAndReturn ()
- elif this.handleExpression memberExpression.Expression false sb
- |> not then
+ elif this.handleExpression memberExpression.Expression false sb |> not then
false
else
appendAndReturn ()
| ExpressionType.Add ->
let binaryExpression = expression :?> BinaryExpression
- if this.handleExpression binaryExpression.Left false sb
- |> not then
+ if this.handleExpression binaryExpression.Left false sb |> not then
false
else
sb.Append(" + ") |> ignore
@@ -450,22 +421,19 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let allValues = flags |> this.getFlags |> HashSet
allValues
- |> Seq.iter
- (fun a ->
- let decomposedValues = this.getFlags a
+ |> Seq.iter (fun a ->
+ let decomposedValues = this.getFlags a
- if decomposedValues.Length > 1 then
- decomposedValues
- |> Seq.filter (fun v -> not (obj.Equals(v, a)))
- |> allValues.ExceptWith)
+ if decomposedValues.Length > 1 then
+ decomposedValues
+ |> Seq.filter (fun v -> not (obj.Equals(v, a)))
+ |> allValues.ExceptWith)
let folder previous current =
if String.IsNullOrEmpty previous then
this.getSimpleEnumValue t (Enum.GetName(t, current))
else
- previous
- + " | "
- + this.getSimpleEnumValue t (Enum.GetName(t, current))
+ previous + " | " + this.getSimpleEnumValue t (Enum.GetName(t, current))
allValues |> Seq.fold folder ""
@@ -516,18 +484,13 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member private this.isIdentifierStartCharacter ch =
if ch < 'a' then
- if ch < 'A' then
- false
- else
- ch <= 'Z' || ch = '_'
+ if ch < 'A' then false else ch <= 'Z' || ch = '_'
elif ch <= 'z' then
true
elif ch <= '\u007F' then
false
else
- ch
- |> CharUnicodeInfo.GetUnicodeCategory
- |> this.isLetterChar
+ ch |> CharUnicodeInfo.GetUnicodeCategory |> this.isLetterChar
member private this.handleScope (scope: ICollection) (sb: StringBuilder) =
if scope |> Seq.isEmpty then
@@ -552,16 +515,14 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
for i = partStart to (name.Length - 1) do
if name.[i] |> this.isIdentifierPartCharacter |> not then
if partStart <> i then
- sb.Append(name.Substring(partStart, (i - partStart)))
- |> ignore
+ sb.Append(name.Substring(partStart, (i - partStart))) |> ignore
partStart <- i + 1
if partStart <> name.Length then
sb.Append(name.Substring(partStart)) |> ignore
- if sb.Length = 0
- || sb.[0] |> this.isIdentifierStartCharacter |> not then
+ if sb.Length = 0 || sb.[0] |> this.isIdentifierStartCharacter |> not then
sb.Insert(0, "_") |> ignore
let identifier = sb |> this.handleScope scope
@@ -572,12 +533,8 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
identifier
member private this.buildFragment
- (
- fragment: MethodCallCodeFragment,
- typeQualified,
- instanceIdentifier,
- (indent: int)
- ) =
+ (fragment: MethodCallCodeFragment, typeQualified, instanceIdentifier, (indent: int))
+ =
let builder = IndentedStringBuilder()
let mutable current = fragment
@@ -585,13 +542,15 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
match arg with
| :? NestedClosureCodeFragment as n ->
let f = this.buildNestedFragment (n, indent)
- sb.AppendLine(f)
+ sb.AppendLine(f: string)
| _ -> sb.Append(this.unknownLiteral arg)
if typeQualified then
- if isNull instanceIdentifier
- || isNull fragment.MethodInfo
- || notNull fragment.ChainedCall then
+ if
+ isNull instanceIdentifier
+ || isNull fragment.MethodInfo
+ || notNull fragment.ChainedCall
+ then
raise (ArgumentException DesignStrings.CannotGenerateTypeQualifiedMethodCall)
builder.Append $"%s{fragment.DeclaringType}.%s{fragment.Method}(%s{instanceIdentifier}"
@@ -610,16 +569,13 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
builder.AppendLine().IncrementIndent() |> ignore
while notNull current do
- builder.Append(sprintf ".%s(" current.Method)
- |> ignore
+ builder.Append(sprintf ".%s(" current.Method) |> ignore
for i in [ 0 .. current.Arguments.Count - 1 ] do
if i <> 0 then
builder.Append(", ") |> ignore
- builder
- |> processArg current.Arguments.[i]
- |> ignore
+ builder |> processArg current.Arguments.[i] |> ignore
builder.Append(")") |> ignore
@@ -649,8 +605,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
builder.IncrementIndent() |> ignore
for l in lines do
- builder.AppendLines(l + " |> ignore", false)
- |> ignore
+ builder.AppendLines(l + " |> ignore", false) |> ignore
builder.Append(")") |> string
@@ -682,7 +637,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
| :? UInt64 as e -> this.literalUInt64 e
| :? UInt16 as e -> this.literalUInt16 e
| :? BigInteger as e -> this.literalBigInteger e
- | :? (string []) as e -> this.literalStringArray e
+ | :? (string[]) as e -> this.literalStringArray e
| :? Array as e -> this.literalArray e
| :? Type as t -> this.ReferenceFullName t false
| :? NestedClosureCodeFragment as n -> this.buildNestedFragment (n, 0)
@@ -690,33 +645,27 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
let literalType = value.GetType()
- let mapping =
- relationalTypeMappingSource.FindMapping literalType
+ let mapping = relationalTypeMappingSource.FindMapping literalType
if isNull mapping then
let t = value.GetType()
let type' =
- if t |> isNullableType then
- t |> unwrapNullableType
- elif t |> isOptionType then
- t |> unwrapOptionType
- else
- t
+ if t |> isNullableType then t |> unwrapNullableType
+ elif t |> isOptionType then t |> unwrapOptionType
+ else t
invalidOp (type' |> DesignStrings.UnknownLiteral)
else
let builder = IndentedStringBuilder()
let expression = mapping.GenerateCodeLiteral(value)
- let handled =
- this.handleExpression expression false builder
+ let handled = this.handleExpression expression false builder
if handled then
builder.ToString()
else
- let args =
- ((expression.ToString()), (displayName literalType false false))
+ let args = ((expression.ToString()), (displayName literalType false false))
args
|> DesignStrings.LiteralExpressionNotSupported
@@ -726,8 +675,38 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
interface ICSharpHelper with
- member this.Fragment(fragment: MethodCallCodeFragment, instanceIdentifer: string, typeQualified: bool) =
- this.buildFragment (fragment, typeQualified, instanceIdentifer, 0)
+ member this.Fragment(fragment: IMethodCallCodeFragment, instanceIdentifier: string, typeQualified: bool) =
+ this.buildFragment (fragment :?> MethodCallCodeFragment, typeQualified, instanceIdentifier, 0)
+
+ member this.Fragment(fragment: IMethodCallCodeFragment, indent: int) =
+ this.buildFragment (fragment :?> MethodCallCodeFragment, false, null, indent)
+
+ member this.Fragment(fragment: NestedClosureCodeFragment, indent: int) =
+ this.buildNestedFragment (fragment, indent)
+
+ member this.Fragment(fragment: PropertyAccessorCodeFragment) =
+ let props =
+ fragment.Properties
+ |> Seq.map (fun p -> fragment.Parameter + "." + p)
+ |> join ", "
+
+ sprintf "(fun %s -> (%s) :> obj)" fragment.Parameter props
+
+ member this.Fragment(fragment: AttributeCodeFragment) =
+ let args = fragment.Arguments |> Seq.map this.unknownLiteral |> join ", "
+
+ let namedArgs =
+ fragment.NamedArguments
+ |> Seq.map (fun kv -> sprintf "%s = %s" kv.Key (this.unknownLiteral kv.Value))
+ |> join ", "
+
+ let allArgs =
+ [ args; namedArgs ] |> List.filter (String.IsNullOrEmpty >> not) |> join ", "
+
+ if String.IsNullOrEmpty allArgs then
+ sprintf "[<%s>]" (this.ReferenceFullName fragment.Type false)
+ else
+ sprintf "[<%s(%s)>]" (this.ReferenceFullName fragment.Type false) allArgs
member this.Identifier(name: string, scope: ICollection, capitalize: Nullable) : string =
if isNull scope then
@@ -735,6 +714,21 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
else
this.IdentifierWithScope name scope
+ member this.Identifier
+ (name: string, value: 'T, scope: IDictionary, capitalize: Nullable)
+ : string =
+ let identifier =
+ if isNull (scope :> obj) then
+ this.IdentifierWithScope name [||]
+ else
+ let keys = scope.Keys :> ICollection
+ this.IdentifierWithScope name keys
+
+ if notNull (scope :> obj) then
+ scope.[identifier] <- value
+
+ identifier
+
member this.Lambda(properties: IReadOnlyList, lambdaIdentifier: string) : string =
let lambdaIdentifier' =
@@ -744,22 +738,41 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
lambdaIdentifier
let props =
- properties
- |> Seq.map (fun p -> lambdaIdentifier' + "." + p)
- |> join ", "
+ properties |> Seq.map (fun p -> lambdaIdentifier' + "." + p) |> join ", "
sprintf "(fun %s -> (%s) :> obj)" lambdaIdentifier' props
- member this.Literal(values: obj [,]) : string = this.literalArray2D values
+ member this.Lambda
+ (
+ properties: System.Collections.Generic.IEnumerable,
+ lambdaIdentifier: string
+ ) : string =
+ let lambdaIdentifier' =
+ if String.IsNullOrEmpty lambdaIdentifier then
+ "x"
+ else
+ lambdaIdentifier
+
+ let props =
+ properties |> Seq.map (fun p -> lambdaIdentifier' + "." + p.Name) |> join ", "
+
+ sprintf "(fun %s -> (%s) :> obj)" lambdaIdentifier' props
+
+ member this.Literal(values: obj[,]) : string = this.literalArray2D values
member this.Literal(value: Nullable<'T>) : string = this.unknownLiteral value
+ member this.Literal(value: BigInteger) : string = this.literalBigInteger value
+
member this.Literal(value: bool) : string = this.literalBoolean value
member this.Literal(value: byte) : string = this.literalByte value
member this.Literal(value: char) : string = this.literalChar value
+ member this.Literal(value: DateOnly) : string =
+ sprintf "DateOnly(%d, %d, %d)" value.Year value.Month value.Day
+
member this.Literal(value: DateTime) : string = this.literalDateTime value
member this.Literal(value: DateTimeOffset) : string = this.literalDateTimeOffset value
@@ -768,7 +781,7 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member this.Literal(value: float) : string = this.literalDouble value
- member this.Literal(value: Enum) : string = this.literalEnum value
+ member this.Literal(value: Enum, fullName: bool) : string = this.literalEnum value
member this.Literal(value: float32) : string = this.literalFloat32 value
@@ -784,6 +797,12 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member this.Literal(value: string) : string = this.literalString value
+ member this.Literal(value: TimeOnly) : string =
+ if value.Ticks % 10_000L = 0L then
+ sprintf "TimeOnly(%d, %d, %d, %d)" value.Hour value.Minute value.Second value.Millisecond
+ else
+ sprintf "TimeOnly(%dL)" value.Ticks
+
member this.Literal(value: TimeSpan) = this.literalTimeSpan value
member this.Literal(value: UInt32) = this.literalUInt32 value
@@ -792,14 +811,25 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
member this.Literal(value: UInt64) = this.literalUInt64 value
- member this.Literal(values: 'T [], vertical: bool) : string =
+ member this.Literal(values: 'T[], vertical: bool) : string =
let isObjType = typeof<'T> = typeof
this.literalList (values |> Seq.cast |> ResizeArray) vertical isObjType
+ member this.Literal(values: System.Collections.Generic.List<'T>, vertical: bool) : string =
+ let isObjType = typeof<'T> = typeof
+ this.literalList (values |> Seq.cast |> ResizeArray) vertical isObjType
+
+ member this.Literal(values: System.Collections.Generic.Dictionary<'TKey, 'TValue>, vertical: bool) : string =
+ let entries =
+ values
+ |> Seq.map (fun kv -> sprintf "(%s, %s)" (this.unknownLiteral kv.Key) (this.unknownLiteral kv.Value))
+
+ sprintf "[| %s |]" (String.Join("; ", entries))
+
member this.Literal(t: Type, fullName: Nullable) =
this.ReferenceFullName t (fullName.GetValueOrDefault())
- member this.Namespace(name: string []) : string =
+ member this.Namespace([] name: string[]) : string =
let join (ns': string array) = String.Join(".", ns')
let ns =
@@ -810,12 +840,28 @@ type FSharpHelper(relationalTypeMappingSource: IRelationalTypeMappingSource) =
|> Array.filter (String.IsNullOrEmpty >> not)
|> join
- if String.IsNullOrEmpty ns then
- "_"
- else
- ns
+ if String.IsNullOrEmpty ns then "_" else ns
member this.Reference(t: Type, fullName) : string =
this.ReferenceFullName t (fullName.GetValueOrDefault())
member this.UnknownLiteral(value: obj) : string = this.unknownLiteral value
+
+ member this.XmlComment(comment: string, indent: int) : string =
+ let lines = comment.Split([| '\n' |], StringSplitOptions.None)
+ lines |> Seq.map (fun l -> sprintf "/// %s" (l.TrimEnd())) |> join "\n"
+
+ member this.Arguments(values: System.Collections.Generic.IEnumerable) : string =
+ values |> Seq.map this.unknownLiteral |> join ", "
+
+ member this.GetRequiredUsings(``type``: Type) : System.Collections.Generic.IEnumerable = Seq.empty
+
+ member this.Statement
+ (node, collectedNamespaces, unsafeAccessors, constantReplacements, memberAccessReplacements)
+ : string =
+ raise (NotSupportedException "F# expression statements are not supported")
+
+ member this.Expression
+ (node, collectedNamespaces, unsafeAccessors, constantReplacements, memberAccessReplacements)
+ : string =
+ raise (NotSupportedException "F# expression generation is not supported")
diff --git a/src/EFCore.FSharp/Internal/FSharpUtilities.fs b/src/EFCore.FSharp/Internal/FSharpUtilities.fs
index ea6eac2..031a60f 100644
--- a/src/EFCore.FSharp/Internal/FSharpUtilities.fs
+++ b/src/EFCore.FSharp/Internal/FSharpUtilities.fs
@@ -17,7 +17,7 @@ module FSharpUtilities =
let private _primitiveTypeNames =
[ (typeof, "bool")
(typeof, "byte")
- (typeof, "byte[]")
+ (typeof, "byte[]")
(typeof, "sbyte")
(typeof, "char")
(typeof, "Int16")
@@ -41,10 +41,7 @@ module FSharpUtilities =
|> dict
let private escapeString (str: string) =
- str
- .Replace("\\", "\\\\")
- .Replace("\"", "\\\"")
- .Replace("\t", "\\t")
+ str.Replace("\\", "\\\\").Replace("\"", "\\\"").Replace("\t", "\\t")
let private escapeVerbatimString (str: string) = str.Replace("\"", "\"\"")
@@ -52,10 +49,7 @@ module FSharpUtilities =
"new byte[] {" + String.Join(", ", value) + "}"
let private generateLiteralStringArray (value: string array) =
- "[| "
- + (value
- |> Array.fold (fun c n -> c + "\"" + n + "\"; ") "")
- + "|]"
+ "[| " + (value |> Array.fold (fun c n -> c + "\"" + n + "\"; ") "") + "|]"
let private generateLiteralBool (value: bool) = if value then "true" else "false"
@@ -228,12 +222,11 @@ module FSharpUtilities =
let args =
t.GenericTypeArguments
- |> Array.map
- (fun t' ->
- if isNull t' then
- failwithf "%s has a null arg" t.Name
- else
- t' |> getTypeName)
+ |> Array.map (fun t' ->
+ if isNull t' then
+ failwithf "%s has a null arg" t.Name
+ else
+ t' |> getTypeName)
|> join ", "
match _fsharpTypeNames.TryGetValue genericTypeDefName with
@@ -267,21 +260,15 @@ module FSharpUtilities =
let generate (methodCallCodeFragment: MethodCallCodeFragment) =
let parameters =
- methodCallCodeFragment.Arguments
- |> Seq.map generateLiteral
- |> join ", "
+ methodCallCodeFragment.Arguments |> Seq.map generateLiteral |> join ", "
sprintf ".%s(%s)" methodCallCodeFragment.Method parameters
let OptionOfNullableObj v : 'a option =
- (v: 'a)
- |> box
- |> Option.ofObj
- |> Option.map (fun x -> x :?> 'a)
+ (v: 'a) |> box |> Option.ofObj |> Option.map (fun x -> x :?> 'a)
let exprToLinq (expr: Expr<'a -> 'b>) =
- let linq =
- LeafExpressionConverter.QuotationToExpression expr
+ let linq = LeafExpressionConverter.QuotationToExpression expr
let call = linq :?> MethodCallExpression
let lambda = call.Arguments.[0] :?> LambdaExpression
diff --git a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationOperationGenerator.fs b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationOperationGenerator.fs
index 0fcfe0c..582a70e 100644
--- a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationOperationGenerator.fs
+++ b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationOperationGenerator.fs
@@ -15,14 +15,8 @@ open EntityFrameworkCore.FSharp
type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
- let toOnedimensionalArray firstDimension (a: obj [,]) =
- Array.init
- a.Length
- (fun i ->
- if firstDimension then
- a.[i, 0]
- else
- a.[0, i])
+ let toOnedimensionalArray firstDimension (a: obj[,]) =
+ Array.init a.Length (fun i -> if firstDimension then a.[i, 0] else a.[0, i])
let sanitiseName name =
if FSharpUtilities.isKeyword name then
@@ -55,8 +49,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if nullableParameter.HasValue then
let value = nullableParameter |> code.UnknownLiteral
- $",%s{sanitiseName name} = Nullable(%s{value})"
- |> Some
+ $",%s{sanitiseName name} = Nullable(%s{value})" |> Some
else
None
@@ -67,18 +60,12 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
|> Seq.map (fun a -> $".Annotation(%s{code.Literal a.Name}, %s{code.UnknownLiteral a.Value})")
if lines |> Seq.isEmpty then
- if includeIgnore then
- ") |> ignore"
- else
- ")"
+ if includeIgnore then ") |> ignore" else ")"
elif lines |> Seq.length = 1 then
let line = lines |> Seq.head
- if includeIgnore then
- $"){line} |> ignore"
- else
- $"){line}"
+ if includeIgnore then $"){line} |> ignore" else $"){line}"
else
let last = lines |> Seq.last
@@ -86,12 +73,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
let tail =
lines
|> Seq.tail
- |> Seq.map
- (fun l ->
- if includeIgnore && l = last then
- l + " |> ignore"
- else
- l)
+ |> Seq.map (fun l -> if includeIgnore && l = last then l + " |> ignore" else l)
stringBuilder {
")" + (lines |> Seq.head)
@@ -114,9 +96,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
let last = lines |> Seq.last
let tail =
- lines
- |> Seq.tail
- |> Seq.map (fun l -> if l = last then l + " |> ignore" else l)
+ lines |> Seq.tail |> Seq.map (fun l -> if l = last then l + " |> ignore" else l)
stringBuilder {
lines |> Seq.head
@@ -234,8 +214,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if isOptionType op.ClrType then
$").SetValueConverter(OptionConverter<%s{op.ClrType |> unwrapOptionType |> code.Reference}> ()"
- let hasNoOldAnnotations =
- op.OldColumn.GetAnnotations() |> Seq.isEmpty
+ let hasNoOldAnnotations = op.OldColumn.GetAnnotations() |> Seq.isEmpty
annotations hasNoOldAnnotations (op.GetAnnotations())
@@ -251,8 +230,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
indent {
- let hasNoOldAnnotations =
- op.OldDatabase.GetAnnotations() |> Seq.isEmpty
+ let hasNoOldAnnotations = op.OldDatabase.GetAnnotations() |> Seq.isEmpty
annotations hasNoOldAnnotations (op.GetAnnotations())
@@ -277,8 +255,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
writeNullableParameterIfValue "oldMaxValue " op.OldSequence.MaxValue
writeParameterIfTrue op.OldSequence.IsCyclic "oldCyclic" "true"
- let hasNoOldAnnotations =
- op.OldSequence.GetAnnotations() |> Seq.isEmpty
+ let hasNoOldAnnotations = op.OldSequence.GetAnnotations() |> Seq.isEmpty
annotations hasNoOldAnnotations (op.GetAnnotations())
@@ -295,8 +272,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
writeName op.Name
writeSchema op.Schema
- let hasNoOldAnnotations =
- op.OldTable.GetAnnotations() |> Seq.isEmpty
+ let hasNoOldAnnotations = op.OldTable.GetAnnotations() |> Seq.isEmpty
annotations hasNoOldAnnotations (op.GetAnnotations())
@@ -399,11 +375,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
",columns = (fun table -> "
"{|"
- indent {
- op.Columns
- |> Seq.filter notNull
- |> Seq.map writeColumn
- }
+ indent { op.Columns |> Seq.filter notNull |> Seq.map writeColumn }
"|})"
}
@@ -411,10 +383,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
let writeUniqueConstraint (uc: AddUniqueConstraintOperation) =
let constraints =
- uc.Columns
- |> Seq.map (fun c -> map.[c])
- |> Seq.toList
- |> code.Lambda
+ uc.Columns |> Seq.map (fun c -> map.[c]) |> Seq.toList |> code.Lambda
stringBuilder {
$"table.UniqueConstraint({code.Literal uc.Name}, {constraints}"
@@ -435,16 +404,12 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
"table.ForeignKey("
let constraints =
- fk.Columns
- |> Seq.map (fun c -> map.[c])
- |> Seq.toList
- |> code.Lambda
+ fk.Columns |> Seq.map (fun c -> map.[c]) |> Seq.toList |> code.Lambda
indent {
writeName fk.Name
- if fk.Columns.Length = 1
- || isNull fk.PrincipalColumns then
+ if fk.Columns.Length = 1 || isNull fk.PrincipalColumns then
$",column = {constraints}"
else
$",columns = {constraints}"
@@ -482,22 +447,16 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
let pkName = op.PrimaryKey.Name |> code.Literal
let pkColumns =
- op.PrimaryKey.Columns
- |> Seq.map (fun c -> map.[c])
- |> Seq.toList
- |> code.Lambda
+ op.PrimaryKey.Columns |> Seq.map (fun c -> map.[c]) |> Seq.toList |> code.Lambda
$"table.PrimaryKey(%s{pkName}, %s{pkColumns}"
annotations true (op.PrimaryKey.GetAnnotations())
- op.UniqueConstraints
- |> Seq.map writeUniqueConstraint
+ op.UniqueConstraints |> Seq.map writeUniqueConstraint
- op.CheckConstraints
- |> Seq.map writeCheckConstraint
+ op.CheckConstraints |> Seq.map writeCheckConstraint
- op.ForeignKeys
- |> Seq.map writeForeignKeyConstraint
+ op.ForeignKeys |> Seq.map writeForeignKeyConstraint
}
")"
@@ -707,11 +666,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if length0 = 1 && length1 = 1 then
sprintf "value = %s :> obj" (op.Values.[0, 0] |> code.UnknownLiteral)
elif length0 = 1 then
- sprintf
- "values = %s"
- (op.Values
- |> toOnedimensionalArray false
- |> code.Literal)
+ sprintf "values = %s" (op.Values |> toOnedimensionalArray false |> code.Literal)
elif length1 = 1 then
let arr = op.Values |> toOnedimensionalArray true
let lines = code.Literal(arr, true)
@@ -747,15 +702,9 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if length0 = 1 && length1 = 1 then
yield sprintf "keyValue = %s" (op.KeyValues.[0, 0] |> code.UnknownLiteral)
elif length0 = 1 then
- yield
- sprintf
- "keyValues = %s"
- (op.KeyValues
- |> toOnedimensionalArray false
- |> code.Literal)
+ yield sprintf "keyValues = %s" (op.KeyValues |> toOnedimensionalArray false |> code.Literal)
elif length1 = 1 then
- let arr =
- op.KeyValues |> toOnedimensionalArray true
+ let arr = op.KeyValues |> toOnedimensionalArray true
let lines = code.Literal(arr, true)
yield sprintf "keyValues = %s" lines
@@ -788,15 +737,9 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if length0 = 1 && length1 = 1 then
yield sprintf "keyValue = %s" (op.KeyValues.[0, 0] |> code.UnknownLiteral)
elif length0 = 1 then
- yield
- sprintf
- "keyValues = %s"
- (op.KeyValues
- |> toOnedimensionalArray false
- |> code.Literal)
+ yield sprintf "keyValues = %s" (op.KeyValues |> toOnedimensionalArray false |> code.Literal)
elif length1 = 1 then
- let arr =
- op.KeyValues |> toOnedimensionalArray true
+ let arr = op.KeyValues |> toOnedimensionalArray true
let lines = code.Literal(arr, true)
yield sprintf "keyValues = %s" lines
@@ -814,12 +757,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
if length0 = 1 && length1 = 1 then
yield sprintf "value = %s" (op.Values.[0, 0] |> code.UnknownLiteral)
elif length0 = 1 then
- yield
- sprintf
- "values = %s"
- (op.Values
- |> toOnedimensionalArray false
- |> code.Literal)
+ yield sprintf "values = %s" (op.Values |> toOnedimensionalArray false |> code.Literal)
elif length1 = 1 then
let arr = op.Values |> toOnedimensionalArray true
let lines = code.Literal(arr, true)
@@ -893,9 +831,7 @@ type FSharpMigrationOperationGenerator(code: ICSharpHelper) =
| :? UpdateDataOperation as op' -> op' |> generateUpdateDataOperation
| :? AddCheckConstraintOperation as op' -> op' |> generateAddCheckConstraintOperation
| :? DropCheckConstraintOperation as op' -> op' |> generateDropCheckConstraintOperation
- | _ ->
- op
- |> invalidOp ((op.GetType()) |> DesignStrings.UnknownOperation) // The failure case
+ | _ -> op |> invalidOp ((op.GetType()) |> DesignStrings.UnknownOperation) // The failure case
builderName + result
diff --git a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsGenerator.fs b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsGenerator.fs
index 2e0cdce..1f18f19 100644
--- a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsGenerator.fs
+++ b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsGenerator.fs
@@ -26,11 +26,9 @@ type FSharpMigrationsGenerator(dependencies, fSharpDependencies: FSharpMigration
let code = fSharpDependencies.FSharpHelper
- let generator =
- fSharpDependencies.FSharpMigrationOperationGenerator
+ let generator = fSharpDependencies.FSharpMigrationOperationGenerator
- let snapshot =
- fSharpDependencies.FSharpSnapshotGenerator
+ let snapshot = fSharpDependencies.FSharpSnapshotGenerator
// Due to api shape we're currently forced to work around the fact EF expects 2 files per migration
let mutable tempUpOperations = list.Empty
@@ -46,9 +44,7 @@ type FSharpMigrationsGenerator(dependencies, fSharpDependencies: FSharpMigration
"Microsoft.EntityFrameworkCore.Migrations"
"Microsoft.EntityFrameworkCore.Storage.ValueConversion"
- if contextType.Namespace
- |> String.IsNullOrEmpty
- |> not then
+ if contextType.Namespace |> String.IsNullOrEmpty |> not then
contextType.Namespace
}
|> Seq.toList
@@ -62,15 +58,12 @@ type FSharpMigrationsGenerator(dependencies, fSharpDependencies: FSharpMigration
(downOperations)
(model)
=
- let allOperations =
- (upOperations |> Seq.append downOperations)
+ let allOperations = (upOperations |> Seq.append downOperations)
- let operationNamespaces =
- this.GetNamespaces allOperations |> Seq.toList
+ let operationNamespaces = this.GetNamespaces allOperations |> Seq.toList
let namespaces =
- (getDefaultNamespaces contextType
- @ operationNamespaces)
+ (getDefaultNamespaces contextType @ operationNamespaces)
|> sortNamespaces
|> Seq.distinct
diff --git a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsScaffolder.fs b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsScaffolder.fs
index a75f108..e88b8a9 100644
--- a/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsScaffolder.fs
+++ b/src/EFCore.FSharp/Migrations/Design/FSharpMigrationsScaffolder.fs
@@ -10,10 +10,8 @@ type FSharpMigrationsScaffolder(dependencies) =
inherit MigrationsScaffolder(dependencies)
// Copy of (modulo custom code changes) https://github.com/aspnet/EntityFrameworkCore/blob/d8b7ebbfabff3d2e8560c24b1ff14d1f4244ca6a/src/EFCore.Design/Migrations/Design/MigrationsScaffolder.cs#L365
- override this.Save(projectDir, migration, outputDir) =
- let lastMigrationFileName =
- migration.PreviousMigrationId
- + migration.FileExtension
+ override this.Save(projectDir, migration: ScaffoldedMigration, outputDir, dryRun) =
+ let lastMigrationFileName = migration.PreviousMigrationId + migration.FileExtension
let migrationDirectory =
if outputDir |> notNull then
@@ -25,45 +23,38 @@ type FSharpMigrationsScaffolder(dependencies) =
Path.Combine(migrationDirectory, migration.MigrationId + migration.FileExtension)
let migrationMetadataFile =
- Path.Combine(
- migrationDirectory,
- migration.MigrationId
- + ".Designer"
- + migration.FileExtension
- )
+ Path.Combine(migrationDirectory, migration.MigrationId + ".Designer" + migration.FileExtension)
- let modelSnapshotFileName =
- migration.SnapshotName + migration.FileExtension
+ let modelSnapshotFileName = migration.SnapshotName + migration.FileExtension
let modelSnapshotDirectory =
this.GetDirectory(projectDir, modelSnapshotFileName, migration.SnapshotSubnamespace)
- let modelSnapshotFile =
- Path.Combine(modelSnapshotDirectory, modelSnapshotFileName)
+ let modelSnapshotFile = Path.Combine(modelSnapshotDirectory, modelSnapshotFileName)
dependencies.OperationReporter.WriteVerbose(DesignStrings.WritingMigration(migrationFile))
- Directory.CreateDirectory(migrationDirectory)
- |> ignore
+ Directory.CreateDirectory(migrationDirectory) |> ignore
(* Custom code
This is all we need to support an F# compatible file structure
A makeover of the API (GenerateMigration ... -> migrationCode: string * metadataCode: string) would be best
That should include this Save method taking into account it sometimes can receive nothing for metadataCode
*)
- if migration.MigrationCode = "// intentionally empty" then
- File.WriteAllText(migrationFile, migration.MetadataCode, Encoding.UTF8)
- else
- File.WriteAllText(migrationFile, migration.MigrationCode, Encoding.UTF8)
- File.WriteAllText(migrationMetadataFile, migration.MetadataCode, Encoding.UTF8)
+ if not dryRun then
+ if migration.MigrationCode = "// intentionally empty" then
+ File.WriteAllText(migrationFile, (migration.MetadataCode: string), Encoding.UTF8)
+ else
+ File.WriteAllText(migrationFile, (migration.MigrationCode: string), Encoding.UTF8)
+ File.WriteAllText(migrationMetadataFile, (migration.MetadataCode: string), Encoding.UTF8)
(* End custom code *)
dependencies.OperationReporter.WriteVerbose(DesignStrings.WritingSnapshot(modelSnapshotFile))
- Directory.CreateDirectory(modelSnapshotDirectory)
- |> ignore
+ Directory.CreateDirectory(modelSnapshotDirectory) |> ignore
- File.WriteAllText(modelSnapshotFile, migration.SnapshotCode, Encoding.UTF8)
+ if not dryRun then
+ File.WriteAllText(modelSnapshotFile, (migration.SnapshotCode: string), Encoding.UTF8)
MigrationFiles(
MigrationFile = migrationFile,
diff --git a/src/EFCore.FSharp/Migrations/Design/FSharpSnapshotGenerator.fs b/src/EFCore.FSharp/Migrations/Design/FSharpSnapshotGenerator.fs
index 6e18240..6310d8c 100644
--- a/src/EFCore.FSharp/Migrations/Design/FSharpSnapshotGenerator.fs
+++ b/src/EFCore.FSharp/Migrations/Design/FSharpSnapshotGenerator.fs
@@ -16,11 +16,8 @@ open Microsoft.EntityFrameworkCore.Storage
open EntityFrameworkCore.FSharp
type FSharpSnapshotGenerator
- (
- code: ICSharpHelper,
- mappingSource: IRelationalTypeMappingSource,
- annotationCodeGenerator: IAnnotationCodeGenerator
- ) =
+ (code: ICSharpHelper, mappingSource: IRelationalTypeMappingSource, annotationCodeGenerator: IAnnotationCodeGenerator)
+ =
let mutable _typeQualifiedCalls: string option = None
@@ -36,12 +33,9 @@ type FSharpSnapshotGenerator
if typeMapping |> isNull then
let mapping = mappingSource.FindMapping(p)
- if mapping |> isNull then
- None
- elif mapping.Converter |> isNull then
- None
- else
- mapping.Converter |> Some
+ if mapping |> isNull then None
+ elif mapping.Converter |> isNull then None
+ else mapping.Converter |> Some
elif typeMapping.Converter |> isNull then
None
else
@@ -65,32 +59,31 @@ type FSharpSnapshotGenerator
let typeQualifiedCalls = ResizeArray()
fluentApiCalls
- |> Seq.iter
- (fun call ->
- if notNull call.MethodInfo
- && call.MethodInfo.IsStatic
- && (isNull call.MethodInfo.DeclaringType
- || call.MethodInfo.DeclaringType.Assembly
- <> typeof.Assembly) then
- typeQualifiedCalls.Add call
- else
- chainedCall <-
- match chainedCall with
- | None -> Some call
- | Some c -> Some(c.Chain(call)))
+ |> Seq.iter (fun call ->
+ if
+ notNull call.MethodInfo
+ && call.MethodInfo.IsStatic
+ && (isNull call.MethodInfo.DeclaringType
+ || call.MethodInfo.DeclaringType.Assembly
+ <> typeof.Assembly)
+ then
+ typeQualifiedCalls.Add call
+ else
+ chainedCall <-
+ match chainedCall with
+ | None -> Some call
+ | Some c -> Some(c.Chain(call)))
// Append remaining raw annotations which did not get generated as Fluent API calls
annotations.Values
|> Seq.sortBy (fun a -> a.Name)
- |> Seq.iter
- (fun a ->
- let call =
- MethodCallCodeFragment(hasAnnotationMethodInfo, a.Name, a.Value)
+ |> Seq.iter (fun a ->
+ let call = MethodCallCodeFragment(hasAnnotationMethodInfo, a.Name, a.Value)
- chainedCall <-
- match chainedCall with
- | None -> Some call
- | Some c -> Some(c.Chain(call)))
+ chainedCall <-
+ match chainedCall with
+ | None -> Some call
+ | Some c -> Some(c.Chain(call)))
let chainedCalls =
@@ -101,27 +94,23 @@ type FSharpSnapshotGenerator
else
stringBuilder {
- if leadingNewLine then ""
- (code.Fragment(c, builderName)) + " |> ignore"
+ if leadingNewLine then
+ ""
+
+ (code.Fragment(c, builderName, false)) + " |> ignore"
}
- | None ->
- if inChainedCall then
- "|> ignore"
- else
- ""
+ | None -> if inChainedCall then "|> ignore" else ""
let buildTypeQualifiedCall call =
- code.Fragment(call, builderName, typeQualified = true)
- + " |> ignore"
+ code.Fragment(call, builderName, typeQualified = true) + " |> ignore"
let typeQualifiedCalls =
if typeQualifiedCalls.Count > 0 then
stringBuilder {
""
- typeQualifiedCalls
- |> Seq.map buildTypeQualifiedCall
+ typeQualifiedCalls |> Seq.map buildTypeQualifiedCall
}
|> Some
else
@@ -139,17 +128,13 @@ type FSharpSnapshotGenerator
| true, defaultValue ->
let valueConverter =
if defaultValue <> (box DBNull.Value) then
- let valueConverter =
- property.GetValueConverter() |> Option.ofObj
+ let valueConverter = property.GetValueConverter() |> Option.ofObj
let typeMap =
- if property.FindTypeMapping()
- |> Option.ofObj
- |> Option.isSome then
+ if property.FindTypeMapping() |> Option.ofObj |> Option.isSome then
property.FindTypeMapping() |> Option.ofObj
else
- (mappingSource.FindMapping(property) :> CoreTypeMapping)
- |> Option.ofObj
+ (mappingSource.FindMapping(property) :> CoreTypeMapping) |> Option.ofObj
match valueConverter, typeMap with
| Some v, _ -> v |> Option.ofObj
@@ -166,8 +151,7 @@ type FSharpSnapshotGenerator
code.UnknownLiteral(value)
- $".HasDefaultValue({appendValueConverter})"
- |> Some
+ $".HasDefaultValue({appendValueConverter})" |> Some
| _ -> None
@@ -177,9 +161,7 @@ type FSharpSnapshotGenerator
|> annotationsToDictionary
let columnType (p: IProperty) =
- let columnType =
- p.GetColumnType()
- ?= mappingSource.GetMapping(p).StoreType
+ let columnType = p.GetColumnType() ?= mappingSource.GetMapping(p).StoreType
code.Literal columnType
@@ -194,20 +176,18 @@ type FSharpSnapshotGenerator
let generateFluentApiForPrecisionAndScale =
property.GetPrecision()
|> Option.ofNullable
- |> Option.map
- (fun i ->
- let scale =
- if property.GetScale().HasValue then
- $", {code.UnknownLiteral(property.GetScale().Value)}"
- else
- ""
+ |> Option.map (fun i ->
+ let scale =
+ if property.GetScale().HasValue then
+ $", {code.UnknownLiteral(property.GetScale().Value)}"
+ else
+ ""
- annotations.Remove(CoreAnnotationNames.Precision)
- |> ignore
+ annotations.Remove(CoreAnnotationNames.Precision) |> ignore
- $".HasPrecision({code.UnknownLiteral i}{scale})"
+ $".HasPrecision({code.UnknownLiteral i}{scale})"
- )
+ )
let generateFluentApiForUnicode =
property.IsUnicode()
@@ -255,8 +235,7 @@ type FSharpSnapshotGenerator
| None -> p.ClrType
let isPropertyRequired =
- let isNullable =
- (isOptionType clrType || isNullableType clrType)
+ let isNullable = (isOptionType clrType || isNullableType clrType)
(p.IsPrimaryKey()) || (not isNullable)
@@ -310,20 +289,13 @@ type FSharpSnapshotGenerator
let keyBuilderName =
let props =
- key.Properties
- |> Seq.map (fun p -> (p.Name |> code.Literal))
- |> join ", "
+ key.Properties |> Seq.map (fun p -> (p.Name |> code.Literal)) |> join ", "
- let methodName =
- if isPrimary then
- "HasKey"
- else
- "HasAlternateKey"
+ let methodName = if isPrimary then "HasKey" else "HasAlternateKey"
sprintf "%s.%s(%s)" entityTypeBuilderName methodName props
- let keyAnnotations =
- generateKeyAnnotations keyBuilderName key
+ let keyAnnotations = generateKeyAnnotations keyBuilderName key
stringBuilder {
""
@@ -345,15 +317,11 @@ type FSharpSnapshotGenerator
let otherKeys =
if isNull pk || pk.DeclaringEntityType.IsOwned() then
keys
- |> Seq.filter
- (fun k ->
- k <> pk
- && (k.GetReferencingForeignKeys() |> Seq.isEmpty
- || k.GetAnnotations()
- |> Seq.exists
- (fun a ->
- a.Name
- <> RelationalAnnotationNames.UniqueConstraintMappings)))
+ |> Seq.filter (fun k ->
+ k <> pk
+ && (k.GetReferencingForeignKeys() |> Seq.isEmpty
+ || k.GetAnnotations()
+ |> Seq.exists (fun a -> a.Name <> RelationalAnnotationNames.UniqueConstraintMappings)))
|> Seq.map (fun k -> generateKey entityTypeBuilderName k false)
else
Seq.empty
@@ -374,30 +342,22 @@ type FSharpSnapshotGenerator
let indexParams =
if isNull idx.Name then
- String.Join(
- ", ",
- (idx.Properties
- |> Seq.map (fun p -> p.Name |> code.Literal))
- )
+ String.Join(", ", (idx.Properties |> Seq.map (fun p -> p.Name |> code.Literal)))
else
sprintf
"[| %s |], %s"
- (String.Join(
- "; ",
- (idx.Properties
- |> Seq.map (fun p -> p.Name |> code.Literal))
- ))
+ (String.Join("; ", (idx.Properties |> Seq.map (fun p -> p.Name |> code.Literal))))
(code.Literal idx.Name)
- let indexBuilderName =
- sprintf "%s.HasIndex(%s)" entityTypeBuilderName indexParams
+ let indexBuilderName = sprintf "%s.HasIndex(%s)" entityTypeBuilderName indexParams
stringBuilder {
""
indexBuilderName
indent {
- if idx.IsUnique then ".IsUnique()"
+ if idx.IsUnique then
+ ".IsUnique()"
generateIndexAnnotations indexBuilderName idx
}
@@ -424,8 +384,7 @@ type FSharpSnapshotGenerator
""
| _ -> ""
- let propsToWrite =
- props |> Seq.map writeProperty |> join "; "
+ let propsToWrite = props |> Seq.map writeProperty |> join "; "
$"{{| {propsToWrite} |}}"
@@ -445,21 +404,20 @@ type FSharpSnapshotGenerator
""
let schema =
- if String.IsNullOrEmpty(sequence.Schema) |> not
- && sequence.Model.GetDefaultSchema()
- <> sequence.Schema then
+ if
+ String.IsNullOrEmpty(sequence.Schema) |> not
+ && sequence.Model.GetDefaultSchema() <> sequence.Schema
+ then
$", {code.Literal sequence.Schema}"
else
""
let lines =
seq {
- if sequence.StartValue
- <> (Sequence.DefaultStartValue |> int64) then
+ if sequence.StartValue <> (Sequence.DefaultStartValue |> int64) then
$".StartsAt({code.Literal sequence.StartValue})"
- if sequence.IncrementBy
- <> Sequence.DefaultIncrementBy then
+ if sequence.IncrementBy <> Sequence.DefaultIncrementBy then
$".IncrementsBy({code.Literal sequence.IncrementBy})"
if sequence.MinValue <> Sequence.DefaultMinValue then
@@ -518,13 +476,10 @@ type FSharpSnapshotGenerator
else
defaultValue ()
- let annotationList =
- entityType.GetAnnotations() |> Seq.toList
+ let annotationList = entityType.GetAnnotations() |> Seq.toList
let findInList (a: IAnnotation list) name =
- a
- |> List.tryFind (fun an -> an.Name = name)
- |> Option.toObj
+ a |> List.tryFind (fun an -> an.Name = name) |> Option.toObj
let discriminatorPropertyAnnotation =
findInList annotationList CoreAnnotationNames.DiscriminatorProperty
@@ -551,77 +506,55 @@ type FSharpSnapshotGenerator
- let tableNameAnnotation =
- tryGetAnnotationByName RelationalAnnotationNames.TableName
+ let tableNameAnnotation = tryGetAnnotationByName RelationalAnnotationNames.TableName
- if annotationAndValueNotNull tableNameAnnotation
- || (isNull entityType.BaseType) then
+ if annotationAndValueNotNull tableNameAnnotation || (isNull entityType.BaseType) then
- let tableName =
- getAnnotationValue tableNameAnnotation entityType.GetTableName
+ let tableName = getAnnotationValue tableNameAnnotation entityType.GetTableName
if notNull tableName || notNull tableNameAnnotation then
- sb
- .AppendLine("")
- .Append(entityTypeBuilderName)
- .Append(".ToTable(")
- |> ignore
+ sb.AppendLine("").Append(entityTypeBuilderName).Append(".ToTable(") |> ignore
- let schemaAnnotation =
- tryGetAnnotationByName RelationalAnnotationNames.Schema
+ let schemaAnnotation = tryGetAnnotationByName RelationalAnnotationNames.Schema
- let schema =
- getAnnotationValue schemaAnnotation entityType.GetSchema
+ let schema = getAnnotationValue schemaAnnotation entityType.GetSchema
- if isNull tableName
- && (isNull schemaAnnotation || isNull schema) then
- sb.Append(sprintf "(string %s)" (code.UnknownLiteral tableName))
- |> ignore
+ if isNull tableName && (isNull schemaAnnotation || isNull schema) then
+ sb.Append(sprintf "(string %s)" (code.UnknownLiteral tableName)) |> ignore
else
sb.Append(code.UnknownLiteral tableName) |> ignore
if notNull tableNameAnnotation then
- annotations.Remove(tableNameAnnotation.Name)
- |> ignore
+ annotations.Remove(tableNameAnnotation.Name) |> ignore
let isExcludedAnnotation =
tryGetAnnotationByName RelationalAnnotationNames.IsTableExcludedFromMigrations
- if notNull schema
- || (notNull schemaAnnotation && notNull tableName) then
- if isNull schema
- && (notNull isExcludedAnnotation
- && (isExcludedAnnotation.Value :?> Nullable)
- .GetValueOrDefault()
- <> true) then
- sb.Append(sprintf ", (string %s)" (code.UnknownLiteral schema))
- |> ignore
+ if notNull schema || (notNull schemaAnnotation && notNull tableName) then
+ if
+ isNull schema
+ && (notNull isExcludedAnnotation
+ && (isExcludedAnnotation.Value :?> Nullable).GetValueOrDefault() <> true)
+ then
+ sb.Append(sprintf ", (string %s)" (code.UnknownLiteral schema)) |> ignore
elif notNull schema then
- sb.Append(sprintf ", %s" (code.UnknownLiteral schema))
- |> ignore
+ sb.Append(sprintf ", %s" (code.UnknownLiteral schema)) |> ignore
if notNull isExcludedAnnotation then
- if (isExcludedAnnotation.Value :?> Nullable)
- .GetValueOrDefault() then
- sb.Append ", (fun t -> t.ExcludeFromMigrations())"
- |> ignore
+ if (isExcludedAnnotation.Value :?> Nullable).GetValueOrDefault() then
+ sb.Append ", (fun t -> t.ExcludeFromMigrations())" |> ignore
- annotations.Remove(isExcludedAnnotation.Name)
- |> ignore
+ annotations.Remove(isExcludedAnnotation.Name) |> ignore
sb.Append ") |> ignore" |> ignore
- annotations.Remove(RelationalAnnotationNames.Schema)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.Schema) |> ignore
- let viewNameAnnotation =
- tryGetAnnotationByName RelationalAnnotationNames.ViewName
+ let viewNameAnnotation = tryGetAnnotationByName RelationalAnnotationNames.ViewName
- if (annotationAndValueNotNull viewNameAnnotation
- || isNull entityType.BaseType) then
- let viewName =
- getAnnotationValue viewNameAnnotation entityType.GetViewName
+ if (annotationAndValueNotNull viewNameAnnotation || isNull entityType.BaseType) then
+ let viewName = getAnnotationValue viewNameAnnotation entityType.GetViewName
if notNull viewName then
sb
@@ -630,8 +563,7 @@ type FSharpSnapshotGenerator
|> ignore
if notNull viewNameAnnotation then
- annotations.Remove(viewNameAnnotation.Name)
- |> ignore
+ annotations.Remove(viewNameAnnotation.Name) |> ignore
let viewSchemaAnnotation =
tryGetAnnotationByName RelationalAnnotationNames.ViewSchema
@@ -639,32 +571,24 @@ type FSharpSnapshotGenerator
if annotationAndValueNotNull viewSchemaAnnotation then
let viewSchemaAnnotationValue = viewSchemaAnnotation.Value :?> string
- sb
- .Append(", ")
- .Append(code.UnknownLiteral viewSchemaAnnotationValue)
- |> ignore
+ sb.Append(", ").Append(code.UnknownLiteral viewSchemaAnnotationValue) |> ignore
- annotations.Remove(viewSchemaAnnotation.Name)
- |> ignore
+ annotations.Remove(viewSchemaAnnotation.Name) |> ignore
sb.Append ") |> ignore" |> ignore
- annotations.Remove(RelationalAnnotationNames.ViewSchema)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.ViewSchema) |> ignore
- annotations.Remove(RelationalAnnotationNames.ViewDefinitionSql)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.ViewDefinitionSql) |> ignore
let functionNameAnnotation =
tryGetAnnotationByName RelationalAnnotationNames.FunctionName
- if annotationAndValueNotNull functionNameAnnotation
- || isNull entityType.BaseType then
+ if annotationAndValueNotNull functionNameAnnotation || isNull entityType.BaseType then
let functionName =
getAnnotationValue functionNameAnnotation entityType.GetFunctionName
- if notNull functionName
- || notNull functionNameAnnotation then
+ if notNull functionName || notNull functionNameAnnotation then
sb
.AppendLine("")
.Append(entityTypeBuilderName)
@@ -674,16 +598,12 @@ type FSharpSnapshotGenerator
|> ignore
if notNull functionNameAnnotation then
- annotations.Remove(functionNameAnnotation.Name)
- |> ignore
+ annotations.Remove(functionNameAnnotation.Name) |> ignore
- let sqlQueryAnnotation =
- tryGetAnnotationByName RelationalAnnotationNames.SqlQuery
+ let sqlQueryAnnotation = tryGetAnnotationByName RelationalAnnotationNames.SqlQuery
- if annotationAndValueNotNull sqlQueryAnnotation
- || isNull entityType.BaseType then
- let sqlQuery =
- getAnnotationValue sqlQueryAnnotation entityType.GetSqlQuery
+ if annotationAndValueNotNull sqlQueryAnnotation || isNull entityType.BaseType then
+ let sqlQuery = getAnnotationValue sqlQueryAnnotation entityType.GetSqlQuery
if notNull sqlQuery || notNull sqlQueryAnnotation then
sb
@@ -695,15 +615,11 @@ type FSharpSnapshotGenerator
|> ignore
if notNull sqlQueryAnnotation then
- annotations.Remove(sqlQueryAnnotation.Name)
- |> ignore
+ annotations.Remove(sqlQueryAnnotation.Name) |> ignore
if hasDiscriminator then
- sb
- .AppendLine("")
- .Append(entityTypeBuilderName)
- .Append(".HasDiscriminator")
+ sb.AppendLine("").Append(entityTypeBuilderName).Append(".HasDiscriminator")
|> ignore
if annotationAndValueNotNull discriminatorPropertyAnnotation then
@@ -712,9 +628,7 @@ type FSharpSnapshotGenerator
let propertyClrType =
match discriminatorProperty |> findValueConverter with
- | Some c ->
- c.ProviderClrType
- |> makeNullable discriminatorProperty.IsNullable
+ | Some c -> c.ProviderClrType |> makeNullable discriminatorProperty.IsNullable
| None -> discriminatorProperty.ClrType
sb
@@ -728,13 +642,9 @@ type FSharpSnapshotGenerator
sb.Append "()" |> ignore
if annotationAndValueNotNull discriminatorMappingCompleteAnnotation then
- let value =
- discriminatorMappingCompleteAnnotation.Value
+ let value = discriminatorMappingCompleteAnnotation.Value
- sb
- .Append(".IsComplete(")
- .Append(code.UnknownLiteral(value))
- .Append(")")
+ sb.Append(".IsComplete(").Append(code.UnknownLiteral(value)).Append(")")
|> ignore
if annotationAndValueNotNull discriminatorValueAnnotation then
@@ -750,11 +660,7 @@ type FSharpSnapshotGenerator
else
defaultValue
- sb
- .Append(".HasValue(")
- .Append(code.UnknownLiteral(value))
- .Append(")")
- |> ignore
+ sb.Append(".HasValue(").Append(code.UnknownLiteral(value)).Append(")") |> ignore
sb.Append " |> ignore" |> ignore
@@ -775,9 +681,7 @@ type FSharpSnapshotGenerator
member private this.generateForeignKey entityTypeBuilderName (fk: IForeignKey) =
let literalPropNames (properties: seq) =
- properties
- |> Seq.map (fun p -> p.Name |> code.Literal)
- |> join ", "
+ properties |> Seq.map (fun p -> p.Name |> code.Literal) |> join ", "
let definition =
if not fk.IsOwnership then
@@ -810,8 +714,7 @@ type FSharpSnapshotGenerator
lines.Add $".WithOne({ptd})"
lines.Add $".HasForeignKey({code.Literal fk.DeclaringEntityType.Name}, {literalPropNames fk.Properties})"
- if fk.PrincipalKey
- <> fk.PrincipalEntityType.FindPrimaryKey() then
+ if fk.PrincipalKey <> fk.PrincipalEntityType.FindPrimaryKey() then
lines.Add
$".HasPrincipalKey({code.Literal fk.PrincipalEntityType.Name}, {literalPropNames fk.PrincipalKey.Properties})"
@@ -822,8 +725,7 @@ type FSharpSnapshotGenerator
lines.Add $".HasForeignKey({literalPropNames fk.Properties})"
- if fk.PrincipalKey
- <> fk.PrincipalEntityType.FindPrimaryKey() then
+ if fk.PrincipalKey <> fk.PrincipalEntityType.FindPrimaryKey() then
lines.Add $".HasPrincipalKey({literalPropNames fk.PrincipalKey.Properties})"
if not fk.IsOwnership then
@@ -943,11 +845,7 @@ type FSharpSnapshotGenerator
| true, (true, _) -> counter <- counter + 1
| _ -> ()
- "b"
- + if counter = 0 then
- ""
- else
- counter.ToString()
+ "b" + if counter = 0 then "" else counter.ToString()
else
"b"
@@ -992,10 +890,7 @@ type FSharpSnapshotGenerator
let navigations =
entityType.GetDeclaredNavigations()
- |> Seq.filter
- (fun n ->
- (not n.IsOnDependent)
- && (not n.ForeignKey.IsOwnership))
+ |> Seq.filter (fun n -> (not n.IsOnDependent) && (not n.ForeignKey.IsOwnership))
stringBuilder {
$"{builderName}.Entity({code.Literal entityType.Name}, (fun b ->"
@@ -1005,27 +900,19 @@ type FSharpSnapshotGenerator
member private this.generateEntityTypes builderName (entities: IEntityType seq) =
- let entitiesToWrite =
- entities |> Seq.filter (findOwnership >> isNull)
+ let entitiesToWrite = entities |> Seq.filter (findOwnership >> isNull)
let relationships =
entitiesToWrite
- |> Seq.filter
- (fun e ->
- (e |> getDeclaredForeignKeys |> Seq.isEmpty |> not)
- || (e
- |> getDeclaredReferencingForeignKeys
- |> Seq.exists (fun fk -> fk.IsOwnership)))
+ |> Seq.filter (fun e ->
+ (e |> getDeclaredForeignKeys |> Seq.isEmpty |> not)
+ || (e |> getDeclaredReferencingForeignKeys |> Seq.exists (fun fk -> fk.IsOwnership)))
let navigations =
entitiesToWrite
- |> Seq.filter
- (fun e ->
- e.GetDeclaredNavigations()
- |> Seq.exists
- (fun n ->
- (not n.IsOnDependent)
- && (not n.ForeignKey.IsOwnership)))
+ |> Seq.filter (fun e ->
+ e.GetDeclaredNavigations()
+ |> Seq.exists (fun n -> (not n.IsOnDependent) && (not n.ForeignKey.IsOwnership)))
stringBuilder {
diff --git a/src/EFCore.FSharp/Migrations/Internal/FSharpMigrationsModelDiffer.fs b/src/EFCore.FSharp/Migrations/Internal/FSharpMigrationsModelDiffer.fs
index e06fdab..993335e 100644
--- a/src/EFCore.FSharp/Migrations/Internal/FSharpMigrationsModelDiffer.fs
+++ b/src/EFCore.FSharp/Migrations/Internal/FSharpMigrationsModelDiffer.fs
@@ -8,15 +8,9 @@ open EntityFrameworkCore.FSharp.SharedTypeExtensions
open Microsoft.EntityFrameworkCore.Metadata.Internal
type FSharpMigrationsModelDiffer
- (
- typeMappingSource,
- migrationsAnnotations,
- changeDetector,
- updateAdapterFactory,
- commandBatchPreparerDependencies
- ) =
- inherit MigrationsModelDiffer
- (
+ (typeMappingSource, migrationsAnnotations, changeDetector, updateAdapterFactory, commandBatchPreparerDependencies) =
+ inherit
+ MigrationsModelDiffer(
typeMappingSource,
migrationsAnnotations,
changeDetector,
@@ -28,23 +22,17 @@ type FSharpMigrationsModelDiffer
let clrType = p.ClrType
let isPrimaryKey = p.IsPrimaryKey()
- let isNullable =
- (isOptionType clrType || isNullableType clrType)
+ let isNullable = (isOptionType clrType || isNullableType clrType)
isNullable && not isPrimaryKey
override _.Diff
- (
- source: IColumn,
- target: IColumn,
- diffContext: MigrationsModelDiffer.DiffContext
- ) : MigrationOperation seq =
+ (source: IColumn, target: IColumn, diffContext: MigrationsModelDiffer.DiffContext)
+ : MigrationOperation seq =
- let sourceTypeProperty =
- (source.PropertyMappings |> Seq.head).Property
+ let sourceTypeProperty = (source.PropertyMappings |> Seq.head).Property
- let targetTypeProperty =
- (target.PropertyMappings |> Seq.head).Property
+ let targetTypeProperty = (target.PropertyMappings |> Seq.head).Property
(source :?> Column).IsNullable <- isNullableType sourceTypeProperty
(target :?> Column).IsNullable <- isNullableType targetTypeProperty
@@ -58,8 +46,7 @@ type FSharpMigrationsModelDiffer
[] ``inline``: bool
) : MigrationOperation seq =
- let sourceTypeProperty =
- (source.PropertyMappings |> Seq.head).Property
+ let sourceTypeProperty = (source.PropertyMappings |> Seq.head).Property
(source :?> Column).IsNullable <- isNullableType sourceTypeProperty
diff --git a/src/EFCore.FSharp/Scaffolding/FSharpDbContextGenerator.fs b/src/EFCore.FSharp/Scaffolding/FSharpDbContextGenerator.fs
index 6b66c24..29874dd 100644
--- a/src/EFCore.FSharp/Scaffolding/FSharpDbContextGenerator.fs
+++ b/src/EFCore.FSharp/Scaffolding/FSharpDbContextGenerator.fs
@@ -38,12 +38,11 @@ type FSharpDbContextGenerator
=
annotationCodeGenerator.GenerateFluentApiCalls(annotatable, annotations)
- |> Seq.iter
- (fun fluentApiCall ->
- lines.Add(code.Fragment(fluentApiCall))
+ |> Seq.iter (fun fluentApiCall ->
+ lines.Add(code.Fragment(fluentApiCall))
- if notNull fluentApiCall.Namespace then
- namespaces.Add fluentApiCall.Namespace |> ignore)
+ if notNull fluentApiCall.Namespace then
+ namespaces.Add fluentApiCall.Namespace |> ignore)
lines.AddRange(
annotations.Values
@@ -75,9 +74,7 @@ type FSharpDbContextGenerator
lines.Add(sprintf ".HasPrincipalKey(%s)" principalKeyProps)
let fkProps =
- foreignKey.Properties
- |> Seq.map (fun e -> code.Literal(e.Name))
- |> join ", "
+ foreignKey.Properties |> Seq.map (fun e -> code.Literal(e.Name)) |> join ", "
lines.Add(sprintf ".HasForeignKey(%s)" fkProps)
@@ -101,9 +98,7 @@ type FSharpDbContextGenerator
else
let connStringFragment =
- connectionString
- |> providerCodeGenerator.GenerateUseProvider
- |> code.Fragment
+ connectionString |> providerCodeGenerator.GenerateUseProvider |> code.Fragment
stringBuilder {
"override this.OnConfiguring(optionsBuilder: DbContextOptionsBuilder) ="
@@ -120,14 +115,13 @@ type FSharpDbContextGenerator
let generateSequence (s: ISequence) =
let methodName =
- if s.ClrType = Sequence.DefaultClrType then
+ if s.Type = Sequence.DefaultClrType then
"HasSequence"
else
- sprintf "HasSequence<%s>" (FSharpUtilities.getTypeName (s.ClrType))
+ sprintf "HasSequence<%s>" (FSharpUtilities.getTypeName (s.Type))
let parameters =
- if (s.Schema |> String.IsNullOrEmpty)
- && (s.Model.GetDefaultSchema() <> s.Schema) then
+ if (s.Schema |> String.IsNullOrEmpty) && (s.Model.GetDefaultSchema() <> s.Schema) then
sprintf "%s, %s" (s.Name |> FSharpUtilities.delimitString) (s.Schema |> FSharpUtilities.delimitString)
else
s.Name |> FSharpUtilities.delimitString
@@ -142,19 +136,14 @@ type FSharpDbContextGenerator
if s.IncrementBy <> Sequence.DefaultIncrementBy then
$".IncrementsBy({s.IncrementBy})"
- if
- s.MinValue
- <> Nullable(Sequence.DefaultMinValue |> int64)
- then
+ if s.MinValue <> Nullable(Sequence.DefaultMinValue |> int64) then
$".HasMin({s.MinValue})"
- if
- s.MaxValue
- <> Nullable(Sequence.DefaultMaxValue |> int64)
- then
+ if s.MaxValue <> Nullable(Sequence.DefaultMaxValue |> int64) then
$".HasMax({s.MaxValue})"
- if s.IsCyclic then $".IsCyclic()"
+ if s.IsCyclic then
+ $".IsCyclic()"
""
}
@@ -174,10 +163,7 @@ type FSharpDbContextGenerator
let generatePropertyNameArray (properties: IReadOnlyList) =
- let props =
- properties
- |> Seq.map (fun p -> code.Literal p.Name)
- |> join "; "
+ let props = properties |> Seq.map (fun p -> code.Literal p.Name) |> join "; "
sprintf "[| %s |]" props
@@ -203,8 +189,7 @@ type FSharpDbContextGenerator
if lines |> Seq.isEmpty then
None
else
- let head =
- entityLambdaIdentifier + (lines |> Seq.head)
+ let head = entityLambdaIdentifier + (lines |> Seq.head)
let tail = lines |> Seq.tail
@@ -225,15 +210,13 @@ type FSharpDbContextGenerator
|> Some
let generateKeyGuardClause (key: IKey) (annotations: IAnnotation seq) useDataAnnotations explicitName =
- if key.Properties.Count = 1
- && annotations |> Seq.isEmpty then
+ if key.Properties.Count = 1 && annotations |> Seq.isEmpty then
match key with
| :? IConventionKey as concreteKey ->
let keyProperties = key.Properties
let concreteDeclaringProperties =
- concreteKey.DeclaringEntityType.GetProperties()
- |> Seq.cast
+ concreteKey.DeclaringEntityType.GetProperties() |> Seq.cast
let concreteProperties =
@@ -273,8 +256,7 @@ type FSharpDbContextGenerator
let explicitName = key.GetName() <> key.GetDefaultName()
- annotations.Remove(RelationalAnnotationNames.Name)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.Name) |> ignore
let earlyExit =
generateKeyGuardClause key annotations.Values useDataAnnotations explicitName
@@ -300,13 +282,11 @@ type FSharpDbContextGenerator
let schema = entityType.GetSchema()
let defaultSchema = entityType.Model.GetDefaultSchema()
- let explicitSchema =
- not (isNull schema) && schema <> defaultSchema
+ let explicitSchema = not (isNull schema) && schema <> defaultSchema
let explicitTable =
explicitSchema
- || not (isNull tableName)
- && tableName <> entityType.GetDbSetName()
+ || not (isNull tableName) && tableName <> entityType.GetDbSetName()
if explicitTable then
@@ -322,8 +302,7 @@ type FSharpDbContextGenerator
let viewName = entityType.GetViewName()
let viewSchema = entityType.GetViewSchema()
- let explicitViewSchema =
- notNull viewSchema && viewSchema <> defaultSchema
+ let explicitViewSchema = notNull viewSchema && viewSchema <> defaultSchema
let explicitViewTable = explicitViewSchema || notNull viewName
@@ -357,8 +336,7 @@ type FSharpDbContextGenerator
(code.Literal(index.GetDatabaseName()))
)
- annotations.Remove(RelationalAnnotationNames.Name)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.Name) |> ignore
if index.IsUnique then
lines.Add(".IsUnique()")
@@ -380,29 +358,24 @@ type FSharpDbContextGenerator
annotationCodeGenerator.RemoveAnnotationsHandledByConventions(property, annotations)
if useDataAnnotations then
- annotations.Remove(RelationalAnnotationNames.ColumnName)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.ColumnName) |> ignore
- annotations.Remove(RelationalAnnotationNames.ColumnType)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.ColumnType) |> ignore
annotationCodeGenerator.GenerateDataAnnotationAttributes(property, annotations)
|> ignore
- else if property.IsNullable |> not
- && property.ClrType
- |> SharedTypeExtensions.isNullableType
- && property.IsPrimaryKey() |> not then
+ else if
+ property.IsNullable |> not
+ && property.ClrType |> SharedTypeExtensions.isNullableType
+ && property.IsPrimaryKey() |> not
+ then
lines.Add(".IsRequired()")
- match property.GetConfiguredColumnType()
- |> isNull
- |> not
- with
+ match property.GetConfiguredColumnType() |> isNull |> not with
| true ->
lines.Add($".HasColumnType({code.Literal(property.GetConfiguredColumnType())})")
- annotations.Remove(RelationalAnnotationNames.ColumnType)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.ColumnType) |> ignore
| false -> ()
match property.GetMaxLength() |> Option.ofNullable with
@@ -422,8 +395,7 @@ type FSharpDbContextGenerator
match property.GetDefaultValue() |> Option.ofObj with
| Some d ->
- annotations.Remove(RelationalAnnotationNames.DefaultValue)
- |> ignore
+ annotations.Remove(RelationalAnnotationNames.DefaultValue) |> ignore
match d with
| :? DBNull -> lines.Add(".HasDefaultValue()")
@@ -435,12 +407,9 @@ type FSharpDbContextGenerator
match property with
| :? IConventionProperty as cp ->
- match cp.GetValueGeneratedConfigurationSource()
- |> Option.ofNullable
- with
+ match cp.GetValueGeneratedConfigurationSource() |> Option.ofNullable with
| Some valueGeneratedConfigurationSource when
- valueGeneratedConfigurationSource
- <> ConfigurationSource.Convention
+ valueGeneratedConfigurationSource <> ConfigurationSource.Convention
&& ValueGenerationConvention.GetValueGenerated(property)
<> (valueGenerated |> Nullable)
->
@@ -497,10 +466,7 @@ type FSharpDbContextGenerator
lines.Add(
sprintf
".%s(%s)"
- (if fk.IsUnique then
- "WithOne"
- else
- "WithMany")
+ (if fk.IsUnique then "WithOne" else "WithMany")
(if isNull fk.PrincipalToDependent then
""
else
@@ -512,15 +478,11 @@ type FSharpDbContextGenerator
let typeParam =
if fk.IsUnique then
- (sprintf
- "<%s>"
- ((fk.PrincipalEntityType :> ITypeBase)
- .DisplayName()))
+ (sprintf "<%s>" ((fk.PrincipalEntityType :> ITypeBase).DisplayName()))
else
""
- let methodParams =
- code.Lambda(fk.PrincipalKey.Properties, "p")
+ let methodParams = code.Lambda(fk.PrincipalKey.Properties, "p")
lines.Add(sprintf ".HasPrincipalKey%s(%s)" typeParam methodParams)
@@ -530,10 +492,7 @@ type FSharpDbContextGenerator
else
""
- let methodParams =
- fk.Properties
- |> Seq.map (fun p -> "d." + p.Name)
- |> join ", "
+ let methodParams = fk.Properties |> Seq.map (fun p -> "d." + p.Name) |> join ", "
lines.Add(
sprintf ".HasForeignKey%s(fun (d:%s) -> (%s) :> obj)" typeParam fk.DeclaringEntityType.Name methodParams
@@ -554,8 +513,7 @@ type FSharpDbContextGenerator
generateAnnotations fk annotations lines
- if not useDataAnnotations
- || not canUseDataAnnotations then
+ if not useDataAnnotations || not canUseDataAnnotations then
appendMultiLineFluentApi fk.DeclaringEntityType lines
else
@@ -583,13 +541,9 @@ type FSharpDbContextGenerator
let explicitName = key.GetName() <> key.GetDefaultName()
- keyAnnotations.Remove(RelationalAnnotationNames.Name)
- |> ignore
+ keyAnnotations.Remove(RelationalAnnotationNames.Name) |> ignore
- let props =
- key.Properties
- |> Seq.map (fun e -> code.Literal(e.Name))
- |> join ", "
+ let props = key.Properties |> Seq.map (fun e -> code.Literal(e.Name)) |> join ", "
lines.Add $"j.HasKey({props})"
@@ -620,14 +574,11 @@ type FSharpDbContextGenerator
let schema = joinEntityType.GetSchema()
let defaultSchema = joinEntityType.Model.GetDefaultSchema()
- let explicitSchema =
- notNull schema && schema <> defaultSchema
+ let explicitSchema = notNull schema && schema <> defaultSchema
let parameterString =
if explicitSchema then
- (code.Literal tableName)
- + ", "
- + (code.Literal schema)
+ (code.Literal tableName) + ", " + (code.Literal schema)
else
code.Literal tableName
@@ -643,10 +594,7 @@ type FSharpDbContextGenerator
annotationCodeGenerator.RemoveAnnotationsHandledByConventions(index, indexAnnotations)
|> ignore
- let indexProps =
- index.Properties
- |> Seq.map (fun e -> e.Name)
- |> Seq.toArray
+ let indexProps = index.Properties |> Seq.map (fun e -> e.Name) |> Seq.toArray
lines.Add $".HasIndex({code.Literal(indexProps)}, {code.Literal(index.GetDatabaseName())}"
@@ -656,9 +604,7 @@ type FSharpDbContextGenerator
generateAnnotations index indexAnnotations lines
writeLines lines " |> ignore"
- let indexes =
- joinEntityType.GetIndexes()
- |> Seq.map generateManyToManyIndex
+ let indexes = joinEntityType.GetIndexes() |> Seq.map generateManyToManyIndex
let generateManyToManyProperties (property: IProperty) =
lines.Add $"j.IndexerProperty<{code.Reference(property.ClrType)}>({code.Literal(property.Name)})"
@@ -667,13 +613,13 @@ type FSharpDbContextGenerator
annotationCodeGenerator.FilterIgnoredAnnotations(property.GetAnnotations())
|> annotationsToDictionary
- propertyAnnotations.Remove RelationalAnnotationNames.ColumnOrder
- |> ignore
+ propertyAnnotations.Remove RelationalAnnotationNames.ColumnOrder |> ignore
- if property.IsNullable |> not
- && property.ClrType
- |> SharedTypeExtensions.isNullableType
- && property.IsPrimaryKey() |> not then
+ if
+ property.IsNullable |> not
+ && property.ClrType |> SharedTypeExtensions.isNullableType
+ && property.IsPrimaryKey() |> not
+ then
lines.Add ".IsRequired()"
let columnType = property.GetConfiguredColumnType()
@@ -681,8 +627,7 @@ type FSharpDbContextGenerator
if notNull columnType then
lines.Add $".HasColumnType({code.Literal(columnType)})"
- propertyAnnotations.Remove RelationalAnnotationNames.ColumnType
- |> ignore
+ propertyAnnotations.Remove RelationalAnnotationNames.ColumnType |> ignore
let maxLength = property.GetMaxLength()
@@ -692,18 +637,13 @@ type FSharpDbContextGenerator
let precision = property.GetPrecision()
let scale = property.GetScale()
- if precision.HasValue
- && scale.GetValueOrDefault() <> 0 then
+ if precision.HasValue && scale.GetValueOrDefault() <> 0 then
lines.Add $".HasPrecision({code.Literal(precision.Value)}, {code.Literal(scale.Value)})"
elif precision.HasValue then
lines.Add $".HasPrecision({code.Literal(precision.Value)})"
if property.IsUnicode().HasValue then
- let value =
- if property.IsUnicode().Value then
- ""
- else
- "false"
+ let value = if property.IsUnicode().Value then "" else "false"
lines.Add $".IsUnicode({value})"
@@ -713,26 +653,24 @@ type FSharpDbContextGenerator
if defaultValue = box DBNull.Value then
lines.Add ".HasDefaultValue()"
- propertyAnnotations.Remove RelationalAnnotationNames.DefaultValue
- |> ignore
+ propertyAnnotations.Remove RelationalAnnotationNames.DefaultValue |> ignore
elif notNull defaultValue then
lines.Add ".HasDefaultValue({code.UnknownLiteral(defaultValue)})"
- propertyAnnotations.Remove RelationalAnnotationNames.DefaultValue
- |> ignore
+ propertyAnnotations.Remove RelationalAnnotationNames.DefaultValue |> ignore
let valueGenerated = property.ValueGenerated
let mutable isRowVersion = false
let valueGeneratedConfigurationSource =
- ((property :?> IConventionProperty)
- .GetValueGeneratedConfigurationSource())
-
- if valueGeneratedConfigurationSource.HasValue
- && valueGeneratedConfigurationSource.Value
- <> ConfigurationSource.Convention
- && ValueGenerationConvention.GetValueGenerated(property)
- <> Nullable(valueGenerated) then
+ ((property :?> IConventionProperty).GetValueGeneratedConfigurationSource())
+
+ if
+ valueGeneratedConfigurationSource.HasValue
+ && valueGeneratedConfigurationSource.Value <> ConfigurationSource.Convention
+ && ValueGenerationConvention.GetValueGenerated(property)
+ <> Nullable(valueGenerated)
+ then
let methodName =
match valueGenerated with
| ValueGenerated.OnAdd -> "ValueGeneratedOnAdd"
@@ -768,8 +706,7 @@ type FSharpDbContextGenerator
None
let properties =
- joinEntityType.GetProperties()
- |> Seq.map generateManyToManyProperties
+ joinEntityType.GetProperties() |> Seq.map generateManyToManyProperties
stringBuilder {
fst
@@ -821,8 +758,7 @@ type FSharpDbContextGenerator
let generateEntityType (entityType: IEntityType) (useDataAnnotations: bool) =
- let key =
- generateKey (entityType.FindPrimaryKey()) entityType useDataAnnotations
+ let key = generateKey (entityType.FindPrimaryKey()) entityType useDataAnnotations
let annotations =
annotationCodeGenerator.FilterIgnoredAnnotations(entityType.GetAnnotations())
@@ -844,10 +780,7 @@ type FSharpDbContextGenerator
|> ignore
let tableName =
- if
- not useDataAnnotations
- || notNull (entityType.GetViewName())
- then
+ if not useDataAnnotations || notNull (entityType.GetViewName()) then
generateTableName entityType
else
None
@@ -873,17 +806,15 @@ type FSharpDbContextGenerator
generateRelationship fk useDataAnnotations
entityType.GetSkipNavigations()
- |> Seq.map
- (fun skip ->
- let containingKey =
- skip.JoinEntityType.FindPrimaryKey().Properties.[0]
- .GetContainingForeignKeys()
- |> Seq.head
-
- if containingKey.PrincipalEntityType = entityType then
- generateManyToMany skip |> Some
- else
- None)
+ |> Seq.map (fun skip ->
+ let containingKey =
+ skip.JoinEntityType.FindPrimaryKey().Properties.[0].GetContainingForeignKeys()
+ |> Seq.head
+
+ if containingKey.PrincipalEntityType = entityType then
+ generateManyToMany skip |> Some
+ else
+ None)
}
@@ -901,7 +832,6 @@ type FSharpDbContextGenerator
CoreAnnotationNames.ProductVersion
RelationalAnnotationNames.MaxIdentifierLength
ScaffoldingAnnotationNames.DatabaseName
- ScaffoldingAnnotationNames.EntityTypeErrors
}
|> Seq.iter (annotations.Remove >> ignore)
@@ -909,8 +839,7 @@ type FSharpDbContextGenerator
generateAnnotations model annotations lines
let typesToGenerate =
- model.GetEntityTypes()
- |> Seq.filter (isManyToManyJoinEntityType >> not)
+ model.GetEntityTypes() |> Seq.filter (isManyToManyJoinEntityType >> not)
let writeEntityType (e: IEntityType) =
@@ -936,12 +865,11 @@ type FSharpDbContextGenerator
let lines' = lines |> Seq.tail
lines'
- |> Seq.mapi
- (fun i line ->
- if i = ((lines' |> Seq.length) - 1) then
- line + " |> ignore"
- else
- line)
+ |> Seq.mapi (fun i line ->
+ if i = ((lines' |> Seq.length) - 1) then
+ line + " |> ignore"
+ else
+ line)
""
}
@@ -961,8 +889,7 @@ type FSharpDbContextGenerator
let generateClass (model: IModel) contextName connectionString useDataAnnotations suppressOnConfiguring =
let typesToGenerate =
- model.GetEntityTypes()
- |> Seq.filter (isManyToManyJoinEntityType >> not)
+ model.GetEntityTypes() |> Seq.filter (isManyToManyJoinEntityType >> not)
stringBuilder {
$"type %s{contextName} ="
@@ -987,10 +914,6 @@ type FSharpDbContextGenerator
""
- for e in model.GetEntityTypeErrors() do
- $"// {e.Value} Please see the warning messages."
- ""
-
generateOnConfiguring connectionString suppressOnConfiguring
generateOnModelCreating model useDataAnnotations
@@ -998,71 +921,65 @@ type FSharpDbContextGenerator
}
- interface ICSharpDbContextGenerator with
- member this.WriteCode
- (
- model,
- contextName,
- connectionString,
- contextNamespace,
- modelNamespace,
- useDataAnnotations,
- useNullableReferenceTypes,
- suppressConnectionStringWarning,
- suppressOnConfiguring
- ) =
+ member this.WriteCode
+ (
+ model,
+ contextName,
+ connectionString,
+ contextNamespace,
+ modelNamespace,
+ useDataAnnotations,
+ useNullableReferenceTypes,
+ suppressConnectionStringWarning,
+ suppressOnConfiguring
+ ) =
- namespaces.Clear()
+ namespaces.Clear()
- namespaces.Add "System" |> ignore
+ namespaces.Add "System" |> ignore
- namespaces.Add "System.Collections.Generic"
- |> ignore
+ namespaces.Add "System.Collections.Generic" |> ignore
- namespaces.Add "Microsoft.EntityFrameworkCore"
- |> ignore
+ namespaces.Add "Microsoft.EntityFrameworkCore" |> ignore
- namespaces.Add "Microsoft.EntityFrameworkCore.Metadata"
- |> ignore
+ namespaces.Add "Microsoft.EntityFrameworkCore.Metadata" |> ignore
- namespaces.Add "EntityFrameworkCore.FSharp.Extensions"
- |> ignore
+ namespaces.Add "EntityFrameworkCore.FSharp.Extensions" |> ignore
- let finalContextNamespace =
- if isNull contextNamespace then
- modelNamespace
- else
- contextNamespace
-
- let finalCode =
- generateClass model contextName connectionString useDataAnnotations suppressOnConfiguring
-
- let mutable finalNamespaces =
- namespaces
- |> Seq.sortBy
- (fun n ->
- (match n with
- | "System" -> 1
- | x when x.StartsWith("System", StringComparison.Ordinal) -> 2
- | x when x.StartsWith("Microsoft", StringComparison.Ordinal) -> 3
- | x when x.StartsWith("EntityFrameworkCore.FSharp", StringComparison.Ordinal) -> 4
- | _ -> 5),
-
- n)
-
- if
- finalContextNamespace <> modelNamespace
- && not (String.IsNullOrEmpty modelNamespace)
- then
- finalNamespaces <- finalNamespaces |> Seq.append [ modelNamespace ]
+ let finalContextNamespace =
+ if isNull contextNamespace then
+ modelNamespace
+ else
+ contextNamespace
- stringBuilder {
- $"namespace {finalContextNamespace}"
- ""
+ let finalCode =
+ generateClass model contextName connectionString useDataAnnotations suppressOnConfiguring
- for ns in finalNamespaces do
- $"open {ns}"
+ let mutable finalNamespaces =
+ namespaces
+ |> Seq.sortBy (fun n ->
+ (match n with
+ | "System" -> 1
+ | x when x.StartsWith("System", StringComparison.Ordinal) -> 2
+ | x when x.StartsWith("Microsoft", StringComparison.Ordinal) -> 3
+ | x when x.StartsWith("EntityFrameworkCore.FSharp", StringComparison.Ordinal) -> 4
+ | _ -> 5),
- ""
- finalCode
- }
+ n)
+
+ if
+ finalContextNamespace <> modelNamespace
+ && not (String.IsNullOrEmpty modelNamespace)
+ then
+ finalNamespaces <- finalNamespaces |> Seq.append [ modelNamespace ]
+
+ stringBuilder {
+ $"namespace {finalContextNamespace}"
+ ""
+
+ for ns in finalNamespaces do
+ $"open {ns}"
+
+ ""
+ finalCode
+ }
diff --git a/src/EFCore.FSharp/Scaffolding/FSharpEntityTypeGenerator.fs b/src/EFCore.FSharp/Scaffolding/FSharpEntityTypeGenerator.fs
index 80b41ba..f5c85f6 100644
--- a/src/EFCore.FSharp/Scaffolding/FSharpEntityTypeGenerator.fs
+++ b/src/EFCore.FSharp/Scaffolding/FSharpEntityTypeGenerator.fs
@@ -31,18 +31,14 @@ type internal AttributeWriter(name: string) =
sprintf "[<%s(%s)>]" name (String.Join(", ", parameters))
type FSharpEntityTypeGenerator
- (
- annotationCodeGenerator: IAnnotationCodeGenerator,
- code: ICSharpHelper,
- config: ScaffoldOptions
- ) =
+ (annotationCodeGenerator: IAnnotationCodeGenerator, code: ICSharpHelper, config: ScaffoldOptions) =
let createAttributeQuick = AttributeWriter >> string
let primitiveTypeNames =
seq {
yield (typedefof, "bool")
yield (typedefof, "byte")
- yield (typedefof, "byte[]")
+ yield (typedefof, "byte[]")
yield (typedefof, "sbyte")
yield (typedefof, "int")
yield (typedefof, "char")
@@ -66,8 +62,7 @@ type FSharpEntityTypeGenerator
let rec getTypeName scaffoldNullableColumnsAs (t: Type) =
if t.IsArray then
- (getTypeName scaffoldNullableColumnsAs (t.GetElementType()))
- + "[]"
+ (getTypeName scaffoldNullableColumnsAs (t.GetElementType())) + "[]"
else if t.GetTypeInfo().IsGenericType then
if t.GetGenericTypeDefinition() = typedefof> then
@@ -89,10 +84,7 @@ type FSharpEntityTypeGenerator
|> Seq.map (fun t' -> getTypeName scaffoldNullableColumnsAs t')
)
- genericTypeDefName
- + "<"
- + genericTypeArguments
- + ">"
+ genericTypeDefName + "<" + genericTypeArguments + ">"
else
match primitiveTypeNames.TryGetValue t with
@@ -109,11 +101,12 @@ type FSharpEntityTypeGenerator
&& (typeInfo.GetGenericTypeDefinition() = typedefof>
|| typeInfo.GetGenericTypeDefinition() = typedefof