From 03ac96aac3b8a3cfc28830b317f72a33e74e6949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Purkh=C3=BAs?= Date: Sat, 23 Sep 2023 15:37:08 +0000 Subject: [PATCH] Fix overriden framework dependencies (#386) * Fix overriden framework dependencies ## What? * Fixes overriding of dependencies that are part of the target framework * Replaces `private_deps` with `targeting_packs` to make it more clear where to put the targeting packs --- .bazelci/presubmit.yml | 33 +++ docs/csharp_binary.md | 6 +- docs/csharp_library.md | 6 +- docs/csharp_test.md | 6 +- docs/fsharp_binary.md | 6 +- docs/fsharp_library.md | 6 +- docs/fsharp_test.md | 6 +- dotnet/paket2bazel_dependencies.bzl | 194 +++++++++--------- dotnet/private/BUILD.bazel | 7 + dotnet/private/common.bzl | 121 ++++++----- dotnet/private/providers.bzl | 1 + dotnet/private/rules/common/attrs.bzl | 16 +- .../rules/csharp/actions/csharp_assembly.bzl | 33 +-- dotnet/private/rules/csharp/binary.bzl | 2 +- dotnet/private/rules/csharp/library.bzl | 2 +- dotnet/private/rules/csharp/test.bzl | 2 +- .../rules/fsharp/actions/fsharp_assembly.bzl | 28 +-- dotnet/private/rules/fsharp/binary.bzl | 2 +- dotnet/private/rules/fsharp/library.bzl | 2 +- dotnet/private/rules/fsharp/test.bzl | 2 +- dotnet/private/rules/nuget/imports.bzl | 9 +- dotnet/private/rules/nuget/nuget_repo.bzl | 7 + dotnet/private/rules/nuget/template.BUILD | 1 + dotnet/private/semver.bzl | 82 ++++++++ .../private/tests/csharp_nullable/BUILD.bazel | 8 +- .../private/tests/csharp_unsafe/BUILD.bazel | 8 +- .../BUILD.bazel | 21 ++ .../conflicting_targeting_pack_deps/Test.cs | 17 ++ .../conflicting_targeting_pack_deps.csproj | 19 ++ .../a_with_direct_d/BUILD.bazel | 4 +- .../a_with_only_transitive_d/BUILD.bazel | 4 +- .../diamond_dependencies/ab/BUILD.bazel | 4 +- .../diamond_dependencies/ac/BUILD.bazel | 4 +- .../diamond_dependencies/d/BUILD.bazel | 10 +- .../netcore/BUILD.bazel | 4 +- .../netstandardlib/BUILD.bazel | 4 +- dotnet/private/tests/exports/BUILD.bazel | 6 +- .../tests/native_dependencies/BUILD.bazel | 2 +- dotnet/private/tests/out/csharp/BUILD.bazel | 8 +- dotnet/private/tests/out/fsharp/BUILD.bazel | 8 +- .../tests/publish/app_to_publish/BUILD.bazel | 4 +- .../publish/framework_dependent/BUILD.bazel | 4 +- dotnet/private/tests/runfiles/BUILD.bazel | 4 +- dotnet/private/tests/semver/BUILD.bazel | 3 + dotnet/private/tests/semver/semver_test.bzl | 86 ++++++++ .../tests/use_as_tool/csharp/BUILD.bazel | 12 +- .../tests/use_as_tool/fsharp/BUILD.bazel | 8 +- .../warning_settings/csharp_warnings.bzl | 10 +- .../warning_settings/fsharp_warnings.bzl | 10 +- .../private/tests/xml_docs/csharp/BUILD.bazel | 4 +- .../private/tests/xml_docs/fsharp/BUILD.bazel | 4 +- .../private/tools/apphost_shimmer/BUILD.bazel | 2 +- dotnet/rules_dotnet_dev_nuget_packages.bzl | 34 +-- dotnet/rules_dotnet_nuget_packages.bzl | 58 +++--- examples/aspnetcore/BUILD.bazel | 6 +- examples/basic_csharp/BUILD.bazel | 12 +- examples/basic_fsharp/BUILD.bazel | 12 +- examples/diamond/BUILD.bazel | 40 ---- examples/diamond/Bottom.cs | 0 examples/diamond/Left.cs | 0 examples/diamond/Right.cs | 0 examples/diamond/Top.cs | 0 examples/example_deps.bzl | 28 +-- examples/expecto/BUILD.bazel | 4 +- examples/fsharp_type_provider/BUILD.bazel | 4 +- .../type_provider_lib/BUILD.bazel | 4 +- examples/netstandard2.0/BUILD.bazel | 8 +- examples/paket.lock | 2 +- examples/paket/BUILD.bazel | 12 +- examples/paket/deps/paket.bzl | 44 ++-- .../publish_framework_dependent/BUILD.bazel | 4 +- examples/publish_self_contained/BUILD.bazel | 4 +- examples/runfiles_csharp/BUILD.bazel | 4 +- examples/runfiles_fsharp/BUILD.bazel | 4 +- paket.dependencies | 1 + paket.lock | 22 +- .../src/Afas.BazelDotnet.Nuget/BUILD.bazel | 4 +- .../src/Afas.BazelDotnet.Project/BUILD.bazel | 4 +- tools/nuget/src/Afas.BazelDotnet/BUILD.bazel | 4 +- tools/paket2bazel/BUILD.bazel | 4 +- tools/paket2bazel/Gen.fs | 6 +- tools/paket2bazel/Models.fs | 3 +- tools/paket2bazel/Paket.fs | 25 ++- tools/runfiles/BUILD.bazel | 4 +- tools/runfiles/tests/BUILD.bazel | 4 +- 85 files changed, 758 insertions(+), 469 deletions(-) create mode 100644 dotnet/private/semver.bzl create mode 100644 dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/BUILD.bazel create mode 100644 dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/Test.cs create mode 100644 dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/conflicting_targeting_pack_deps.csproj create mode 100644 dotnet/private/tests/semver/BUILD.bazel create mode 100644 dotnet/private/tests/semver/semver_test.bzl delete mode 100644 examples/diamond/BUILD.bazel delete mode 100644 examples/diamond/Bottom.cs delete mode 100644 examples/diamond/Left.cs delete mode 100644 examples/diamond/Right.cs delete mode 100644 examples/diamond/Top.cs diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 1ce7ce87..425bd8f5 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -39,6 +39,22 @@ tasks: - "--config=remote" test_flags: - "--config=remote" + rbe_ubuntu1604_no_strict_deps: + name: Rules on Linux (RBE) without strict deps + platform: rbe_ubuntu1604 + include_json_profile: + - build + - test + build_targets: + - "//..." + test_targets: + - "//..." + build_flags: + - "--@rules_dotnet//dotnet/settings:strict_deps=false" + - "--config=remote" + test_flags: + - "--@rules_dotnet//dotnet/settings:strict_deps=false" + - "--config=remote" macos: name: Rules on MacOS platform: macos @@ -97,3 +113,20 @@ tasks: - "--config=remote" test_flags: - "--config=remote" + examples-rbe_ubuntu1604_no_strict_deps: + name: Examples on Ubuntu 18.04 (RBE) without strict deps + platform: rbe_ubuntu1604 + include_json_profile: + - build + - test + working_directory: examples + build_targets: + - "//..." + test_targets: + - "//..." + build_flags: + - "--config=remote" + - "--@rules_dotnet//dotnet/settings:strict_deps=false" + test_flags: + - "--config=remote" + - "--@rules_dotnet//dotnet/settings:strict_deps=false" diff --git a/docs/csharp_binary.md b/docs/csharp_binary.md index 65b5652f..2aec0c6a 100644 --- a/docs/csharp_binary.md +++ b/docs/csharp_binary.md @@ -13,8 +13,8 @@ csharp_binary(name, defines, deps, generate_documentation_file, include_host_model_dll, internals_visible_to, keyfile, langversion, nullable, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, - override_warnings_not_as_errors, private_deps, project_sdk, resources, - runtime_identifier, srcs, strict_deps, target_frameworks, treat_warnings_as_errors, + override_warnings_not_as_errors, project_sdk, resources, runtime_identifier, srcs, + strict_deps, target_frameworks, targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors, winexe) @@ -45,13 +45,13 @@ Compile a C# exe | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/docs/csharp_library.md b/docs/csharp_library.md index 7542b229..0286fb2b 100644 --- a/docs/csharp_library.md +++ b/docs/csharp_library.md @@ -13,8 +13,8 @@ csharp_library(name, exports, generate_documentation_file, internals_visible_to, keyfile, langversion, nullable, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, override_warnings_not_as_errors, - private_deps, project_sdk, resources, runtime_identifier, srcs, strict_deps, - target_frameworks, treat_warnings_as_errors, warning_level, warnings_as_errors, + project_sdk, resources, runtime_identifier, srcs, strict_deps, target_frameworks, + targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors) @@ -44,13 +44,13 @@ Compile a C# DLL | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/docs/csharp_test.md b/docs/csharp_test.md index b26050d5..4111550f 100644 --- a/docs/csharp_test.md +++ b/docs/csharp_test.md @@ -16,8 +16,8 @@ csharp_test(name, defines, deps, generate_documentation_file, internals_visible_to, keyfile, langversion, nullable, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, override_warnings_not_as_errors, - private_deps, project_sdk, resources, runtime_identifier, srcs, strict_deps, - target_frameworks, treat_warnings_as_errors, warning_level, warnings_as_errors, + project_sdk, resources, runtime_identifier, srcs, strict_deps, target_frameworks, + targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors, winexe) @@ -47,13 +47,13 @@ Compiles a C# executable and runs it as a test | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/docs/fsharp_binary.md b/docs/fsharp_binary.md index fca52467..cfe610e5 100644 --- a/docs/fsharp_binary.md +++ b/docs/fsharp_binary.md @@ -12,8 +12,8 @@ Rule for compiling F# binaries. fsharp_binary(name, apphost_shimmer, compile_data, data, defines, deps, generate_documentation_file, internals_visible_to, keyfile, langversion, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, - override_warnings_not_as_errors, private_deps, project_sdk, resources, - runtime_identifier, srcs, strict_deps, target_frameworks, treat_warnings_as_errors, + override_warnings_not_as_errors, project_sdk, resources, runtime_identifier, srcs, + strict_deps, target_frameworks, targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors, winexe) @@ -40,13 +40,13 @@ Compile a F# exe | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/docs/fsharp_library.md b/docs/fsharp_library.md index 8381b595..d70043f5 100644 --- a/docs/fsharp_library.md +++ b/docs/fsharp_library.md @@ -12,8 +12,8 @@ Rule for compiling F# libraries. fsharp_library(name, compile_data, data, defines, deps, exports, generate_documentation_file, internals_visible_to, keyfile, langversion, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, - override_warnings_not_as_errors, private_deps, project_sdk, resources, - runtime_identifier, srcs, strict_deps, target_frameworks, treat_warnings_as_errors, + override_warnings_not_as_errors, project_sdk, resources, runtime_identifier, srcs, + strict_deps, target_frameworks, targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors) @@ -40,13 +40,13 @@ Compile a F# DLL | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/docs/fsharp_test.md b/docs/fsharp_test.md index 91a86b20..868583bd 100644 --- a/docs/fsharp_test.md +++ b/docs/fsharp_test.md @@ -15,8 +15,8 @@ a Bazel test. fsharp_test(name, apphost_shimmer, compile_data, data, defines, deps, generate_documentation_file, internals_visible_to, keyfile, langversion, out, override_strict_deps, override_treat_warnings_as_errors, override_warning_level, override_warnings_as_errors, - override_warnings_not_as_errors, private_deps, project_sdk, resources, runtime_identifier, - srcs, strict_deps, target_frameworks, treat_warnings_as_errors, warning_level, + override_warnings_not_as_errors, project_sdk, resources, runtime_identifier, srcs, + strict_deps, target_frameworks, targeting_packs, treat_warnings_as_errors, warning_level, warnings_as_errors, warnings_not_as_errors, winexe) @@ -43,13 +43,13 @@ Compile a F# executable and runs it as a test | override_warning_level | Whether or not to override the warning_level attribute. | Boolean | optional | False | | override_warnings_as_errors | Whether or not to override the warnings_as_errors attribute. | Boolean | optional | False | | override_warnings_not_as_errors | Whether or not to override the warnings_not_as_errors attribute. | Boolean | optional | False | -| private_deps | Private dependencies

This attribute should be used for dependencies are only private to the target. The dependencies will not be propagated transitively to parent targets and do not become part of the targets runfiles. | List of labels | optional | [] | | project_sdk | The project SDK that is being targeted. See https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview | String | optional | "default" | | resources | A list of files to embed in the DLL as resources. | List of labels | optional | [] | | runtime_identifier | The runtime identifier that is being targeted. See https://docs.microsoft.com/en-us/dotnet/core/rid-catalog | String | required | | | srcs | The source files used in the compilation. | List of labels | optional | [] | | strict_deps | Whether to use strict dependencies or not.

This attribute mirrors the DisableTransitiveProjectReferences in MSBuild. The default setting of this attribute can be overridden in the toolchain configuration | Boolean | optional | True | | target_frameworks | A list of target framework monikers to buildSee https://docs.microsoft.com/en-us/dotnet/standard/frameworks | List of strings | required | | +| targeting_packs | Private dependencies

The targeting packs that should be used to build the target. You should use a targeting pack that targets the same framework as the target. There can be multiple runtime packs for a given target e.g. when a AspNetCore application is built you need the base runtime pack and the AspNetCore runtime pack. Example runtime packs: https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 | List of labels | optional | [] | | treat_warnings_as_errors | Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors. | Boolean | optional | False | | warning_level | The warning level that should be used by the compiler. | Integer | optional | 3 | | warnings_as_errors | List of compiler warning codes that should be considered as errors. Note that this attribute can not be used in conjunction with treat_warning_as_errors. | List of strings | optional | [] | diff --git a/dotnet/paket2bazel_dependencies.bzl b/dotnet/paket2bazel_dependencies.bzl index 53ac5dd9..fb079af3 100644 --- a/dotnet/paket2bazel_dependencies.bzl +++ b/dotnet/paket2bazel_dependencies.bzl @@ -7,102 +7,102 @@ def paket2bazel_dependencies(): nuget_repo( name = "paket2bazel_dependencies", packages = [ - {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": []}, - {"id": "Chessie", "version": "0.6.0", "sha512": "sha512-VUcf1SFTXQDf1ULVQ/IddKISCuVICj9OC+wW1LFSIDqpHfihP2M2CvLetBxsCvcplu8ugI4mo9ZV5gmdefHxPg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["FSharp.Core"], "net20": ["FSharp.Core"], "net30": ["FSharp.Core"], "net35": ["FSharp.Core"], "net40": ["FSharp.Core"], "net403": ["FSharp.Core"], "net45": ["FSharp.Core"], "net451": ["FSharp.Core"], "net452": ["FSharp.Core"], "net46": ["FSharp.Core"], "net461": ["NETStandard.Library", "FSharp.Core"], "net462": ["NETStandard.Library", "FSharp.Core"], "net47": ["NETStandard.Library", "FSharp.Core"], "net471": ["NETStandard.Library", "FSharp.Core"], "net472": ["NETStandard.Library", "FSharp.Core"], "net48": ["NETStandard.Library", "FSharp.Core"], "net5.0": ["NETStandard.Library", "FSharp.Core"], "net6.0": ["NETStandard.Library", "FSharp.Core"], "net7.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp1.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp1.1": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.1": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.2": ["NETStandard.Library", "FSharp.Core"], "netcoreapp3.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp3.1": ["NETStandard.Library", "FSharp.Core"], "netstandard": ["FSharp.Core"], "netstandard1.0": ["FSharp.Core"], "netstandard1.1": ["FSharp.Core"], "netstandard1.2": ["FSharp.Core"], "netstandard1.3": ["FSharp.Core"], "netstandard1.4": ["FSharp.Core"], "netstandard1.5": ["FSharp.Core"], "netstandard1.6": ["NETStandard.Library", "FSharp.Core"], "netstandard2.0": ["NETStandard.Library", "FSharp.Core"], "netstandard2.1": ["NETStandard.Library", "FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "FSharp.Control.AsyncSeq", "version": "3.2.1", "sha512": "sha512-oV4Xx1MMOqpnZAon10bhN/JSUjwuc/H4hXq2SM7IWimfghk5yK85alZiqVH4momfGBKpr/RsBVfgCrqbmkaxJg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net462": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net47": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net471": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net472": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net48": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net5.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net6.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net7.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp2.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp2.2": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp3.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp3.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netstandard2.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"]}, "targeting_pack_overrides": []}, - {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "FSharp.SystemTextJson", "version": "0.16.6", "sha512": "sha512-7SoZOjo4dY6Ez47RSL5pWVAGiy8SPCzpjD4oBoGEkMNsnrRcy1WhD8jB2XyRufrboyBxKbGp7ZKMAQlDIc1Crg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Text.Json"], "net462": ["FSharp.Core", "System.Text.Json"], "net47": ["FSharp.Core", "System.Text.Json"], "net471": ["FSharp.Core", "System.Text.Json"], "net472": ["FSharp.Core", "System.Text.Json"], "net48": ["FSharp.Core", "System.Text.Json"], "net5.0": ["FSharp.Core", "System.Text.Json"], "net6.0": ["FSharp.Core", "System.Text.Json"], "net7.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp2.1": ["FSharp.Core", "System.Text.Json"], "netcoreapp2.2": ["FSharp.Core", "System.Text.Json"], "netcoreapp3.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp3.1": ["FSharp.Core", "System.Text.Json"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Text.Json"], "netstandard2.1": ["FSharp.Core", "System.Text.Json"]}, "targeting_pack_overrides": []}, - {"id": "FSharpx.Async", "version": "1.14.1", "sha512": "sha512-8Ye/hgNHsnHWFtanfED+tgJJzPq4QEt+LUQ87Ie2JOiqb6WUP+vtF3WRBO2NIDqGQpivh207nwmCoFdK+T6jwQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net46": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net461": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net462": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net47": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net471": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net472": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net48": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net5.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net6.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net7.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp2.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp2.2": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp3.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp3.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netstandard2.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "FSharpx.Collections", "version": "2.1.3", "sha512": "sha512-1KSJLhLpqOTPRKYkgi0YvPrvGybiYi642r53VrQb1U7LNd3VQNsh3z++v69ky8FEj4y+kP6NPbgZbFyJ8mumqA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["FSharp.Core"], "net451": ["FSharp.Core"], "net452": ["FSharp.Core"], "net46": ["FSharp.Core"], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "FSharpx.Extras", "version": "3.0.0", "sha512": "sha512-7Wv7LF8hZfGG6KuXcQoGTnm6keDAtMwvI6S2lK90Z23Dvs44XGeRAGOsLRO3dg2k6atckdt6xd0SDqQ9FSa4vA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net46": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net461": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net462": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net47": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net471": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net472": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net48": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net5.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net6.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net7.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp2.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp2.2": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp3.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp3.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netstandard2.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"]}, "targeting_pack_overrides": []}, - {"id": "Microsoft.Bcl.AsyncInterfaces", "version": "6.0.0", "sha512": "sha512-IhoFoMkQ96h7Yg2PODHtOStOuV0RK+4nTTXycAmtKiZEXenXzSNf5vtKA/JVCHS9o7493dlu2vnAhSqcI9ewmQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.CSharp", "version": "4.7.0", "sha512": "sha512-LJaYhRX5VxTUuD9WUPGD3GpWTgs89SVfoOPvSEdt66tL3lQvny9sR/ZiC3px1qUV5EFebS44i2CBeiliHVaQ3w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["NETStandard.Library"], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.NETCore.Platforms", "version": "6.0.5", "sha512": "sha512-GTMT/dgCRBCRUj11ssZ8K1FJm6Md+C/tSJl8I7YjxOFwSvopaIneV32y1VlnBTI4wy1SwueI7ou2sVfHkWENrA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.Targets", "version": "5.0.0", "sha512": "sha512-hYHm3JAjQO/nySxcl1EpZhYEW+2P3H1eLZNr+QxgO5TnLS6hqtfi5WchjQzjid45MYmhy2X7IOmcWtDP4fpMGw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.Web.Xdt", "version": "3.1.0", "sha512": "sha512-3VApgkdgOglJWtrXSgYzz6o8Cp6IpvmFQMeICyQvvbKoy+OjNwco5ovzBBL1HHj7kEgLfe2ruXW/ZQ1k+2YxYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Mono.Cecil", "version": "0.11.4", "sha512": "sha512-CnjwUMmFHnScNG8e/4DRZQQX67H5ajekRDudmZ6Fy1jCLhyH1jjzbQCOEFhBLa2NjPWQpMF+RHdBJY8a7GgmlA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms", "System.Globalization.Calendars", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Net.Http", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Linq", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": []}, - {"id": "Newtonsoft.Json", "version": "13.0.1", "sha512": "sha512-g3MbZi6vBTeaI/hEbvR7vBETSd1DWLe9i1E4P+nPY34v5i94zqUqDXvdWC3G+7tYN9SnsdU9zzegrnRz4h7nsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["Microsoft.CSharp", "NETStandard.Library"], "netcoreapp1.1": ["Microsoft.CSharp", "NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.1": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.2": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.3": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.4": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.5": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.6": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.Commands", "version": "6.3.0", "sha512": "sha512-Sku4aLa2P6fu/yU23cCaXtG33lBC5yZ4CskiCECnKMKhoiONQx/9ts66B7doJjwctb37w3FJAo9yE7gwzfUOZA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Credentials", "NuGet.ProjectModel"], "net462": ["NuGet.Credentials", "NuGet.ProjectModel"], "net47": ["NuGet.Credentials", "NuGet.ProjectModel"], "net471": ["NuGet.Credentials", "NuGet.ProjectModel"], "net472": ["NuGet.Credentials", "NuGet.ProjectModel"], "net48": ["NuGet.Credentials", "NuGet.ProjectModel"], "net5.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net6.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net7.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.2": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard2.1": ["NuGet.Credentials", "NuGet.ProjectModel"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Common", "version": "6.3.0", "sha512": "sha512-qIXPWAhirtrK3QU/ZWBd0NYLdPfZL5XAWZepacZDUKuOJ8a+2hlcVP7ohvN6RzYk4LcBN3HgguFhoKdZLM4brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Frameworks"], "net462": ["NuGet.Frameworks"], "net47": ["NuGet.Frameworks"], "net471": ["NuGet.Frameworks"], "net472": ["NuGet.Frameworks"], "net48": ["NuGet.Frameworks"], "net5.0": ["NuGet.Frameworks"], "net6.0": ["NuGet.Frameworks"], "net7.0": ["NuGet.Frameworks"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Frameworks"], "netcoreapp2.1": ["NuGet.Frameworks"], "netcoreapp2.2": ["NuGet.Frameworks"], "netcoreapp3.0": ["NuGet.Frameworks"], "netcoreapp3.1": ["NuGet.Frameworks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Frameworks"], "netstandard2.1": ["NuGet.Frameworks"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Configuration", "version": "6.3.0", "sha512": "sha512-mFn4cXvExSjgUooFPEqq5Gtsp8a7ANdu5LjDzysdJkziDkWkUa6x07xjZCzINQZoe9Y/OtOuQRMaAE1UA8dyPw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net462": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net47": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net471": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net472": ["NuGet.Common"], "net48": ["NuGet.Common"], "net5.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net6.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net7.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Credentials", "version": "6.3.0", "sha512": "sha512-5xA2dW8YdEBLYtu+SkZ6QyxrZt6vxmPTW521nSq9BE8DgNS2BpwPwo1sFcYbM+devU9bSYCIPIg8CpSQHF2YVA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.DependencyResolver.Core", "version": "6.3.0", "sha512": "sha512-7sgzHc9ZPa39YlVBfyFqGyNEflQOH9AmDo2M3vzrGtkoDgMIlmTeRZm/3P6R4rjoo1DFNUcTRAepDesaXRf9tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net462": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net47": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net471": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net472": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net48": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net5.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net6.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net7.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netstandard2.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Frameworks", "version": "6.3.0", "sha512": "sha512-1qR5DUYtyBi1Vfl70p3Rv+TVLp0InZkwSQuedRAklLzDbsDiCX9IDFOZaBuoFYEVp8z3+/tABujlzJwoSh28Hg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.LibraryModel", "version": "6.3.0", "sha512": "sha512-OPXNh1kxH+a/KSQ3y7QZiZS9/hQSTvmATfzW58LHCGSnBt9uXFz175omQFTfzRT2zhmxD3G8llp1eh9lRAgIUQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "NuGet.Versioning"], "net462": ["NuGet.Common", "NuGet.Versioning"], "net47": ["NuGet.Common", "NuGet.Versioning"], "net471": ["NuGet.Common", "NuGet.Versioning"], "net472": ["NuGet.Common", "NuGet.Versioning"], "net48": ["NuGet.Common", "NuGet.Versioning"], "net5.0": ["NuGet.Common", "NuGet.Versioning"], "net6.0": ["NuGet.Common", "NuGet.Versioning"], "net7.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.1": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.2": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.1": ["NuGet.Common", "NuGet.Versioning"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "NuGet.Versioning"], "netstandard2.1": ["NuGet.Common", "NuGet.Versioning"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.PackageManagement", "version": "6.2.0", "sha512": "sha512-pHKYJIu77c9RHdV1t8FvrzipVgQgBxDnGZB+/IsSfnH7h6ZGdkRg74MDTgh3uJbIoU4ggC3RLbaDGxsPz6qWIQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net462": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net47": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net471": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net472": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt"], "net48": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt"], "net5.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net6.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net7.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.2": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"]}, "targeting_pack_overrides": []}, - {"id": "Nuget.Packaging", "version": "6.3.0", "sha512": "sha512-qTv1nY3kH0DOly5kNaVFPTW8kta63YMqw3Xp3JBK5nt+EZW/iZvN1NcQ+YEHuW+2ktn6I6lQ/9MNv8I9Tv4DtA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net462": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net47": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net471": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net472": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net48": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net5.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net6.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net7.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.ProjectModel", "version": "6.3.0", "sha512": "sha512-8nHo2PxZ4uIW9V2u+h/A/rJJHBuWv+QCImIoKLwCKT8YKGBHKW+MpFlP5NV59JficVFITJtjeCFgWQjEUoPcFA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.DependencyResolver.Core"], "net462": ["NuGet.DependencyResolver.Core"], "net47": ["NuGet.DependencyResolver.Core"], "net471": ["NuGet.DependencyResolver.Core"], "net472": ["NuGet.DependencyResolver.Core"], "net48": ["NuGet.DependencyResolver.Core"], "net5.0": ["NuGet.DependencyResolver.Core"], "net6.0": ["NuGet.DependencyResolver.Core"], "net7.0": ["NuGet.DependencyResolver.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.DependencyResolver.Core"], "netcoreapp2.1": ["NuGet.DependencyResolver.Core"], "netcoreapp2.2": ["NuGet.DependencyResolver.Core"], "netcoreapp3.0": ["NuGet.DependencyResolver.Core"], "netcoreapp3.1": ["NuGet.DependencyResolver.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.DependencyResolver.Core"], "netstandard2.1": ["NuGet.DependencyResolver.Core"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Protocol", "version": "6.3.0", "sha512": "sha512-6nLnh/bPnf4KGwtWeait6J8wgON+hNUtfAU7f3cDKECHqUdzNsxz78iHu/ia2wgBx3Uq9xj0Ne/mNRIKII16GQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.Resolver", "version": "6.3.0", "sha512": "sha512-hdmaUD7+q7qfBY8NiK9OYBpmUlO6LhktKGDCpB7SerE3YYZC1jq09bUQfYjBya0MVGN6UvmpVnQRlc7MHX5WMg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Versioning", "version": "6.3.0", "sha512": "sha512-66/JrnvBv9W/MW2M6OhHF8oJhhEPxQVPBYh/B7WsYn6z/qaM+FwGjiX3yiIJPoo/wSZ0bbkMsITbdcuemN4WBA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Paket.Core", "version": "7.1.5", "sha512": "sha512-XT8Jdh8NOJU6CZDuGXaL4mirvwLscK5MarhCBJlT9RAtTq79qQuSc9dklEkfGMkyif/s36oMQtaQIZ914vzJHg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net462": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net47": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net471": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net472": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net48": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net5.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net6.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net7.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": []}, - {"id": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-s9AMelYhmifrJqGjkRkqyoP7NMudky0vJPdYzjGKryWYhofREwzC4EesqYm+dooMQB++vbgvGrtrcZpU36Q+sA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-1kcSfJKTg00KxR43jsnYjjYTPoUh+f+OLpL4/yF/bzKikgxV6QPlz74UyrypYprz3NUHHOcsa12E7+Xp4RtTng==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-DPcJlXiNYg8lqqCAFTgaL9Yqs1brKG3H6b1XVimLf9RYxW7zOLujvf3HfTlvrYEWsAulgJ/+7Gh0mCw4FUt+IQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-2p9EjZTy8LkH/wx6OwRuk0ORuVL7PzqJ3cdvL/SY58Ep+XW0AYEBjyy7kloJ/nPZGYVUT+NS8kNwPU5ICV/DwQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-2v5kHzEZgBFCz+5NJgZn3Dmi9gaYY/loR5PJEXvOJ018XIF6BmSGYNyHNXTmdFPq50EjwaGpHj8cQmR3z5oeGA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-qfB0WU/HXLYhTlXpDZi0eY1p1x9jlwxDlVFcWrj9u+2gFEesUKux9IoR9bzQLPPj//B0dSWolKEgW/1X70VWCA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.native.System", "version": "4.3.1", "sha512": "sha512-AJsN0GLPijYtmFZdvPYnfTdAMTlvMttusjye6ZC1Edg5XUneNv1BCHzXfM0SWpqf+Gt/31WthibAPAorcN4F1g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net20": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net30": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net35": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net40": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net403": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net45": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net451": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net452": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net46": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net461": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net462": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net47": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net471": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net472": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net48": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": []}, - {"id": "runtime.native.System.Net.Http", "version": "4.3.1", "sha512": "sha512-n3clBjCv4nEoDl/hV4/DYwi/yoRrFZk9Tpe0TenLiITLHvtijO+OSYhwV7JmACcsZlLFKMaYW+P5yN3sK/xU0Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net20": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net30": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net35": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net40": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net403": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net45": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net451": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net452": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net46": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net461": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net462": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net47": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net471": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net472": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net48": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": []}, - {"id": "runtime.native.System.Security.Cryptography.Apple", "version": "4.3.1", "sha512": "sha512-C+AZUmQBFgXR/NxF80q0Sy7SgYiW+C3CcIuA7yd0f1FXWN16xhIRSmXN92IUSGx/ebGN3XmaeuVUZpd+NuY/jQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net20": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net30": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net35": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net40": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net403": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net45": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net451": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net452": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net46": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net461": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net462": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net47": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net471": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net472": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net48": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net5.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net6.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net7.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp1.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp1.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.2": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp3.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp3.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.2": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.3": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.4": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.5": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.6": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard2.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard2.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"]}, "targeting_pack_overrides": []}, - {"id": "runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-CiS94rEK+DWQJJbFqOc+SboSZQeswgRiao5QMZjHjhhRPi2NkawZZ0l99i8+eGNTVo6f4cYTOXVmNr0BeJTiYQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net20": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net30": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net35": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net40": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net403": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net45": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net451": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net452": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net46": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net461": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net462": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net47": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net471": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net472": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net48": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net5.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net6.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net7.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp1.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp1.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.2": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp3.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp3.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.2": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.3": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.4": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.5": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.6": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard2.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard2.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"]}, "targeting_pack_overrides": []}, - {"id": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-kbvMwf5iS0oM7qiHPy3sHADQa2ncqFXVz7bQKCiPKcnNu5NTDz4cO/Nk4gy54iYjU0SSma/z2IfYIpPGVsdiZA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-anMSS/nfTUvTuvUE3jg+sSEx7JUgLkeYS7T9dbb8ZE42XYWdaLJjRlp3qA/yYyoewJuVJ6ZPeI8w9QrlKgVSow==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-KHQzsD6iTnD3Rpr+Odhe0II9LMwTJkIOMKekGzBz5TQlNbEpuc0LwQxMuCE4FZnzcefRYw3kDd5Xyu+AFND8FQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", "version": "4.3.1", "sha512": "sha512-YVeP6XccbJen1k3sjfntjqWS+vAcVt37VW3eBuZvjH7ZlTmQz3t6n8gLNh342IeDSBM+06SPYtBqP1roAlIpDA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-KBHT4RWCC3klyYzHWLweXSAPRzPLuzFdfixnzojA+tNUE6kHpyABhtbgTiwhGHyA3+TlyLOn1viw1NBoG7ZOxQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-Lmw34chaD1jDOrmiEl2jIXVoCfYhTFMWQWtC47RDRLKYpwLOjOkSa6E2LM5K28UNpkSOZu579Os/t+eZ+wAhOw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-K6KLKN1ICpOqvVG2Dub+uX3gb/MqqiS1deVZpuj46M7ya9ranrGzFYVIMsQFI8f7vhc+sf0gyTtN0es9tN4jmw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-IXiZH+OL4lP8dRKieebADFgWPgyq/vbMbYqXCz9EhfaU4CcRl1ygb3pmpNWhVJsVEV3fRb3tEaEFowmkb56WCQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-uOpq6ML3XC+QioF01mDpg6zuJEZs23+vjpbnOKQkZxyMSOGNanyleAjNgXLZyUo0NPa5c8QIMB878SvxLSxjhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-fefg8Dxuv7BKypFbd1HKIdO/x51l+NN4WP5GIqe+Gx6El1Aut7zZA5a9B8WPowDiGCwPIqEJaIhdwCjmbHqscQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Collections", "version": "4.3.0", "sha512": "sha512-ynuVLTDaFIfKTkOqUigXte4m5+EFNwYoEBEvxnp1EnZsOdQC85S7BCbREIu8+bu2Tpzh9a9zbvIVpRo15V8FGw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Collections.Concurrent", "version": "4.3.0", "sha512": "sha512-NcGqPmNiFv5dwuvrUEKT5prWNV0m4iRTrwYK+U2CefqpO9z+EnrssLMWx+fZGFvKxy6ZSYTv238thRXx9Vz2gg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "net6.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "net7.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.2": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.3": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.ComponentModel.Composition", "version": "6.0.0", "sha512": "sha512-YWQ3ENu0D2st9ZV+Yj4u3IFcas0Pw7S4c7ymDUooPLb1psNJ53YniX2orSiY2OlRWnssaUsTytnVJa/KfCn5aA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": []}, - {"id": "System.Diagnostics.Debug", "version": "4.3.0", "sha512": "sha512-bFj+HjYY5/h2hMHOp+/H07Gb19+NJTX54ntixS9EHxG2eyEiXWvNYvQJ4CwqFiMcTbGb4zuPq1ubClyGYN2rJA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Diagnostics.DiagnosticSource", "version": "6.0.0", "sha512": "sha512-dYnmo66bitfHxLjNBU2LPp6Dn98n7hRyk7ZKGVzaAPw2MHy+40dLxfw7susxMkWfL3C//aJF+/UDAPgH2YhUZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Runtime.CompilerServices.Unsafe"], "net5.0": ["System.Runtime.CompilerServices.Unsafe"], "net6.0": ["System.Runtime.CompilerServices.Unsafe"], "net7.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.2": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.1": ["System.Runtime.CompilerServices.Unsafe"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": []}, - {"id": "System.Diagnostics.Tracing", "version": "4.3.0", "sha512": "sha512-0KXTDiYc1Ft9+rArf/vXa2TgybiS7YJuphSByYPAIIsFtpmBzXnpHNTlgR4c1MPOoGoa/OBYEezli+XkwgFp6g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Formats.Asn1", "version": "6.0.0", "sha512": "sha512-62YP6zLnvmFtFI3rjybbrnSeK6hHQCaFfJJfoNhQqrETJBPehSucQxIyQs5W+GGBW/rpSXD/0NqNW7mttIWXhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Globalization", "version": "4.3.0", "sha512": "sha512-gj0rowjLBztAoxRuzM0Nn9exYVrD+++xb3PYc+QR/YHDvch98gbT3H4vFMnNU6r8poSjVwwlRxKAqtqN6AXs4g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Globalization.Calendars", "version": "4.3.0", "sha512": "sha512-6XGQIxQCs5N3S5Je/AKiv6QdHRF6F/uH2m45n1I0VGlidn6c2POZcO+kCOT0U80eZ1Giph42a8l0BuGwuKS+hg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Globalization.Extensions", "version": "4.3.0", "sha512": "sha512-pNNgAD+V4MMe3znAuR4cc4UKYKxdADKxfbiIo8fXE0zvms2XIZ0UF0rSE7fARPSbNkzFcgBz6/y24b9uTsJM5Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "net6.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "net7.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"]}, "targeting_pack_overrides": []}, - {"id": "System.IO", "version": "4.3.0", "sha512": "sha512-v8paIePhmGuXZbE9xvvNb4uJ5ME4OFXR1+8la/G/L1GIl2nbU2WFnddgb79kVK3U2us7q1aZT/uY/R0D/ovB5g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.IO.FileSystem", "version": "4.3.0", "sha512": "sha512-T7WB1vhblSmgkaDpdGM3Uqo55Qsr5sip5eyowrwiXOoHBkzOx3ePd9+Zh97r9NzOwFCxqX7awO6RBxQuao7n7g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.IO.FileSystem.Primitives"], "net461": ["System.IO.FileSystem.Primitives"], "net462": ["System.IO.FileSystem.Primitives"], "net47": ["System.IO.FileSystem.Primitives"], "net471": ["System.IO.FileSystem.Primitives"], "net472": ["System.IO.FileSystem.Primitives"], "net48": ["System.IO.FileSystem.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.IO.FileSystem.Primitives", "version": "4.3.0", "sha512": "sha512-WIWVPQlYLP/Zc9I6IakpBk1y8ryVGK83MtZx//zGKKi2hvHQWKAB7moRQCOz5Is/wNDksiYpocf3FeA3le6e5Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Runtime"], "net6.0": ["System.Runtime"], "net7.0": ["System.Runtime"], "netcoreapp1.0": ["System.Runtime"], "netcoreapp1.1": ["System.Runtime"], "netcoreapp2.0": ["System.Runtime"], "netcoreapp2.1": ["System.Runtime"], "netcoreapp2.2": ["System.Runtime"], "netcoreapp3.0": ["System.Runtime"], "netcoreapp3.1": ["System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Runtime"], "netstandard1.4": ["System.Runtime"], "netstandard1.5": ["System.Runtime"], "netstandard1.6": ["System.Runtime"], "netstandard2.0": ["System.Runtime"], "netstandard2.1": ["System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Linq", "version": "4.3.0", "sha512": "sha512-6sx/4exSb0BfW6DmcfYW0OW+nBgo1UOp4vjGXfQJnWsupKn6LNrk80sXDcNxQvYOJn4TfKOfNQKB7XDS3GIEWA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net6.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net7.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.2": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard": [], "netstandard1.0": ["System.Collections", "System.Runtime"], "netstandard1.1": ["System.Collections", "System.Runtime"], "netstandard1.2": ["System.Collections", "System.Runtime"], "netstandard1.3": ["System.Collections", "System.Runtime"], "netstandard1.4": ["System.Collections", "System.Runtime"], "netstandard1.5": ["System.Collections", "System.Runtime"], "netstandard1.6": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"]}, "targeting_pack_overrides": []}, - {"id": "System.Net.Http", "version": "4.3.4", "sha512": "sha512-Fj7e73NNHwof97gFPTJuq8gv6G895yxkZt14DVnZdEh4gvKl8WrksCwNjIp/JeYX/yu/qxM/iOv9ai+ZY3Fp7Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.X509Certificates"], "net461": ["System.Security.Cryptography.X509Certificates"], "net462": ["System.Security.Cryptography.X509Certificates"], "net47": ["System.Security.Cryptography.X509Certificates"], "net471": ["System.Security.Cryptography.X509Certificates"], "net472": ["System.Security.Cryptography.X509Certificates"], "net48": ["System.Security.Cryptography.X509Certificates"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.IO", "System.Net.Primitives", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.2": ["System.IO", "System.Net.Primitives", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.Net.Http.WinHttpHandler", "version": "6.0.1", "sha512": "sha512-uLH7CWm9PZaO0SNhnEL8wvLCwcLCjC9M/jWgl7kTwp5PuFCfeCn7hrq6c0Bpfq2s1SCkx9lNUoRWnM76wMpnxQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Net.Primitives", "version": "4.3.1", "sha512": "sha512-BgdlyYCI7rrdh36p3lMTqbkvaafPETpB1bk9iQlFdQxYE692kiXvmseXs8ghL+gEgQF2xgDc8GH4QLkSgUUs+Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"]}, "targeting_pack_overrides": []}, - {"id": "System.Reflection", "version": "4.3.0", "sha512": "sha512-IyW2ftYNzgMCgHBk8lQiy+G3+ydbU5tE+6PEqM5JJvIdeFKaXDSzHAPYDREPe6zpr5WJ1Fcma+rAFCIAV6+DMw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Reflection.Emit.Lightweight", "version": "4.7.0", "sha512": "sha512-Blr1A9Vqk+ZUknlk6sFrhOcpuqx4bp7kqwZfhwkmmhz+9dgOl8cZ9CnSXbalbL9rfHmi5HDFydxQsfozl2PvjQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netcoreapp1.1": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.1": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.2": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.3": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.4": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.5": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.6": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Reflection.Primitives", "version": "4.3.0", "sha512": "sha512-1LnMkF9aXKuQAgYzjoiQaL9mwY7oY6KdaO/zzeLMynNBEqKoUfLi5TiKIewoAF+hkxfGTZsjkjsF1jRL4uSeqg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Resources.ResourceManager", "version": "4.3.0", "sha512": "sha512-kGfbKPHEjQj8Uq1Apgj4jBStkRJkZ0Hdr0Jv3+aL7WGrAZVLF5Rh5h0Yc3FgDB5uXDbHiJk/WhBaZPVwKmuB1A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Runtime", "version": "4.3.1", "sha512": "sha512-Al69mPDfzdD+bKGK2HAfB+lNFOHFqnkqzNnUJmmvUe1/qEPK9M7EiTT4zuycKDPy7ev11xz8XVgJWKP0hm7NIA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.CompilerServices.Unsafe", "version": "6.0.0", "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.Extensions", "version": "4.3.1", "sha512": "sha512-VSbBNw3UQxuHk4aALPsYo154l+TKUR4Ij+Nj9GPnyJkzAmMewY1AyHXuaE+KCJ6JBj2SoO4uwLqY4ORKW9JRTw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.Handles", "version": "4.3.0", "sha512": "sha512-CluvHdVUv54BvLTOCCyybugreDNk/rR8unMPruzXDtxSjvrQOU3M4R831/lQf4YI8VYp668FGQa/01E+Rq8PEQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.InteropServices", "version": "4.3.0", "sha512": "sha512-ZQeZw+ZU77ua1nFXycYM5G8oioFZe+N84qC/XUg1BEBl7z9luZcyjLu7+4H0yJuNfn1hOAiAAZ3u5us/lj9w2Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": ["System.Runtime"], "net47": ["System.Runtime"], "net471": ["System.Runtime"], "net472": ["System.Runtime"], "net48": ["System.Runtime"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"]}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.Numerics", "version": "4.3.0", "sha512": "sha512-PjR/qo5+xITUgeU7HCGf4c40augniiFLRQjPDiM8Fie9nGxsfGVOjB9BQycYON3ZWT9joQQ1d62HxA45Kvf9NA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net6.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net7.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.2": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Runtime"], "netstandard1.2": ["System.Runtime"], "netstandard1.3": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.4": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.5": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.6": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Algorithms", "version": "4.3.1", "sha512": "sha512-NLArYLaaVOExC1EVEuMhCkm/sFhMUPgLWcWG1xgK2XPjtUGfelV4ODeIQ5VGDbPg2xPI+yfebRcLjS2rHJCtzw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Primitives"], "net462": ["System.Security.Cryptography.Primitives"], "net47": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net471": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net472": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net48": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.4": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.5": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Cng", "version": "5.0.0", "sha512": "sha512-trvkAklUhzM+/z9bPnGmDLzmbvD0l1IlC6gpFRpzjGLylTgtTPqm8Uv7tnDBTuBQObjEZBxNS0bChIi6zQCV9w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Algorithms"], "net462": ["System.Security.Cryptography.Algorithms"], "net47": ["System.Security.Cryptography.Algorithms"], "net471": ["System.Security.Cryptography.Algorithms"], "net472": ["System.Security.Cryptography.Algorithms"], "net48": ["System.Security.Cryptography.Algorithms"], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "netstandard1.4": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.5": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.6": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Csp", "version": "4.3.0", "sha512": "sha512-QzF1kXR6GPUvaDGH4Jrf4OA1c+baxDC/O6E/RAzbHHux+SBTadXzsqDz/flgTVuh5tlKiZol0sUz5FMzhXjzUQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net462": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net47": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net471": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net472": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net48": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net6.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net7.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Encoding", "version": "4.3.0", "sha512": "sha512-XCat0j5jVC83UG9fofcuiYDwN0PVKc2OWD0QVLjYpXn7dz+gNaANkHPbhNtr5PR8rDQNHrxtI912Hb29YAB14A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.OpenSsl", "version": "5.0.0", "sha512": "sha512-+8P4Eo9HMcke1V4bPK6JjBaHilI5MAYLcqPKVHcpbJmW3O6qOCxutBmEiuT3e6CZvk8cE4v2wqC5J3woxqEF/Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Cryptography.Algorithms"], "net462": ["System.Security.Cryptography.Algorithms"], "net47": ["System.Security.Cryptography.Algorithms"], "net471": ["System.Security.Cryptography.Algorithms"], "net472": ["System.Security.Cryptography.Algorithms"], "net48": ["System.Security.Cryptography.Algorithms"], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Pkcs", "version": "6.0.1", "sha512": "sha512-ubxxZt0n9t8Xe/NtN53XMf6ZSfRKsk/T+mheDuoZbYrBJRLVyQ4pecXoROihl/DyC9uVOt6QrejwLAx1Raj1wg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.2": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Primitives", "version": "4.3.0", "sha512": "sha512-WtgnP5mOu5zKL3vQMUPT9tV7XVYGV7Jtb0540DgBD7MMN5ojonwIcw8VybZvS6VloGmE7CRt/Hms8adBsN1DRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "net6.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "net7.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.X509Certificates", "version": "4.3.2", "sha512": "sha512-Ax8SNsw9NCe5pBEysVjrPiGgmcw9ToUMQyNOsbKL0BAGO3VQ+Gis2eleJ7KVmJ5j2gFdgh42yc9U2hboXdy+3A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net461": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net462": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net47": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net471": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net472": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net48": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.4": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.5": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": []}, - {"id": "System.Text.Encoding", "version": "4.3.0", "sha512": "sha512-b/f+7HMTpxIfeV7H03bkuHKMFylCGfr9/U6gePnfFFW0aF8LOWLDgQCY6V1oWUqDksC3mdNuyChM1vy9TP4sZw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Text.Json", "version": "5.0.2", "sha512": "sha512-PTL4h2MLbKEqZ/9TE6SEmJp1txIh0GjzYPQrWGbfJ5sgbPrpXzb9sOoXe3cid51zDBE+2KCLd95e/04JiNr0TQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net462": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net47": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net471": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net472": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net48": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.2": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.1": ["System.Runtime.CompilerServices.Unsafe"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": []}, - {"id": "System.Threading", "version": "4.3.0", "sha512": "sha512-l6J1G9zmn6r5xU+DSp/Vxgx6eG+qUvQgdpgo28m1gEwfNyG6HqlF6h2ESDXZCYEPnngsmkTQ+q7MyyMMTNlaiA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Runtime", "System.Threading.Tasks"], "net6.0": ["System.Runtime", "System.Threading.Tasks"], "net7.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.2": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.3": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.4": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.5": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.6": ["System.Runtime", "System.Threading.Tasks"], "netstandard2.0": ["System.Runtime", "System.Threading.Tasks"], "netstandard2.1": ["System.Runtime", "System.Threading.Tasks"]}, "targeting_pack_overrides": []}, - {"id": "System.Threading.Tasks", "version": "4.3.0", "sha512": "sha512-fUiP+CyyCjs872OA8trl6p97qma/da1xGq3h4zAbJZk8zyaU4zyEfqW5vbkP80xG/Nimun1vlWBboMEk7XxdEw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": []}, - {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, + {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Chessie", "version": "0.6.0", "sha512": "sha512-VUcf1SFTXQDf1ULVQ/IddKISCuVICj9OC+wW1LFSIDqpHfihP2M2CvLetBxsCvcplu8ugI4mo9ZV5gmdefHxPg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["FSharp.Core"], "net20": ["FSharp.Core"], "net30": ["FSharp.Core"], "net35": ["FSharp.Core"], "net40": ["FSharp.Core"], "net403": ["FSharp.Core"], "net45": ["FSharp.Core"], "net451": ["FSharp.Core"], "net452": ["FSharp.Core"], "net46": ["FSharp.Core"], "net461": ["NETStandard.Library", "FSharp.Core"], "net462": ["NETStandard.Library", "FSharp.Core"], "net47": ["NETStandard.Library", "FSharp.Core"], "net471": ["NETStandard.Library", "FSharp.Core"], "net472": ["NETStandard.Library", "FSharp.Core"], "net48": ["NETStandard.Library", "FSharp.Core"], "net5.0": ["NETStandard.Library", "FSharp.Core"], "net6.0": ["NETStandard.Library", "FSharp.Core"], "net7.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp1.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp1.1": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.1": ["NETStandard.Library", "FSharp.Core"], "netcoreapp2.2": ["NETStandard.Library", "FSharp.Core"], "netcoreapp3.0": ["NETStandard.Library", "FSharp.Core"], "netcoreapp3.1": ["NETStandard.Library", "FSharp.Core"], "netstandard": ["FSharp.Core"], "netstandard1.0": ["FSharp.Core"], "netstandard1.1": ["FSharp.Core"], "netstandard1.2": ["FSharp.Core"], "netstandard1.3": ["FSharp.Core"], "netstandard1.4": ["FSharp.Core"], "netstandard1.5": ["FSharp.Core"], "netstandard1.6": ["NETStandard.Library", "FSharp.Core"], "netstandard2.0": ["NETStandard.Library", "FSharp.Core"], "netstandard2.1": ["NETStandard.Library", "FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Control.AsyncSeq", "version": "3.2.1", "sha512": "sha512-oV4Xx1MMOqpnZAon10bhN/JSUjwuc/H4hXq2SM7IWimfghk5yK85alZiqVH4momfGBKpr/RsBVfgCrqbmkaxJg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net462": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net47": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net471": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net472": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net48": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net5.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net6.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "net7.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp2.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp2.2": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp3.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netcoreapp3.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"], "netstandard2.1": ["FSharp.Core", "Microsoft.Bcl.AsyncInterfaces"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.SystemTextJson", "version": "0.16.6", "sha512": "sha512-7SoZOjo4dY6Ez47RSL5pWVAGiy8SPCzpjD4oBoGEkMNsnrRcy1WhD8jB2XyRufrboyBxKbGp7ZKMAQlDIc1Crg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Text.Json"], "net462": ["FSharp.Core", "System.Text.Json"], "net47": ["FSharp.Core", "System.Text.Json"], "net471": ["FSharp.Core", "System.Text.Json"], "net472": ["FSharp.Core", "System.Text.Json"], "net48": ["FSharp.Core", "System.Text.Json"], "net5.0": ["FSharp.Core", "System.Text.Json"], "net6.0": ["FSharp.Core", "System.Text.Json"], "net7.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp2.1": ["FSharp.Core", "System.Text.Json"], "netcoreapp2.2": ["FSharp.Core", "System.Text.Json"], "netcoreapp3.0": ["FSharp.Core", "System.Text.Json"], "netcoreapp3.1": ["FSharp.Core", "System.Text.Json"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Text.Json"], "netstandard2.1": ["FSharp.Core", "System.Text.Json"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharpx.Async", "version": "1.14.1", "sha512": "sha512-8Ye/hgNHsnHWFtanfED+tgJJzPq4QEt+LUQ87Ie2JOiqb6WUP+vtF3WRBO2NIDqGQpivh207nwmCoFdK+T6jwQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net46": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net461": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net462": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net47": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net471": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net472": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net48": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net5.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net6.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "net7.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp2.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp2.2": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp3.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netcoreapp3.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Control.AsyncSeq", "FSharp.Core"], "netstandard2.1": ["FSharp.Control.AsyncSeq", "FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharpx.Collections", "version": "2.1.3", "sha512": "sha512-1KSJLhLpqOTPRKYkgi0YvPrvGybiYi642r53VrQb1U7LNd3VQNsh3z++v69ky8FEj4y+kP6NPbgZbFyJ8mumqA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["FSharp.Core"], "net451": ["FSharp.Core"], "net452": ["FSharp.Core"], "net46": ["FSharp.Core"], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharpx.Extras", "version": "3.0.0", "sha512": "sha512-7Wv7LF8hZfGG6KuXcQoGTnm6keDAtMwvI6S2lK90Z23Dvs44XGeRAGOsLRO3dg2k6atckdt6xd0SDqQ9FSa4vA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net46": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net461": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net462": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net47": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net471": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net472": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net48": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net5.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net6.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "net7.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp2.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp2.2": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp3.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netcoreapp3.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"], "netstandard2.1": ["FSharp.Core", "FSharpx.Async", "FSharpx.Collections", "System.Reflection.Emit.Lightweight"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.Bcl.AsyncInterfaces", "version": "6.0.0", "sha512": "sha512-IhoFoMkQ96h7Yg2PODHtOStOuV0RK+4nTTXycAmtKiZEXenXzSNf5vtKA/JVCHS9o7493dlu2vnAhSqcI9ewmQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.CSharp", "version": "4.7.0", "sha512": "sha512-LJaYhRX5VxTUuD9WUPGD3GpWTgs89SVfoOPvSEdt66tL3lQvny9sR/ZiC3px1qUV5EFebS44i2CBeiliHVaQ3w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["NETStandard.Library"], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.NETCore.Platforms", "version": "6.0.5", "sha512": "sha512-GTMT/dgCRBCRUj11ssZ8K1FJm6Md+C/tSJl8I7YjxOFwSvopaIneV32y1VlnBTI4wy1SwueI7ou2sVfHkWENrA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.Targets", "version": "5.0.0", "sha512": "sha512-hYHm3JAjQO/nySxcl1EpZhYEW+2P3H1eLZNr+QxgO5TnLS6hqtfi5WchjQzjid45MYmhy2X7IOmcWtDP4fpMGw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.Web.Xdt", "version": "3.1.0", "sha512": "sha512-3VApgkdgOglJWtrXSgYzz6o8Cp6IpvmFQMeICyQvvbKoy+OjNwco5ovzBBL1HHj7kEgLfe2ruXW/ZQ1k+2YxYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Mono.Cecil", "version": "0.11.4", "sha512": "sha512-CnjwUMmFHnScNG8e/4DRZQQX67H5ajekRDudmZ6Fy1jCLhyH1jjzbQCOEFhBLa2NjPWQpMF+RHdBJY8a7GgmlA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms", "System.Globalization.Calendars", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Net.Http", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Linq", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Collections.Concurrent", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Linq", "System.Net.Http", "System.Net.Primitives", "System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Newtonsoft.Json", "version": "13.0.1", "sha512": "sha512-g3MbZi6vBTeaI/hEbvR7vBETSd1DWLe9i1E4P+nPY34v5i94zqUqDXvdWC3G+7tYN9SnsdU9zzegrnRz4h7nsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["Microsoft.CSharp", "NETStandard.Library"], "netcoreapp1.1": ["Microsoft.CSharp", "NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.1": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.2": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.3": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.4": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.5": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard1.6": ["Microsoft.CSharp", "NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Commands", "version": "6.3.0", "sha512": "sha512-Sku4aLa2P6fu/yU23cCaXtG33lBC5yZ4CskiCECnKMKhoiONQx/9ts66B7doJjwctb37w3FJAo9yE7gwzfUOZA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Credentials", "NuGet.ProjectModel"], "net462": ["NuGet.Credentials", "NuGet.ProjectModel"], "net47": ["NuGet.Credentials", "NuGet.ProjectModel"], "net471": ["NuGet.Credentials", "NuGet.ProjectModel"], "net472": ["NuGet.Credentials", "NuGet.ProjectModel"], "net48": ["NuGet.Credentials", "NuGet.ProjectModel"], "net5.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net6.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net7.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.2": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard2.1": ["NuGet.Credentials", "NuGet.ProjectModel"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Common", "version": "6.3.0", "sha512": "sha512-qIXPWAhirtrK3QU/ZWBd0NYLdPfZL5XAWZepacZDUKuOJ8a+2hlcVP7ohvN6RzYk4LcBN3HgguFhoKdZLM4brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Frameworks"], "net462": ["NuGet.Frameworks"], "net47": ["NuGet.Frameworks"], "net471": ["NuGet.Frameworks"], "net472": ["NuGet.Frameworks"], "net48": ["NuGet.Frameworks"], "net5.0": ["NuGet.Frameworks"], "net6.0": ["NuGet.Frameworks"], "net7.0": ["NuGet.Frameworks"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Frameworks"], "netcoreapp2.1": ["NuGet.Frameworks"], "netcoreapp2.2": ["NuGet.Frameworks"], "netcoreapp3.0": ["NuGet.Frameworks"], "netcoreapp3.1": ["NuGet.Frameworks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Frameworks"], "netstandard2.1": ["NuGet.Frameworks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Configuration", "version": "6.3.0", "sha512": "sha512-mFn4cXvExSjgUooFPEqq5Gtsp8a7ANdu5LjDzysdJkziDkWkUa6x07xjZCzINQZoe9Y/OtOuQRMaAE1UA8dyPw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net462": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net47": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net471": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net472": ["NuGet.Common"], "net48": ["NuGet.Common"], "net5.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net6.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net7.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Credentials", "version": "6.3.0", "sha512": "sha512-5xA2dW8YdEBLYtu+SkZ6QyxrZt6vxmPTW521nSq9BE8DgNS2BpwPwo1sFcYbM+devU9bSYCIPIg8CpSQHF2YVA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.DependencyResolver.Core", "version": "6.3.0", "sha512": "sha512-7sgzHc9ZPa39YlVBfyFqGyNEflQOH9AmDo2M3vzrGtkoDgMIlmTeRZm/3P6R4rjoo1DFNUcTRAepDesaXRf9tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net462": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net47": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net471": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net472": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net48": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net5.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net6.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "net7.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"], "netstandard2.1": ["NuGet.Configuration", "NuGet.LibraryModel", "NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Frameworks", "version": "6.3.0", "sha512": "sha512-1qR5DUYtyBi1Vfl70p3Rv+TVLp0InZkwSQuedRAklLzDbsDiCX9IDFOZaBuoFYEVp8z3+/tABujlzJwoSh28Hg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.LibraryModel", "version": "6.3.0", "sha512": "sha512-OPXNh1kxH+a/KSQ3y7QZiZS9/hQSTvmATfzW58LHCGSnBt9uXFz175omQFTfzRT2zhmxD3G8llp1eh9lRAgIUQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "NuGet.Versioning"], "net462": ["NuGet.Common", "NuGet.Versioning"], "net47": ["NuGet.Common", "NuGet.Versioning"], "net471": ["NuGet.Common", "NuGet.Versioning"], "net472": ["NuGet.Common", "NuGet.Versioning"], "net48": ["NuGet.Common", "NuGet.Versioning"], "net5.0": ["NuGet.Common", "NuGet.Versioning"], "net6.0": ["NuGet.Common", "NuGet.Versioning"], "net7.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.1": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.2": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.1": ["NuGet.Common", "NuGet.Versioning"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "NuGet.Versioning"], "netstandard2.1": ["NuGet.Common", "NuGet.Versioning"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.PackageManagement", "version": "6.2.0", "sha512": "sha512-pHKYJIu77c9RHdV1t8FvrzipVgQgBxDnGZB+/IsSfnH7h6ZGdkRg74MDTgh3uJbIoU4ggC3RLbaDGxsPz6qWIQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net462": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net47": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net471": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net472": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt"], "net48": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt"], "net5.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net6.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net7.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.2": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.CSharp", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Nuget.Packaging", "version": "6.3.0", "sha512": "sha512-qTv1nY3kH0DOly5kNaVFPTW8kta63YMqw3Xp3JBK5nt+EZW/iZvN1NcQ+YEHuW+2ktn6I6lQ/9MNv8I9Tv4DtA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net462": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net47": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net471": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net472": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net48": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net5.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net6.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net7.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.ProjectModel", "version": "6.3.0", "sha512": "sha512-8nHo2PxZ4uIW9V2u+h/A/rJJHBuWv+QCImIoKLwCKT8YKGBHKW+MpFlP5NV59JficVFITJtjeCFgWQjEUoPcFA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.DependencyResolver.Core"], "net462": ["NuGet.DependencyResolver.Core"], "net47": ["NuGet.DependencyResolver.Core"], "net471": ["NuGet.DependencyResolver.Core"], "net472": ["NuGet.DependencyResolver.Core"], "net48": ["NuGet.DependencyResolver.Core"], "net5.0": ["NuGet.DependencyResolver.Core"], "net6.0": ["NuGet.DependencyResolver.Core"], "net7.0": ["NuGet.DependencyResolver.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.DependencyResolver.Core"], "netcoreapp2.1": ["NuGet.DependencyResolver.Core"], "netcoreapp2.2": ["NuGet.DependencyResolver.Core"], "netcoreapp3.0": ["NuGet.DependencyResolver.Core"], "netcoreapp3.1": ["NuGet.DependencyResolver.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.DependencyResolver.Core"], "netstandard2.1": ["NuGet.DependencyResolver.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Protocol", "version": "6.3.0", "sha512": "sha512-6nLnh/bPnf4KGwtWeait6J8wgON+hNUtfAU7f3cDKECHqUdzNsxz78iHu/ia2wgBx3Uq9xj0Ne/mNRIKII16GQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Resolver", "version": "6.3.0", "sha512": "sha512-hdmaUD7+q7qfBY8NiK9OYBpmUlO6LhktKGDCpB7SerE3YYZC1jq09bUQfYjBya0MVGN6UvmpVnQRlc7MHX5WMg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Versioning", "version": "6.3.0", "sha512": "sha512-66/JrnvBv9W/MW2M6OhHF8oJhhEPxQVPBYh/B7WsYn6z/qaM+FwGjiX3yiIJPoo/wSZ0bbkMsITbdcuemN4WBA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Paket.Core", "version": "7.1.5", "sha512": "sha512-XT8Jdh8NOJU6CZDuGXaL4mirvwLscK5MarhCBJlT9RAtTq79qQuSc9dklEkfGMkyif/s36oMQtaQIZ914vzJHg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net462": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net47": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net471": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net472": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net48": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net5.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net6.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "net7.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["Chessie", "FSharp.Core", "Mono.Cecil", "Newtonsoft.Json", "Nuget.Packaging", "System.Net.Http", "System.Net.Http.WinHttpHandler", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-s9AMelYhmifrJqGjkRkqyoP7NMudky0vJPdYzjGKryWYhofREwzC4EesqYm+dooMQB++vbgvGrtrcZpU36Q+sA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-1kcSfJKTg00KxR43jsnYjjYTPoUh+f+OLpL4/yF/bzKikgxV6QPlz74UyrypYprz3NUHHOcsa12E7+Xp4RtTng==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-DPcJlXiNYg8lqqCAFTgaL9Yqs1brKG3H6b1XVimLf9RYxW7zOLujvf3HfTlvrYEWsAulgJ/+7Gh0mCw4FUt+IQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-2p9EjZTy8LkH/wx6OwRuk0ORuVL7PzqJ3cdvL/SY58Ep+XW0AYEBjyy7kloJ/nPZGYVUT+NS8kNwPU5ICV/DwQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-2v5kHzEZgBFCz+5NJgZn3Dmi9gaYY/loR5PJEXvOJ018XIF6BmSGYNyHNXTmdFPq50EjwaGpHj8cQmR3z5oeGA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-qfB0WU/HXLYhTlXpDZi0eY1p1x9jlwxDlVFcWrj9u+2gFEesUKux9IoR9bzQLPPj//B0dSWolKEgW/1X70VWCA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.native.System", "version": "4.3.1", "sha512": "sha512-AJsN0GLPijYtmFZdvPYnfTdAMTlvMttusjye6ZC1Edg5XUneNv1BCHzXfM0SWpqf+Gt/31WthibAPAorcN4F1g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net20": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net30": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net35": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net40": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net403": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net45": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net451": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net452": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net46": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net461": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net462": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net47": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net471": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net472": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net48": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.native.System.Net.Http", "version": "4.3.1", "sha512": "sha512-n3clBjCv4nEoDl/hV4/DYwi/yoRrFZk9Tpe0TenLiITLHvtijO+OSYhwV7JmACcsZlLFKMaYW+P5yN3sK/xU0Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net20": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net30": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net35": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net40": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net403": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net45": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net451": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net452": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net46": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net461": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net462": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net47": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net471": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net472": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net48": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.native.System.Security.Cryptography.Apple", "version": "4.3.1", "sha512": "sha512-C+AZUmQBFgXR/NxF80q0Sy7SgYiW+C3CcIuA7yd0f1FXWN16xhIRSmXN92IUSGx/ebGN3XmaeuVUZpd+NuY/jQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net20": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net30": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net35": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net40": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net403": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net45": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net451": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net452": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net46": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net461": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net462": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net47": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net471": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net472": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net48": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net5.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net6.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "net7.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp1.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp1.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp2.2": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp3.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netcoreapp3.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.2": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.3": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.4": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.5": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard1.6": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard2.0": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"], "netstandard2.1": ["runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-CiS94rEK+DWQJJbFqOc+SboSZQeswgRiao5QMZjHjhhRPi2NkawZZ0l99i8+eGNTVo6f4cYTOXVmNr0BeJTiYQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net20": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net30": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net35": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net40": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net403": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net45": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net451": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net452": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net46": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net461": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net462": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net47": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net471": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net472": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net48": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net5.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net6.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "net7.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp1.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp1.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp2.2": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp3.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netcoreapp3.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.2": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.3": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.4": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.5": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard1.6": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard2.0": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"], "netstandard2.1": ["runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-kbvMwf5iS0oM7qiHPy3sHADQa2ncqFXVz7bQKCiPKcnNu5NTDz4cO/Nk4gy54iYjU0SSma/z2IfYIpPGVsdiZA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-anMSS/nfTUvTuvUE3jg+sSEx7JUgLkeYS7T9dbb8ZE42XYWdaLJjRlp3qA/yYyoewJuVJ6ZPeI8w9QrlKgVSow==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-KHQzsD6iTnD3Rpr+Odhe0II9LMwTJkIOMKekGzBz5TQlNbEpuc0LwQxMuCE4FZnzcefRYw3kDd5Xyu+AFND8FQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", "version": "4.3.1", "sha512": "sha512-YVeP6XccbJen1k3sjfntjqWS+vAcVt37VW3eBuZvjH7ZlTmQz3t6n8gLNh342IeDSBM+06SPYtBqP1roAlIpDA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-KBHT4RWCC3klyYzHWLweXSAPRzPLuzFdfixnzojA+tNUE6kHpyABhtbgTiwhGHyA3+TlyLOn1viw1NBoG7ZOxQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-Lmw34chaD1jDOrmiEl2jIXVoCfYhTFMWQWtC47RDRLKYpwLOjOkSa6E2LM5K28UNpkSOZu579Os/t+eZ+wAhOw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-K6KLKN1ICpOqvVG2Dub+uX3gb/MqqiS1deVZpuj46M7ya9ranrGzFYVIMsQFI8f7vhc+sf0gyTtN0es9tN4jmw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-IXiZH+OL4lP8dRKieebADFgWPgyq/vbMbYqXCz9EhfaU4CcRl1ygb3pmpNWhVJsVEV3fRb3tEaEFowmkb56WCQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-uOpq6ML3XC+QioF01mDpg6zuJEZs23+vjpbnOKQkZxyMSOGNanyleAjNgXLZyUo0NPa5c8QIMB878SvxLSxjhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", "version": "4.3.3", "sha512": "sha512-fefg8Dxuv7BKypFbd1HKIdO/x51l+NN4WP5GIqe+Gx6El1Aut7zZA5a9B8WPowDiGCwPIqEJaIhdwCjmbHqscQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Collections", "version": "4.3.0", "sha512": "sha512-ynuVLTDaFIfKTkOqUigXte4m5+EFNwYoEBEvxnp1EnZsOdQC85S7BCbREIu8+bu2Tpzh9a9zbvIVpRo15V8FGw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Collections.Concurrent", "version": "4.3.0", "sha512": "sha512-NcGqPmNiFv5dwuvrUEKT5prWNV0m4iRTrwYK+U2CefqpO9z+EnrssLMWx+fZGFvKxy6ZSYTv238thRXx9Vz2gg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "net6.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "net7.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.2": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.3": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.Tracing", "System.Globalization", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.ComponentModel.Composition", "version": "6.0.0", "sha512": "sha512-YWQ3ENu0D2st9ZV+Yj4u3IFcas0Pw7S4c7ymDUooPLb1psNJ53YniX2orSiY2OlRWnssaUsTytnVJa/KfCn5aA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Diagnostics.Debug", "version": "4.3.0", "sha512": "sha512-bFj+HjYY5/h2hMHOp+/H07Gb19+NJTX54ntixS9EHxG2eyEiXWvNYvQJ4CwqFiMcTbGb4zuPq1ubClyGYN2rJA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Diagnostics.DiagnosticSource", "version": "6.0.0", "sha512": "sha512-dYnmo66bitfHxLjNBU2LPp6Dn98n7hRyk7ZKGVzaAPw2MHy+40dLxfw7susxMkWfL3C//aJF+/UDAPgH2YhUZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Runtime.CompilerServices.Unsafe"], "net5.0": ["System.Runtime.CompilerServices.Unsafe"], "net6.0": ["System.Runtime.CompilerServices.Unsafe"], "net7.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.2": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.1": ["System.Runtime.CompilerServices.Unsafe"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Diagnostics.Tracing", "version": "4.3.0", "sha512": "sha512-0KXTDiYc1Ft9+rArf/vXa2TgybiS7YJuphSByYPAIIsFtpmBzXnpHNTlgR4c1MPOoGoa/OBYEezli+XkwgFp6g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Formats.Asn1", "version": "6.0.0", "sha512": "sha512-62YP6zLnvmFtFI3rjybbrnSeK6hHQCaFfJJfoNhQqrETJBPehSucQxIyQs5W+GGBW/rpSXD/0NqNW7mttIWXhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Globalization", "version": "4.3.0", "sha512": "sha512-gj0rowjLBztAoxRuzM0Nn9exYVrD+++xb3PYc+QR/YHDvch98gbT3H4vFMnNU6r8poSjVwwlRxKAqtqN6AXs4g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Globalization.Calendars", "version": "4.3.0", "sha512": "sha512-6XGQIxQCs5N3S5Je/AKiv6QdHRF6F/uH2m45n1I0VGlidn6c2POZcO+kCOT0U80eZ1Giph42a8l0BuGwuKS+hg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Globalization.Extensions", "version": "4.3.0", "sha512": "sha512-pNNgAD+V4MMe3znAuR4cc4UKYKxdADKxfbiIo8fXE0zvms2XIZ0UF0rSE7fARPSbNkzFcgBz6/y24b9uTsJM5Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "net6.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "net7.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.InteropServices"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.IO", "version": "4.3.0", "sha512": "sha512-v8paIePhmGuXZbE9xvvNb4uJ5ME4OFXR1+8la/G/L1GIl2nbU2WFnddgb79kVK3U2us7q1aZT/uY/R0D/ovB5g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.IO.FileSystem", "version": "4.3.0", "sha512": "sha512-T7WB1vhblSmgkaDpdGM3Uqo55Qsr5sip5eyowrwiXOoHBkzOx3ePd9+Zh97r9NzOwFCxqX7awO6RBxQuao7n7g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.IO.FileSystem.Primitives"], "net461": ["System.IO.FileSystem.Primitives"], "net462": ["System.IO.FileSystem.Primitives"], "net47": ["System.IO.FileSystem.Primitives"], "net471": ["System.IO.FileSystem.Primitives"], "net472": ["System.IO.FileSystem.Primitives"], "net48": ["System.IO.FileSystem.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.IO.FileSystem.Primitives", "System.Runtime", "System.Runtime.Handles", "System.Text.Encoding", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.IO.FileSystem.Primitives", "version": "4.3.0", "sha512": "sha512-WIWVPQlYLP/Zc9I6IakpBk1y8ryVGK83MtZx//zGKKi2hvHQWKAB7moRQCOz5Is/wNDksiYpocf3FeA3le6e5Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Runtime"], "net6.0": ["System.Runtime"], "net7.0": ["System.Runtime"], "netcoreapp1.0": ["System.Runtime"], "netcoreapp1.1": ["System.Runtime"], "netcoreapp2.0": ["System.Runtime"], "netcoreapp2.1": ["System.Runtime"], "netcoreapp2.2": ["System.Runtime"], "netcoreapp3.0": ["System.Runtime"], "netcoreapp3.1": ["System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Runtime"], "netstandard1.4": ["System.Runtime"], "netstandard1.5": ["System.Runtime"], "netstandard1.6": ["System.Runtime"], "netstandard2.0": ["System.Runtime"], "netstandard2.1": ["System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Linq", "version": "4.3.0", "sha512": "sha512-6sx/4exSb0BfW6DmcfYW0OW+nBgo1UOp4vjGXfQJnWsupKn6LNrk80sXDcNxQvYOJn4TfKOfNQKB7XDS3GIEWA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net6.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net7.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.2": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard": [], "netstandard1.0": ["System.Collections", "System.Runtime"], "netstandard1.1": ["System.Collections", "System.Runtime"], "netstandard1.2": ["System.Collections", "System.Runtime"], "netstandard1.3": ["System.Collections", "System.Runtime"], "netstandard1.4": ["System.Collections", "System.Runtime"], "netstandard1.5": ["System.Collections", "System.Runtime"], "netstandard1.6": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.0": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.1": ["System.Collections", "System.Diagnostics.Debug", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Net.Http", "version": "4.3.4", "sha512": "sha512-Fj7e73NNHwof97gFPTJuq8gv6G895yxkZt14DVnZdEh4gvKl8WrksCwNjIp/JeYX/yu/qxM/iOv9ai+ZY3Fp7Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.X509Certificates"], "net461": ["System.Security.Cryptography.X509Certificates"], "net462": ["System.Security.Cryptography.X509Certificates"], "net47": ["System.Security.Cryptography.X509Certificates"], "net471": ["System.Security.Cryptography.X509Certificates"], "net472": ["System.Security.Cryptography.X509Certificates"], "net48": ["System.Security.Cryptography.X509Certificates"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.IO", "System.Net.Primitives", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.2": ["System.IO", "System.Net.Primitives", "System.Runtime", "System.Text.Encoding", "System.Threading.Tasks"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.IO", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Diagnostics.DiagnosticSource", "System.Diagnostics.Tracing", "System.Globalization", "System.Globalization.Extensions", "System.IO", "System.IO.FileSystem", "System.Net.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Security.Cryptography.X509Certificates", "System.Text.Encoding", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Net.Http.WinHttpHandler", "version": "6.0.1", "sha512": "sha512-uLH7CWm9PZaO0SNhnEL8wvLCwcLCjC9M/jWgl7kTwp5PuFCfeCn7hrq6c0Bpfq2s1SCkx9lNUoRWnM76wMpnxQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Net.Primitives", "version": "4.3.1", "sha512": "sha512-BgdlyYCI7rrdh36p3lMTqbkvaafPETpB1bk9iQlFdQxYE692kiXvmseXs8ghL+gEgQF2xgDc8GH4QLkSgUUs+Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime", "System.Runtime.Handles"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Reflection", "version": "4.3.0", "sha512": "sha512-IyW2ftYNzgMCgHBk8lQiy+G3+ydbU5tE+6PEqM5JJvIdeFKaXDSzHAPYDREPe6zpr5WJ1Fcma+rAFCIAV6+DMw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.IO", "System.Reflection.Primitives", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Reflection.Emit.Lightweight", "version": "4.7.0", "sha512": "sha512-Blr1A9Vqk+ZUknlk6sFrhOcpuqx4bp7kqwZfhwkmmhz+9dgOl8cZ9CnSXbalbL9rfHmi5HDFydxQsfozl2PvjQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netcoreapp1.1": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.1": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.2": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.3": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.4": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.5": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard1.6": ["System.Reflection", "System.Reflection.Primitives", "System.Resources.ResourceManager", "System.Runtime"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Reflection.Primitives", "version": "4.3.0", "sha512": "sha512-1LnMkF9aXKuQAgYzjoiQaL9mwY7oY6KdaO/zzeLMynNBEqKoUfLi5TiKIewoAF+hkxfGTZsjkjsF1jRL4uSeqg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Resources.ResourceManager", "version": "4.3.0", "sha512": "sha512-kGfbKPHEjQj8Uq1Apgj4jBStkRJkZ0Hdr0Jv3+aL7WGrAZVLF5Rh5h0Yc3FgDB5uXDbHiJk/WhBaZPVwKmuB1A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Globalization", "System.Reflection", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime", "version": "4.3.1", "sha512": "sha512-Al69mPDfzdD+bKGK2HAfB+lNFOHFqnkqzNnUJmmvUe1/qEPK9M7EiTT4zuycKDPy7ev11xz8XVgJWKP0hm7NIA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.CompilerServices.Unsafe", "version": "6.0.0", "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.Extensions", "version": "4.3.1", "sha512": "sha512-VSbBNw3UQxuHk4aALPsYo154l+TKUR4Ij+Nj9GPnyJkzAmMewY1AyHXuaE+KCJ6JBj2SoO4uwLqY4ORKW9JRTw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.Handles", "version": "4.3.0", "sha512": "sha512-CluvHdVUv54BvLTOCCyybugreDNk/rR8unMPruzXDtxSjvrQOU3M4R831/lQf4YI8VYp668FGQa/01E+Rq8PEQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.InteropServices", "version": "4.3.0", "sha512": "sha512-ZQeZw+ZU77ua1nFXycYM5G8oioFZe+N84qC/XUg1BEBl7z9luZcyjLu7+4H0yJuNfn1hOAiAAZ3u5us/lj9w2Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": ["System.Runtime"], "net47": ["System.Runtime"], "net471": ["System.Runtime"], "net472": ["System.Runtime"], "net48": ["System.Runtime"], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Reflection", "System.Reflection.Primitives", "System.Runtime", "System.Runtime.Handles"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.Numerics", "version": "4.3.0", "sha512": "sha512-PjR/qo5+xITUgeU7HCGf4c40augniiFLRQjPDiM8Fie9nGxsfGVOjB9BQycYON3ZWT9joQQ1d62HxA45Kvf9NA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net6.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "net7.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp1.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp2.2": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netcoreapp3.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Runtime"], "netstandard1.2": ["System.Runtime"], "netstandard1.3": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.4": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.5": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard1.6": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.0": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"], "netstandard2.1": ["System.Globalization", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Algorithms", "version": "4.3.1", "sha512": "sha512-NLArYLaaVOExC1EVEuMhCkm/sFhMUPgLWcWG1xgK2XPjtUGfelV4ODeIQ5VGDbPg2xPI+yfebRcLjS2rHJCtzw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Primitives"], "net462": ["System.Security.Cryptography.Primitives"], "net47": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net471": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net472": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net48": ["System.IO", "System.Runtime", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.4": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.5": ["System.IO", "System.Runtime", "System.Security.Cryptography.Primitives"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.Apple", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Cng", "version": "5.0.0", "sha512": "sha512-trvkAklUhzM+/z9bPnGmDLzmbvD0l1IlC6gpFRpzjGLylTgtTPqm8Uv7tnDBTuBQObjEZBxNS0bChIi6zQCV9w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Algorithms"], "net462": ["System.Security.Cryptography.Algorithms"], "net47": ["System.Security.Cryptography.Algorithms"], "net471": ["System.Security.Cryptography.Algorithms"], "net472": ["System.Security.Cryptography.Algorithms"], "net48": ["System.Security.Cryptography.Algorithms"], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "netstandard1.4": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.5": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.6": ["System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Csp", "version": "4.3.0", "sha512": "sha512-QzF1kXR6GPUvaDGH4Jrf4OA1c+baxDC/O6E/RAzbHHux+SBTadXzsqDz/flgTVuh5tlKiZol0sUz5FMzhXjzUQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net461": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net462": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net47": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net471": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net472": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net48": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Primitives"], "net5.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net6.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net7.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "System.IO", "System.Reflection", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Encoding", "version": "4.3.0", "sha512": "sha512-XCat0j5jVC83UG9fofcuiYDwN0PVKc2OWD0QVLjYpXn7dz+gNaANkHPbhNtr5PR8rDQNHrxtI912Hb29YAB14A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Collections.Concurrent", "System.Linq", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Security.Cryptography.Primitives", "System.Text.Encoding"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.OpenSsl", "version": "5.0.0", "sha512": "sha512-+8P4Eo9HMcke1V4bPK6JjBaHilI5MAYLcqPKVHcpbJmW3O6qOCxutBmEiuT3e6CZvk8cE4v2wqC5J3woxqEF/Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Cryptography.Algorithms"], "net462": ["System.Security.Cryptography.Algorithms"], "net47": ["System.Security.Cryptography.Algorithms"], "net471": ["System.Security.Cryptography.Algorithms"], "net472": ["System.Security.Cryptography.Algorithms"], "net48": ["System.Security.Cryptography.Algorithms"], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp1.1": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": ["System.Collections", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.Primitives", "System.Text.Encoding"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Pkcs", "version": "6.0.1", "sha512": "sha512-ubxxZt0n9t8Xe/NtN53XMf6ZSfRKsk/T+mheDuoZbYrBJRLVyQ4pecXoROihl/DyC9uVOt6QrejwLAx1Raj1wg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.2": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Primitives", "version": "4.3.0", "sha512": "sha512-WtgnP5mOu5zKL3vQMUPT9tV7XVYGV7Jtb0540DgBD7MMN5ojonwIcw8VybZvS6VloGmE7CRt/Hms8adBsN1DRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "net6.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "net7.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.4": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.5": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard1.6": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard2.0": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"], "netstandard2.1": ["System.Diagnostics.Debug", "System.Globalization", "System.IO", "System.Resources.ResourceManager", "System.Runtime", "System.Threading", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.X509Certificates", "version": "4.3.2", "sha512": "sha512-Ax8SNsw9NCe5pBEysVjrPiGgmcw9ToUMQyNOsbKL0BAGO3VQ+Gis2eleJ7KVmJ5j2gFdgh42yc9U2hboXdy+3A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net461": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net462": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net47": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net471": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net472": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net48": ["System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "net5.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net6.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "net7.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.4": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.5": ["System.Runtime", "System.Runtime.Handles", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Encoding"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "runtime.native.System", "runtime.native.System.Net.Http", "runtime.native.System.Security.Cryptography.OpenSsl", "System.Collections", "System.Diagnostics.Debug", "System.Globalization", "System.Globalization.Calendars", "System.IO", "System.IO.FileSystem", "System.IO.FileSystem.Primitives", "System.Resources.ResourceManager", "System.Runtime", "System.Runtime.Extensions", "System.Runtime.Handles", "System.Runtime.InteropServices", "System.Runtime.Numerics", "System.Security.Cryptography.Algorithms", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Csp", "System.Security.Cryptography.Encoding", "System.Security.Cryptography.OpenSsl", "System.Security.Cryptography.Primitives", "System.Text.Encoding", "System.Threading"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Text.Encoding", "version": "4.3.0", "sha512": "sha512-b/f+7HMTpxIfeV7H03bkuHKMFylCGfr9/U6gePnfFFW0aF8LOWLDgQCY6V1oWUqDksC3mdNuyChM1vy9TP4sZw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Text.Json", "version": "5.0.2", "sha512": "sha512-PTL4h2MLbKEqZ/9TE6SEmJp1txIh0GjzYPQrWGbfJ5sgbPrpXzb9sOoXe3cid51zDBE+2KCLd95e/04JiNr0TQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net462": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net47": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net471": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net472": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net48": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.2": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.1": ["System.Runtime.CompilerServices.Unsafe"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Threading", "version": "4.3.0", "sha512": "sha512-l6J1G9zmn6r5xU+DSp/Vxgx6eG+qUvQgdpgo28m1gEwfNyG6HqlF6h2ESDXZCYEPnngsmkTQ+q7MyyMMTNlaiA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Runtime", "System.Threading.Tasks"], "net6.0": ["System.Runtime", "System.Threading.Tasks"], "net7.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp1.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp1.1": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.1": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp2.2": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp3.0": ["System.Runtime", "System.Threading.Tasks"], "netcoreapp3.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard": [], "netstandard1.0": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.1": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.2": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.3": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.4": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.5": ["System.Runtime", "System.Threading.Tasks"], "netstandard1.6": ["System.Runtime", "System.Threading.Tasks"], "netstandard2.0": ["System.Runtime", "System.Threading.Tasks"], "netstandard2.1": ["System.Runtime", "System.Threading.Tasks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Threading.Tasks", "version": "4.3.0", "sha512": "sha512-fUiP+CyyCjs872OA8trl6p97qma/da1xGq3h4zAbJZk8zyaU4zyEfqW5vbkP80xG/Nimun1vlWBboMEk7XxdEw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net6.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "net7.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.2": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.3": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.4": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.5": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard1.6": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.0": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"], "netstandard2.1": ["Microsoft.NETCore.Platforms", "Microsoft.NETCore.Targets", "System.Runtime"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, ], ) diff --git a/dotnet/private/BUILD.bazel b/dotnet/private/BUILD.bazel index df5f6dae..86b23cb9 100644 --- a/dotnet/private/BUILD.bazel +++ b/dotnet/private/BUILD.bazel @@ -94,6 +94,7 @@ bzl_library( visibility = ["//dotnet:__subpackages__"], deps = [ ":providers", + ":semver", "@aspect_bazel_lib//lib:paths", "@bazel_skylib//lib:sets", ], @@ -117,6 +118,12 @@ bzl_library( visibility = ["//dotnet:__subpackages__"], ) +bzl_library( + name = "semver", + srcs = ["semver.bzl"], + visibility = ["//dotnet:__subpackages__"], +) + bzl_library( name = "toolchains_repo", srcs = ["toolchains_repo.bzl"], diff --git a/dotnet/private/common.bzl b/dotnet/private/common.bzl index 145c8fe7..3b6b498c 100644 --- a/dotnet/private/common.bzl +++ b/dotnet/private/common.bzl @@ -12,6 +12,7 @@ load( "NuGetInfo", ) load("//dotnet/private:rids.bzl", "RUNTIME_GRAPH") +load("//dotnet/private:semver.bzl", "semver") def _collect_transitive(): t = {} @@ -183,45 +184,42 @@ def is_greater_or_equal_framework(tfm1, tfm2): return True return False -def format_ref_arg(args, refs, targeting_pack_overrides): +def _format_ref_with_overrides(assembly): + return "-r:" + assembly.path + +def format_ref_arg(args, refs): """Takes Args: args: The args object that will be sent into the compilation action refs: List of all references that are being sent into the compilation action - targeting_pack_overrides: Dict of overrides that are declared by targeting packs Returns: The updated args object """ - def _format_ref_with_overrides(assembly): - # TODO: Make it a bit more robust - # We rely on the naming convention of nuget_archive/nuget_repo which isn't too nice - # We also need to handle the versions here and make sure that if the version of the dep is > version in targeting pack then do not skip - package_name = None - if assembly.path.startswith("external/nuget."): - package_name = assembly.path.lstrip("external/nuget.").split("/")[0].split(".v")[0] - if package_name and package_name in targeting_pack_overrides: - return None + args.add_all(refs, map_each = _format_ref_with_overrides) - return "-r:" + assembly.path + return args - args.add_all(refs, allow_closure = True, map_each = _format_ref_with_overrides) +def _find_ref_by_file_name(refs, file_name): + for ref in refs: + if ref.basename.lower().replace(".dll", "") == file_name.lower(): + return ref - return args + return None -def collect_compile_info(name, deps, private_deps, exports, strict_deps): +def collect_compile_info(name, deps, targeting_packs, exports, strict_deps): """Determine the transitive dependencies by the target framework. Args: name: The name of the assembly that is being compiled. deps: Dependencies that the compilation target depends on. - private_deps: Private dependencies that the compilation target depends on. + targeting_packs: Targeting packs that the compilation target depends on. exports: Exported targets strict_deps: Whether or not to use strict dependencies. Returns: - A collection of the overrides, references, analyzers and runfiles. + A collection of the references, analyzers and runfiles. """ direct_iref = [] direct_ref = [] @@ -231,68 +229,83 @@ def collect_compile_info(name, deps, private_deps, exports, strict_deps): direct_analyzers = [] transitive_analyzers = [] - direct_private_ref = [] - transitive_private_ref = [] - direct_private_analyzers = [] - transitive_private_analyzers = [] - exports_files = [] - overrides = {} - for dep in deps + private_deps: - if NuGetInfo in dep: - nuget_info = dep[NuGetInfo] + targeting_pack_overrides = {} + framework_list = {} + framework_files = [] + for targeting_pack in targeting_packs: + compile_info = targeting_pack[DotnetAssemblyCompileInfo] + nuget_info = targeting_pack[NuGetInfo] + + for override_name, override_version in nuget_info.targeting_pack_overrides.items(): + targeting_pack_overrides[override_name] = override_version + + for dll_name, dll_version in nuget_info.framework_list.items(): + framework_list[dll_name] = {"version": dll_version, "file": _find_ref_by_file_name(compile_info.refs, dll_name)} - for override_name, override_version in nuget_info.targeting_pack_overrides.items(): - # TODO: In case there are multiple overrides of the same package - # we should take the one with the highest version - # Need to get a semver comparison function to do that - overrides[override_name] = override_version + if len(nuget_info.framework_list) == 0: + framework_files.extend(compile_info.irefs) + + direct_analyzers.extend(compile_info.analyzers) + direct_compile_data.extend(compile_info.compile_data) for dep in deps: assembly = dep[DotnetAssemblyCompileInfo] - # See docs/ReferenceAssemblies.md for more info on why we use (and prefer) refout - # and the mechanics of irefout vs. prefout. - direct_iref.extend(assembly.irefs if name in assembly.internals_visible_to else assembly.refs) - direct_ref.extend(assembly.refs) - direct_analyzers.extend(assembly.analyzers) - direct_compile_data.extend(assembly.compile_data) + add_to_output = True + if assembly.name.lower() in targeting_pack_overrides: + if semver.to_comparable(assembly.version) > semver.to_comparable(targeting_pack_overrides[assembly.name.lower()], relaxed = True): + framework_list.pop(assembly.name.lower()) + add_to_output = True + else: + add_to_output = False + elif assembly.name.lower() in framework_list: + if semver.to_comparable(assembly.version) > semver.to_comparable(framework_list[assembly.name.lower()].get("version"), relaxed = True): + framework_list.pop(assembly.name.lower()) + add_to_output = True + else: + add_to_output = False + + if add_to_output: + direct_iref.extend(assembly.irefs if name in assembly.internals_visible_to else assembly.refs) + direct_ref.extend(assembly.refs) + direct_analyzers.extend(assembly.analyzers) + direct_compile_data.extend(assembly.compile_data) # We take all the exports of each dependency and add them # to the direct refs. direct_iref.extend(assembly.exports) + # This is not a complete solution since we are not comparing assembly versions + # Transitive dependency resolution is very complicated. if not strict_deps: - transitive_ref.append(assembly.transitive_refs) + for transitive_assembly in assembly.transitive_refs.to_list(): + add_to_output = True + if transitive_assembly.basename.replace(".dll", "").lower() in targeting_pack_overrides: + add_to_output = False + elif transitive_assembly.basename.replace(".dll", "").lower() in framework_list: + add_to_output = False + if add_to_output: + transitive_ref.append(transitive_assembly) transitive_analyzers.append(assembly.transitive_analyzers) transitive_compile_data.append(assembly.transitive_compile_data) - for dep in private_deps: - assembly = dep[DotnetAssemblyCompileInfo] - - direct_private_ref.extend(assembly.irefs if name in assembly.internals_visible_to else assembly.refs) - direct_private_analyzers.extend(assembly.analyzers) - direct_compile_data.extend(assembly.compile_data) - - if not strict_deps: - transitive_private_ref.append(assembly.transitive_refs) - transitive_private_analyzers.append(assembly.transitive_analyzers) - transitive_compile_data.append(assembly.transitive_compile_data) + for file in framework_list.values(): + if file["file"] != None: + framework_files.append(file["file"]) for export in exports: assembly = export[DotnetAssemblyCompileInfo] exports_files.extend(assembly.refs) return ( - depset(direct = direct_iref, transitive = transitive_ref), - depset(direct = direct_ref, transitive = transitive_ref), + depset(direct = direct_iref, transitive = [depset(transitive_ref)]), + depset(direct = direct_ref, transitive = [depset(transitive_ref)]), depset(direct = direct_analyzers, transitive = transitive_analyzers), depset(direct = direct_compile_data, transitive = transitive_compile_data), - depset(direct = direct_private_ref, transitive = transitive_private_ref), - depset(direct = direct_private_analyzers, transitive = transitive_private_analyzers), + framework_files, exports_files, - overrides, ) def collect_transitive_runfiles(ctx, assembly_runtime_info, deps): diff --git a/dotnet/private/providers.bzl b/dotnet/private/providers.bzl index 0118eaec..352a7930 100644 --- a/dotnet/private/providers.bzl +++ b/dotnet/private/providers.bzl @@ -50,6 +50,7 @@ NuGetInfo = provider( doc = "Information about a NuGet package.", fields = { "targeting_pack_overrides": "map[string, string]: Targeting packs like e.g. Microsoft.NETCore.App.Ref have a PackageOverride.txt that includes a list of NuGet packages that should be omitted in a compiliation because they are included in the targeting pack", + "framework_list": "map[string, string]: Targeting packs like e.g. Microsoft.NETCore.App.Ref have a FrameworkList.xml that includes a list of the DLLs in the targeting pack. This is used for selecting the correct DLL versions during compilation and runtime.", "sha512": "string: the SHA512 SRI string for the package", }, ) diff --git a/dotnet/private/rules/common/attrs.bzl b/dotnet/private/rules/common/attrs.bzl index 56d6498d..72b330f8 100644 --- a/dotnet/private/rules/common/attrs.bzl +++ b/dotnet/private/rules/common/attrs.bzl @@ -75,15 +75,23 @@ COMMON_ATTRS = { "internals_visible_to": attr.string_list( doc = "Other libraries that can see the assembly's internal symbols. Using this rather than the InternalsVisibleTo assembly attribute will improve build caching.", ), - "private_deps": attr.label_list( + "targeting_packs": attr.label_list( doc = """Private dependencies - This attribute should be used for dependencies are only private to the target. - The dependencies will not be propagated transitively to parent targets and - do not become part of the targets runfiles. + The targeting packs that should be used to build the target. + You should use a targeting pack that targets the same framework as the target. + There can be multiple runtime packs for a given target e.g. when a AspNetCore + application is built you need the base runtime pack and the AspNetCore runtime pack. + Example runtime packs: + https://www.nuget.org/packages/NETStandard.Library - .Net Standard 2.0 + https://www.nuget.org/packages/NETStandard.Library.Ref - .Net Standard 2.1 + https://www.nuget.org/packages/Microsoft.NETCore.App.Ref/7.0.11 - .Net 7.0.11 + https://www.nuget.org/packages/Microsoft.AspNetCore.App.Ref/7.0.11 - AspNetCore 7.0.11 + """, providers = [DotnetAssemblyCompileInfo, DotnetAssemblyRuntimeInfo], cfg = tfm_transition, + allow_empty = False, ), "treat_warnings_as_errors": attr.bool( doc = "Treat all compiler warnings as errors. Note that this attribute can not be used in conjunction with warnings_as_errors.", diff --git a/dotnet/private/rules/csharp/actions/csharp_assembly.bzl b/dotnet/private/rules/csharp/actions/csharp_assembly.bzl index 2a54e246..231407b0 100644 --- a/dotnet/private/rules/csharp/actions/csharp_assembly.bzl +++ b/dotnet/private/rules/csharp/actions/csharp_assembly.bzl @@ -58,7 +58,7 @@ def AssemblyAction( defines, deps, exports, - private_deps, + targeting_packs, internals_visible_to, keyfile, langversion, @@ -93,7 +93,7 @@ def AssemblyAction( defines: The list of conditional compilation symbols. deps: The list of other libraries to be linked in to the assembly. exports: List of exported targets. - private_deps: The list of libraries that are private to the target. These deps are not passed transitively. + targeting_packs: The list of targeting packs to be used. internals_visible_to: An optional list of assemblies that can see this assemblies internal symbols. keyfile: Specifies a strong name key file of the assembly. langversion: Specify language version: Default, ISO-1, ISO-2, 3, 4, 5, 6, 7, 7.1, 7.2, 7.3, or Latest @@ -127,14 +127,12 @@ def AssemblyAction( prefs, analyzers, transitive_compile_data, - private_refs, - private_analyzers, + framework_files, exports_files, - overrides, ) = collect_compile_info( assembly_name, deps + [toolchain.host_model] if include_host_model_dll else deps, - private_deps, + targeting_packs, exports, strict_deps, ) @@ -156,15 +154,13 @@ def AssemblyAction( compiler_wrapper, additionalfiles, analyzers, - private_analyzers, debug, default_lang_version, defines, keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs, depset(compile_data, transitive = [transitive_compile_data]), @@ -201,15 +197,13 @@ def AssemblyAction( compiler_wrapper, additionalfiles, analyzers, - private_analyzers, debug, default_lang_version, defines, keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs + [internals_visible_to_cs], depset(compile_data, transitive = [transitive_compile_data]), @@ -236,15 +230,13 @@ def AssemblyAction( compiler_wrapper, additionalfiles, analyzers, - private_analyzers, debug, default_lang_version, defines, keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs, depset(compile_data, transitive = [transitive_compile_data]), @@ -296,15 +288,13 @@ def _compile( compiler_wrapper, additionalfiles, analyzer_assemblies, - private_analyzer_assemblies, debug, default_lang_version, defines, keyfile, langversion, refs, - private_refs, - overrides, + framework_files, resources, srcs, compile_data, @@ -394,11 +384,10 @@ def _compile( outputs.append(out_xml) # assembly references - format_ref_arg(args, depset(transitive = [private_refs, refs]), overrides) + format_ref_arg(args, depset(framework_files, transitive = [refs])) # analyzers args.add_all(analyzer_assemblies, format_each = "/analyzer:%s") - args.add_all(private_analyzer_assemblies, format_each = "/analyzer:%s") args.add_all(additionalfiles, format_each = "/additionalfile:%s") # .cs files @@ -429,8 +418,8 @@ def _compile( mnemonic = "CSharpCompile", progress_message = "Compiling " + target_name + (" (internals ref-only dll)" if out_dll == None else ""), inputs = depset( - direct = direct_inputs + [compiler_wrapper, toolchain.runtime.files_to_run.executable], - transitive = [private_refs, refs, analyzer_assemblies, private_analyzer_assemblies, toolchain.runtime.default_runfiles.files, toolchain.csharp_compiler.default_runfiles.files, compile_data], + direct = direct_inputs + framework_files + [compiler_wrapper, toolchain.runtime.files_to_run.executable], + transitive = [refs, analyzer_assemblies, toolchain.runtime.default_runfiles.files, toolchain.csharp_compiler.default_runfiles.files, compile_data], ), outputs = outputs, executable = compiler_wrapper, diff --git a/dotnet/private/rules/csharp/binary.bzl b/dotnet/private/rules/csharp/binary.bzl index af49bb2a..2ac605a2 100644 --- a/dotnet/private/rules/csharp/binary.bzl +++ b/dotnet/private/rules/csharp/binary.bzl @@ -23,7 +23,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = [], - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/csharp/library.bzl b/dotnet/private/rules/csharp/library.bzl index 076e4e3b..7d9d3854 100644 --- a/dotnet/private/rules/csharp/library.bzl +++ b/dotnet/private/rules/csharp/library.bzl @@ -22,7 +22,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = ctx.attr.exports, - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/csharp/test.bzl b/dotnet/private/rules/csharp/test.bzl index b78f9b0a..a5da06ff 100644 --- a/dotnet/private/rules/csharp/test.bzl +++ b/dotnet/private/rules/csharp/test.bzl @@ -25,7 +25,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = [], - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/fsharp/actions/fsharp_assembly.bzl b/dotnet/private/rules/fsharp/actions/fsharp_assembly.bzl index dde4d1b7..97540cdc 100644 --- a/dotnet/private/rules/fsharp/actions/fsharp_assembly.bzl +++ b/dotnet/private/rules/fsharp/actions/fsharp_assembly.bzl @@ -76,7 +76,7 @@ def AssemblyAction( defines, deps, exports, - private_deps, + targeting_packs, internals_visible_to, keyfile, langversion, @@ -107,7 +107,7 @@ def AssemblyAction( defines: The list of conditional compilation symbols. deps: The list of other libraries to be linked in to the assembly. exports: List of exported targets. - private_deps: The list of libraries that are private to the target. These deps are not passed transitively. + targeting_packs: The list of targeting packs to be used. internals_visible_to: An optional list of assemblies that can see this assemblies internal symbols. keyfile: Specifies a strong name key file of the assembly. langversion: Specify language version: Default, ISO-1, ISO-2, 3, 4, 5, 6, 7, 7.1, 7.2, 7.3, or Latest @@ -139,14 +139,12 @@ def AssemblyAction( prefs, analyzers, transitive_compile_data, - private_refs, - _private_analyzers, + framework_files, exports_files, - overrides, ) = collect_compile_info( assembly_name, deps, - private_deps, + targeting_packs, exports, strict_deps, ) @@ -169,8 +167,7 @@ def AssemblyAction( keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs, depset(compile_data, transitive = [transitive_compile_data]), @@ -207,8 +204,7 @@ def AssemblyAction( keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs + [internals_visible_to_fs], depset(compile_data, transitive = [transitive_compile_data]), @@ -237,8 +233,7 @@ def AssemblyAction( keyfile, langversion, irefs, - private_refs, - overrides, + framework_files, resources, srcs, depset(compile_data, transitive = [transitive_compile_data]), @@ -291,8 +286,7 @@ def _compile( keyfile, langversion, refs, - private_refs, - overrides, + framework_files, resources, srcs, compile_data, @@ -373,7 +367,7 @@ def _compile( outputs.append(out_xml) # assembly references - format_ref_arg(args, depset(transitive = [private_refs, refs]), overrides) + format_ref_arg(args, depset(framework_files, transitive = [refs])) # .fs files args.add_all(srcs) @@ -402,8 +396,8 @@ def _compile( mnemonic = "FSharpCompile", progress_message = "Compiling " + target_name + (" (internals ref-only dll)" if out_dll == None else ""), inputs = depset( - direct = direct_inputs + [compiler_wrapper, toolchain.runtime.files_to_run.executable], - transitive = [refs, private_refs, toolchain.runtime.default_runfiles.files, toolchain.fsharp_compiler.default_runfiles.files, compile_data], + direct = direct_inputs + framework_files + [compiler_wrapper, toolchain.runtime.files_to_run.executable], + transitive = [refs, toolchain.runtime.default_runfiles.files, toolchain.fsharp_compiler.default_runfiles.files, compile_data], ), outputs = outputs, executable = compiler_wrapper, diff --git a/dotnet/private/rules/fsharp/binary.bzl b/dotnet/private/rules/fsharp/binary.bzl index 4f9caf88..ae6d4ec1 100644 --- a/dotnet/private/rules/fsharp/binary.bzl +++ b/dotnet/private/rules/fsharp/binary.bzl @@ -21,7 +21,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = [], - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/fsharp/library.bzl b/dotnet/private/rules/fsharp/library.bzl index 62561942..bc9e7584 100644 --- a/dotnet/private/rules/fsharp/library.bzl +++ b/dotnet/private/rules/fsharp/library.bzl @@ -22,7 +22,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = ctx.attr.exports, - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/fsharp/test.bzl b/dotnet/private/rules/fsharp/test.bzl index 5e03c116..d0e30bfd 100644 --- a/dotnet/private/rules/fsharp/test.bzl +++ b/dotnet/private/rules/fsharp/test.bzl @@ -24,7 +24,7 @@ def _compile_action(ctx, tfm): defines = ctx.attr.defines, deps = ctx.attr.deps, exports = [], - private_deps = ctx.attr.private_deps, + targeting_packs = ctx.attr.targeting_packs, internals_visible_to = ctx.attr.internals_visible_to, keyfile = ctx.file.keyfile, langversion = ctx.attr.langversion, diff --git a/dotnet/private/rules/nuget/imports.bzl b/dotnet/private/rules/nuget/imports.bzl index ea40ed30..a43b3d0a 100644 --- a/dotnet/private/rules/nuget/imports.bzl +++ b/dotnet/private/rules/nuget/imports.bzl @@ -16,10 +16,8 @@ def _import_library(ctx): prefs, analyzers, _compile_data, - _private_refs, - _private_analyzers, + _framework_files, _exports, - _overrides, ) = collect_compile_info( ctx.label.name, ctx.attr.deps, @@ -30,6 +28,7 @@ def _import_library(ctx): nuget_info = NuGetInfo( targeting_pack_overrides = ctx.attr.targeting_pack_overrides, + framework_list = ctx.attr.framework_list, sha512 = ctx.attr.sha512, ) @@ -114,6 +113,10 @@ import_library = rule( doc = "Targeting packs like e.g. Microsoft.NETCore.App.Ref have a PackageOverride.txt that includes a list of NuGet packages that should be omitted in a compiliation because they are included in the targeting pack", default = {}, ), + "framework_list": attr.string_dict( + doc = "Targeting packs like e.g. Microsoft.NETCore.App.Ref have a PlatformManifest.txt that includes all the DLLs that are included in the targeting pack. This is used to determine which version of a DLL should be used during compilation or runtime.", + default = {}, + ), "sha512": attr.string( doc = "The SHA512 sum of the NuGet package", ), diff --git a/dotnet/private/rules/nuget/nuget_repo.bzl b/dotnet/private/rules/nuget/nuget_repo.bzl index 77c2a675..57a2b2aa 100644 --- a/dotnet/private/rules/nuget/nuget_repo.bzl +++ b/dotnet/private/rules/nuget/nuget_repo.bzl @@ -20,6 +20,7 @@ def _nuget_repo_impl(ctx): # deps.append(dep) targeting_pack_overrides = ctx.attr.targeting_pack_overrides[name.lower()] + framework_list = ctx.attr.framework_list[name.lower()] template = Label("@rules_dotnet//dotnet/private/rules/nuget:template.BUILD") ctx.template("{}/{}/BUILD.bazel".format(name.lower(), version), template, { @@ -29,6 +30,7 @@ def _nuget_repo_impl(ctx): "{VERSION}": version, "{DEPS}": ",".join(["\n \"@rules_dotnet//dotnet:tfm_{tfm}\": [{deps_list}]".format(tfm = tfm, deps_list = ",".join(["\"@{nuget_repo_name}//{dep_name}\"".format(dep_name = d.lower(), nuget_repo_name = ctx.name.lower()) for d in tfm_deps])) for (tfm, tfm_deps) in deps.items()]), "{TARGETING_PACK_OVERRIDES}": json.encode({override.lower().split("|")[0]: override.lower().split("|")[1] for override in targeting_pack_overrides}), + "{FRAMEWORK_LIST}": json.encode({override.lower().split("|")[0]: override.lower().split("|")[1] for override in framework_list}), "{SHA_512}": sha512, }) @@ -49,6 +51,10 @@ _nuget_repo = repository_rule( allow_empty = True, default = {}, ), + "framework_list": attr.string_list_dict( + allow_empty = True, + default = {}, + ), }, ) @@ -76,4 +82,5 @@ def nuget_repo(name, packages): name = name, packages = [json.encode(package) for package in packages], targeting_pack_overrides = {"{}".format(package["id"].lower()): package["targeting_pack_overrides"] for package in packages}, + framework_list = {"{}".format(package["id"].lower()): package["framework_list"] for package in packages}, ) diff --git a/dotnet/private/rules/nuget/template.BUILD b/dotnet/private/rules/nuget/template.BUILD index 783f025f..47fd3629 100644 --- a/dotnet/private/rules/nuget/template.BUILD +++ b/dotnet/private/rules/nuget/template.BUILD @@ -6,6 +6,7 @@ import_library( name = "{VERSION}", analyzers = ["@{PREFIX}.{NAME_LOWER}.v{VERSION}//:analyzers"], data = ["@{PREFIX}.{NAME_LOWER}.v{VERSION}//:data"], + framework_list = {FRAMEWORK_LIST}, library_name = "{NAME}", libs = ["@{PREFIX}.{NAME_LOWER}.v{VERSION}//:libs"], native = ["@{PREFIX}.{NAME_LOWER}.v{VERSION}//:native"], diff --git a/dotnet/private/semver.bzl b/dotnet/private/semver.bzl new file mode 100644 index 00000000..eef96b77 --- /dev/null +++ b/dotnet/private/semver.bzl @@ -0,0 +1,82 @@ +# Copyright 2023 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"Semver utilities." + +visibility([ + "//dotnet/private/tests/semver/...", +]) + +# Compares lower than any non-numeric identifier. +_COMPARES_LOWEST_SENTINEL = "" + +# Compares higher than any valid non-numeric identifier (containing only [A-Za-z0-9-]). +_COMPARES_HIGHEST_SENTINEL = "{" + +def _identifier_to_comparable(ident, *, numeric_only): + if not ident: + fail("Identifiers in semantic version strings must not be empty") + if ident.isdigit(): + if ident[0] == "0" and ident != "0": + fail("Numeric identifiers in semantic version strings must not include leading zeroes") + + # 11.4.1: + # "Identifiers consisting of only digits are compared numerically." + # 11.4.3: + # "Numeric identifiers always have lower precedence than non-numeric identifiers." + return (_COMPARES_LOWEST_SENTINEL, int(ident)) + elif numeric_only: + fail("Expected a numeric identifier, got: " + ident) + else: + # 11.4.2: + # "Identifiers with letters or hyphens are compared lexically in ASCII sort order." + return (ident,) + +def _semver_to_comparable(v, *, relaxed = False): + """ + Parses a string representation of a semver version into an opaque comparable object. + + Args: + v: The string representation of the version. + relaxed: If true, the release version string is allowed to have an arbitrary number of + dot-separated components, each of which is allowed to contain the same set of characters + as a pre-release segment. This is the version string format used by Bazel modules. + """ + + # Strip build metadata as it is not relevant for comparisons. + v, _, _ = v.partition("+") + + release_str, _, prerelease_str = v.partition("-") + if prerelease_str: + # 11.4.4: + # "A larger set of pre-release fields has a higher precedence than a smaller set, if all of the preceding + # identifiers are equal." + prerelease = [_identifier_to_comparable(ident, numeric_only = False) for ident in prerelease_str.split(".")] + else: + # 11.3: + # "When major, minor, and patch are equal, a pre-release version has lower precedence than a normal version." + prerelease = [(_COMPARES_HIGHEST_SENTINEL,)] + + release = release_str.split(".") + if not relaxed and len(release) != 3: + fail("Semantic version strings must have exactly three dot-separated components, got: " + v) + + return ( + tuple([_identifier_to_comparable(s, numeric_only = not relaxed) for s in release]), + tuple(prerelease), + ) + +semver = struct( + to_comparable = _semver_to_comparable, +) diff --git a/dotnet/private/tests/csharp_nullable/BUILD.bazel b/dotnet/private/tests/csharp_nullable/BUILD.bazel index c032c961..8015498f 100644 --- a/dotnet/private/tests/csharp_nullable/BUILD.bazel +++ b/dotnet/private/tests/csharp_nullable/BUILD.bazel @@ -8,20 +8,20 @@ csharp_library( name = "Nullable", srcs = ["nullable.cs"], nullable = "enable", - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], treat_warnings_as_errors = True, ) csharp_nunit_test( name = "NullableTest", srcs = ["nullabletest.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":Nullable", ], diff --git a/dotnet/private/tests/csharp_unsafe/BUILD.bazel b/dotnet/private/tests/csharp_unsafe/BUILD.bazel index 0835409f..49f5078f 100644 --- a/dotnet/private/tests/csharp_unsafe/BUILD.bazel +++ b/dotnet/private/tests/csharp_unsafe/BUILD.bazel @@ -8,19 +8,19 @@ csharp_library( name = "Unsafe", srcs = ["unsafe.cs"], allow_unsafe_blocks = True, - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], ) csharp_nunit_test( name = "UnsafeTest", srcs = ["unsafetest.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":Unsafe", ], diff --git a/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/BUILD.bazel b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/BUILD.bazel new file mode 100644 index 00000000..fa7f014e --- /dev/null +++ b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/BUILD.bazel @@ -0,0 +1,21 @@ +load( + "@rules_dotnet//dotnet:defs.bzl", + "csharp_nunit_test", +) + +# This test makes sure that if we are depending on a package that is also included +# in a targeting pack that we chooset the highest version. +# Example: Microsoft.NETCore.App.Ref 6.0.0 contains the System.Text.Json reference DLL, but we +# can also depend on System.Text.Json 7.0.0 as a NuGet package. In that case we should use the +# 7.0.0 NuGet package and not the 6.0.0 targeting pack. +csharp_nunit_test( + name = "main", + srcs = ["Test.cs"], + target_frameworks = ["net6.0"], + targeting_packs = [ + "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", + ], + deps = [ + "@rules_dotnet_dev_nuget_packages//system.text.json", + ], +) diff --git a/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/Test.cs b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/Test.cs new file mode 100644 index 00000000..0ee72e6d --- /dev/null +++ b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/Test.cs @@ -0,0 +1,17 @@ +using NUnit.Framework; +using System.Text.Json; + +[TestFixture] +public sealed class LibTests +{ + [Test] + public void ShouldResolveCToNetStandard21() + { + var options = new JsonSerializerOptions + { + WriteIndented = true + }; + Assert.AreEqual(true, true); + } +} + diff --git a/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/conflicting_targeting_pack_deps.csproj b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/conflicting_targeting_pack_deps.csproj new file mode 100644 index 00000000..a4158539 --- /dev/null +++ b/dotnet/private/tests/dependency_resolution/conflicting_targeting_pack_deps/conflicting_targeting_pack_deps.csproj @@ -0,0 +1,19 @@ + + + + net6.0 + false + false + + + + + + + + + + + + + diff --git a/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_direct_d/BUILD.bazel b/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_direct_d/BUILD.bazel index 47ff5f65..6de063a2 100644 --- a/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_direct_d/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_direct_d/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_nunit_test( name = "a", srcs = ["a.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "//dotnet/private/tests/dependency_resolution/diamond_dependencies/ab", "//dotnet/private/tests/dependency_resolution/diamond_dependencies/ac", diff --git a/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_only_transitive_d/BUILD.bazel b/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_only_transitive_d/BUILD.bazel index fb4b4a0e..6da11019 100644 --- a/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_only_transitive_d/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/diamond_dependencies/a_with_only_transitive_d/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_nunit_test( name = "a", srcs = ["a.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "//dotnet/private/tests/dependency_resolution/diamond_dependencies/ab", "//dotnet/private/tests/dependency_resolution/diamond_dependencies/ac", diff --git a/dotnet/private/tests/dependency_resolution/diamond_dependencies/ab/BUILD.bazel b/dotnet/private/tests/dependency_resolution/diamond_dependencies/ab/BUILD.bazel index 8b6097d8..c9f039f4 100644 --- a/dotnet/private/tests/dependency_resolution/diamond_dependencies/ab/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/diamond_dependencies/ab/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_library( name = "ab", srcs = ["ab.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//visibility:public"], deps = [ "//dotnet/private/tests/dependency_resolution/diamond_dependencies/d", diff --git a/dotnet/private/tests/dependency_resolution/diamond_dependencies/ac/BUILD.bazel b/dotnet/private/tests/dependency_resolution/diamond_dependencies/ac/BUILD.bazel index 24e6d444..822682f8 100644 --- a/dotnet/private/tests/dependency_resolution/diamond_dependencies/ac/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/diamond_dependencies/ac/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_library( name = "ac", srcs = ["ac.cs"], - private_deps = [ + target_frameworks = ["netstandard2.1"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//netstandard.library.ref", ], - target_frameworks = ["netstandard2.1"], visibility = ["//visibility:public"], deps = [ "//dotnet/private/tests/dependency_resolution/diamond_dependencies/d", diff --git a/dotnet/private/tests/dependency_resolution/diamond_dependencies/d/BUILD.bazel b/dotnet/private/tests/dependency_resolution/diamond_dependencies/d/BUILD.bazel index dee972b4..a42a5196 100644 --- a/dotnet/private/tests/dependency_resolution/diamond_dependencies/d/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/diamond_dependencies/d/BUILD.bazel @@ -6,17 +6,17 @@ load( csharp_library( name = "d", srcs = ["d.cs"], - private_deps = select({ + target_frameworks = [ + "net6.0", + "netstandard2.1", + ], + targeting_packs = select({ "@rules_dotnet//dotnet:tfm_net6.0": ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], "@rules_dotnet//dotnet:tfm_netstandard2.1": ["@rules_dotnet_dev_nuget_packages//netstandard.library.ref"], # TODO: look into why this is needed in Bazel 7 but not 6 # The transition should be taking care of transitioning to a valid config for this select "//conditions:default": [], }), - target_frameworks = [ - "net6.0", - "netstandard2.1", - ], visibility = ["//visibility:public"], deps = [], ) diff --git a/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netcore/BUILD.bazel b/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netcore/BUILD.bazel index 9c8845cb..801d9929 100644 --- a/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netcore/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netcore/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_nunit_test( name = "netcore", srcs = ["netcore.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "//dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netstandardlib", ], diff --git a/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netstandardlib/BUILD.bazel b/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netstandardlib/BUILD.bazel index 6227ad47..fca3240c 100644 --- a/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netstandardlib/BUILD.bazel +++ b/dotnet/private/tests/dependency_resolution/netcore_to_netstandard/netstandardlib/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_library( name = "netstandardlib", srcs = ["netstandardlib.cs"], - private_deps = [ + target_frameworks = ["netstandard2.1"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//netstandard.library.ref", ], - target_frameworks = ["netstandard2.1"], visibility = ["//visibility:public"], deps = [ ], diff --git a/dotnet/private/tests/exports/BUILD.bazel b/dotnet/private/tests/exports/BUILD.bazel index 7d11e0ce..8a2fb48a 100644 --- a/dotnet/private/tests/exports/BUILD.bazel +++ b/dotnet/private/tests/exports/BUILD.bazel @@ -3,16 +3,16 @@ load("//dotnet:defs.bzl", "fsharp_library") fsharp_library( name = "a", srcs = ["a.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], deps = [":b"], ) fsharp_library( name = "b", srcs = ["b.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], exports = [":c"], deps = [":c"], ) @@ -20,6 +20,6 @@ fsharp_library( fsharp_library( name = "c", srcs = ["c.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], ) diff --git a/dotnet/private/tests/native_dependencies/BUILD.bazel b/dotnet/private/tests/native_dependencies/BUILD.bazel index cb8f3110..cff7d723 100644 --- a/dotnet/private/tests/native_dependencies/BUILD.bazel +++ b/dotnet/private/tests/native_dependencies/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_nunit_test( name = "native_dependencies", srcs = ["native_dependencies.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = [ "net6.0", ], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], visibility = ["//visibility:public"], deps = ["@rules_dotnet_dev_nuget_packages//libgit2sharp"], ) diff --git a/dotnet/private/tests/out/csharp/BUILD.bazel b/dotnet/private/tests/out/csharp/BUILD.bazel index 222a531a..31e861e6 100644 --- a/dotnet/private/tests/out/csharp/BUILD.bazel +++ b/dotnet/private/tests/out/csharp/BUILD.bazel @@ -10,10 +10,10 @@ csharp_nunit_test( name = "lib_test", srcs = ["libtest.cs"], out = "OtherLibTest", - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], @@ -27,9 +27,9 @@ csharp_library( internals_visible_to = [ "OtherLibTest", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [], ) diff --git a/dotnet/private/tests/out/fsharp/BUILD.bazel b/dotnet/private/tests/out/fsharp/BUILD.bazel index df99a4d0..4ae3bea1 100644 --- a/dotnet/private/tests/out/fsharp/BUILD.bazel +++ b/dotnet/private/tests/out/fsharp/BUILD.bazel @@ -10,10 +10,10 @@ fsharp_nunit_test( name = "lib_test", srcs = ["libtest.fs"], out = "OtherLibTest", - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", "@rules_dotnet_dev_nuget_packages//fsharp.core", @@ -28,10 +28,10 @@ fsharp_library( internals_visible_to = [ "OtherLibTest", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@rules_dotnet_dev_nuget_packages//fsharp.core", ], diff --git a/dotnet/private/tests/publish/app_to_publish/BUILD.bazel b/dotnet/private/tests/publish/app_to_publish/BUILD.bazel index 45f44bc9..4280a9f3 100644 --- a/dotnet/private/tests/publish/app_to_publish/BUILD.bazel +++ b/dotnet/private/tests/publish/app_to_publish/BUILD.bazel @@ -7,10 +7,10 @@ csharp_binary( name = "app_to_publish", srcs = ["Main.cs"], data = ["nested/runfiles/data-file"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//dotnet/private/tests/publish:__subpackages__"], deps = [ "@rules_dotnet//tools/runfiles", diff --git a/dotnet/private/tests/publish/framework_dependent/BUILD.bazel b/dotnet/private/tests/publish/framework_dependent/BUILD.bazel index 9b8aafc8..14c38852 100644 --- a/dotnet/private/tests/publish/framework_dependent/BUILD.bazel +++ b/dotnet/private/tests/publish/framework_dependent/BUILD.bazel @@ -19,10 +19,10 @@ publish_binary( csharp_binary( name = "toolchain_provider", srcs = ["hello.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ], ) diff --git a/dotnet/private/tests/runfiles/BUILD.bazel b/dotnet/private/tests/runfiles/BUILD.bazel index f400bce9..72b62fe4 100644 --- a/dotnet/private/tests/runfiles/BUILD.bazel +++ b/dotnet/private/tests/runfiles/BUILD.bazel @@ -7,10 +7,10 @@ csharp_nunit_test( name = "runfiles_test", srcs = ["RunfilesTest.cs"], data = ["nested_folder/data-file"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@rules_dotnet//tools/runfiles", ], diff --git a/dotnet/private/tests/semver/BUILD.bazel b/dotnet/private/tests/semver/BUILD.bazel new file mode 100644 index 00000000..54e720b6 --- /dev/null +++ b/dotnet/private/tests/semver/BUILD.bazel @@ -0,0 +1,3 @@ +load(":semver_test.bzl", "semver_test_suite") + +semver_test_suite(name = "semver_test") diff --git a/dotnet/private/tests/semver/semver_test.bzl b/dotnet/private/tests/semver/semver_test.bzl new file mode 100644 index 00000000..94343c36 --- /dev/null +++ b/dotnet/private/tests/semver/semver_test.bzl @@ -0,0 +1,86 @@ +"Semver tests" + +load("@bazel_skylib//lib:unittest.bzl", "asserts", "unittest") +load("//dotnet/private:semver.bzl", "semver") + +_SORTED_TEST_VERSIONS = [ + "0.1-a", + "0.1", + "1.0.0-0.3.7", + "1.0.0-alpha", + "1.0.0-alpha+001", + "1.0.0-alpha.1", + "1.0.0-alpha.beta", + "1.0.0-beta+exp.sha.5114f85", + "1.0.0-beta", + "1.0.0-beta.2", + "1.0.0-beta.11", + "1.0.0-rc.1", + "1.0.0-x.7.z.92", + "1.0.0-x-y-z.--", + "1.0.0+21AF26D3----117B344092BD", + "1.0.0+20130313144700", + "1.0.0", + "2.0.0", + "2.1.0", + "2.1.1-0", + "2.1.1", + "2.1.1.0", + "2.1.1.1-a", + "2.1.1.1", + "2.1.1.a", + "2.1.2", + "3", + "a", +] + +_SCRAMBLED_TEST_VERSIONS = { + "a": True, + "3": True, + "2.1.2": False, + "2.1.1.a": True, + "2.1.1.1": True, + "2.1.1.1-a": True, + "2.1.1.0": True, + "2.1.1": False, + "2.1.1-0": False, + "2.1.0": False, + "2.0.0": False, + "1.0.0+21AF26D3----117B344092BD": False, + "1.0.0+20130313144700": False, + "1.0.0": False, + "1.0.0-x.7.z.92": False, + "1.0.0-x-y-z.--": False, + "1.0.0-rc.1": False, + "1.0.0-beta.11": False, + "1.0.0-beta.2": False, + "1.0.0-beta+exp.sha.5114f85": False, + "1.0.0-beta": False, + "1.0.0-alpha.beta": False, + "1.0.0-alpha.1": False, + "1.0.0-alpha": False, + "1.0.0-alpha+001": False, + "1.0.0-0.3.7": False, + "0.1-a": True, + "0.1": True, +} + +def _semver_test_impl(ctx): + env = unittest.begin(ctx) + asserts.equals( + env, + _SORTED_TEST_VERSIONS, + sorted( + _SCRAMBLED_TEST_VERSIONS.keys(), + key = lambda x: semver.to_comparable(x, relaxed = _SCRAMBLED_TEST_VERSIONS[x]), + ), + ) + return unittest.end(env) + +semver_test = unittest.make(_semver_test_impl) + +def semver_test_suite(name): + unittest.suite( + name, + semver_test, + ) diff --git a/dotnet/private/tests/use_as_tool/csharp/BUILD.bazel b/dotnet/private/tests/use_as_tool/csharp/BUILD.bazel index a96cbf70..76b6cea9 100644 --- a/dotnet/private/tests/use_as_tool/csharp/BUILD.bazel +++ b/dotnet/private/tests/use_as_tool/csharp/BUILD.bazel @@ -16,10 +16,10 @@ load("@rules_dotnet//dotnet/private/tests/use_as_tool/run_shell_rule:run_shell_r csharp_binary( name = "main", srcs = ["main.cs"], - private_deps = [ + target_frameworks = ["net7.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net7.0"], deps = [ ":lib", ], @@ -28,10 +28,10 @@ csharp_binary( csharp_library( name = "lib", srcs = ["lib.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [], ) @@ -104,10 +104,10 @@ csharp_binary( data = [ ":run", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], diff --git a/dotnet/private/tests/use_as_tool/fsharp/BUILD.bazel b/dotnet/private/tests/use_as_tool/fsharp/BUILD.bazel index 29ebe192..d278b30e 100644 --- a/dotnet/private/tests/use_as_tool/fsharp/BUILD.bazel +++ b/dotnet/private/tests/use_as_tool/fsharp/BUILD.bazel @@ -16,10 +16,10 @@ load("@rules_dotnet//dotnet/private/tests/use_as_tool/run_shell_rule:run_shell_r fsharp_binary( name = "main", srcs = ["main.fs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], @@ -28,10 +28,10 @@ fsharp_binary( fsharp_library( name = "lib", srcs = ["lib.fs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [], ) diff --git a/dotnet/private/tests/warning_settings/csharp_warnings.bzl b/dotnet/private/tests/warning_settings/csharp_warnings.bzl index 1716068d..87acc845 100644 --- a/dotnet/private/tests/warning_settings/csharp_warnings.bzl +++ b/dotnet/private/tests/warning_settings/csharp_warnings.bzl @@ -37,7 +37,7 @@ def csharp_warnings(): csharp_library( name = "csharp", srcs = ["warnings.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], tags = ["manual"], ) @@ -73,7 +73,7 @@ def csharp_warnings(): csharp_library( name = "csharp_all_warnings", srcs = ["warnings.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], treat_warnings_as_errors = True, tags = ["manual"], @@ -89,7 +89,7 @@ def csharp_warnings(): csharp_library( name = "csharp_warnings_as_errors", srcs = ["warnings.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], warnings_as_errors = ["CS0025", "CS0026"], tags = ["manual"], @@ -105,7 +105,7 @@ def csharp_warnings(): csharp_library( name = "csharp_warnings_not_as_errors", srcs = ["warnings.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], treat_warnings_as_errors = True, warnings_not_as_errors = ["CS0025", "CS0026"], @@ -122,7 +122,7 @@ def csharp_warnings(): csharp_library( name = "csharp_warning_level", srcs = ["warnings.cs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], warning_level = 5, tags = ["manual"], diff --git a/dotnet/private/tests/warning_settings/fsharp_warnings.bzl b/dotnet/private/tests/warning_settings/fsharp_warnings.bzl index 93ae0ef1..5dc63d08 100644 --- a/dotnet/private/tests/warning_settings/fsharp_warnings.bzl +++ b/dotnet/private/tests/warning_settings/fsharp_warnings.bzl @@ -37,7 +37,7 @@ def fsharp_warnings(): fsharp_library( name = "fsharp", srcs = ["warnings.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], tags = ["manual"], ) @@ -73,7 +73,7 @@ def fsharp_warnings(): fsharp_library( name = "fsharp_all_warnings", srcs = ["warnings.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], treat_warnings_as_errors = True, tags = ["manual"], @@ -89,7 +89,7 @@ def fsharp_warnings(): fsharp_library( name = "fsharp_warnings_as_errors", srcs = ["warnings.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], warnings_as_errors = ["FS0025", "FS0026"], tags = ["manual"], @@ -105,7 +105,7 @@ def fsharp_warnings(): fsharp_library( name = "fsharp_warnings_not_as_errors", srcs = ["warnings.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], treat_warnings_as_errors = True, warnings_not_as_errors = ["FS0025", "FS0026"], @@ -122,7 +122,7 @@ def fsharp_warnings(): fsharp_library( name = "fsharp_warning_level", srcs = ["warnings.fs"], - private_deps = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], + targeting_packs = ["@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], warning_level = 5, tags = ["manual"], diff --git a/dotnet/private/tests/xml_docs/csharp/BUILD.bazel b/dotnet/private/tests/xml_docs/csharp/BUILD.bazel index d9583ee6..b2ef8e75 100644 --- a/dotnet/private/tests/xml_docs/csharp/BUILD.bazel +++ b/dotnet/private/tests/xml_docs/csharp/BUILD.bazel @@ -10,10 +10,10 @@ csharp_library( srcs = ["lib.cs"], internals_visible_to = ["lib_test"], nullable = "enable", - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [], ) diff --git a/dotnet/private/tests/xml_docs/fsharp/BUILD.bazel b/dotnet/private/tests/xml_docs/fsharp/BUILD.bazel index 153db183..af5ae7cf 100644 --- a/dotnet/private/tests/xml_docs/fsharp/BUILD.bazel +++ b/dotnet/private/tests/xml_docs/fsharp/BUILD.bazel @@ -9,10 +9,10 @@ fsharp_library( name = "lib", srcs = ["lib.fs"], internals_visible_to = ["lib_test"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@rules_dotnet_dev_nuget_packages//fsharp.core", ], diff --git a/dotnet/private/tools/apphost_shimmer/BUILD.bazel b/dotnet/private/tools/apphost_shimmer/BUILD.bazel index 0c3fe0c7..59e95f8e 100644 --- a/dotnet/private/tools/apphost_shimmer/BUILD.bazel +++ b/dotnet/private/tools/apphost_shimmer/BUILD.bazel @@ -10,8 +10,8 @@ csharp_binary( "Program.cs", ], include_host_model_dll = True, - private_deps = ["@rules_dotnet_nuget_packages//microsoft.netcore.app.ref"], target_frameworks = ["net6.0"], + targeting_packs = ["@rules_dotnet_nuget_packages//microsoft.netcore.app.ref"], use_apphost_shim = False, visibility = ["//visibility:public"], deps = [ diff --git a/dotnet/rules_dotnet_dev_nuget_packages.bzl b/dotnet/rules_dotnet_dev_nuget_packages.bzl index cb14cbf0..fa49841d 100644 --- a/dotnet/rules_dotnet_dev_nuget_packages.bzl +++ b/dotnet/rules_dotnet_dev_nuget_packages.bzl @@ -7,20 +7,24 @@ def rules_dotnet_dev_nuget_packages(): nuget_repo( name = "rules_dotnet_dev_nuget_packages", packages = [ - {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "FSharp.Data", "version": "4.2.7", "sha512": "sha512-ycPjhFwlqwGb1nRE2ALpbs+C2DUHSv6YnPLQA+vv+zxaWQfMjJxVVfj6j1ANqlP5WNodjXyiqvmDWv149rBucw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "LibGit2Sharp", "version": "0.27.0-preview-0182", "sha512": "sha512-EQZksMK/1/oSuSU+vtc9R3DurosXySQ5uHRO02D5JvAoYdSCOGQ1lTigtvYcVnXcRGdsAlM3pXnYWexNNf7X4g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["LibGit2Sharp.NativeBinaries"], "net462": ["LibGit2Sharp.NativeBinaries"], "net47": ["LibGit2Sharp.NativeBinaries"], "net471": ["LibGit2Sharp.NativeBinaries"], "net472": ["LibGit2Sharp.NativeBinaries"], "net48": ["LibGit2Sharp.NativeBinaries"], "net5.0": ["LibGit2Sharp.NativeBinaries"], "net6.0": ["LibGit2Sharp.NativeBinaries"], "net7.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp2.1": ["LibGit2Sharp.NativeBinaries"], "netcoreapp2.2": ["LibGit2Sharp.NativeBinaries"], "netcoreapp3.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp3.1": ["LibGit2Sharp.NativeBinaries"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["LibGit2Sharp.NativeBinaries"], "netstandard2.1": ["LibGit2Sharp.NativeBinaries"]}, "targeting_pack_overrides": []}, - {"id": "LibGit2Sharp.NativeBinaries", "version": "2.0.315-alpha.0.9", "sha512": "sha512-YYQfD2dsYdPn9NjR5s4Mcbek0UM76nO00pPUToAS7we3Qknqqh3y6/QV2/GKMv41EDFZ8osGZfCz+qUWows2zw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Magick.NET.Core", "version": "12.2.2", "sha512": "sha512-pCrQcYNwbTHynEYpAa6jKHZmsuSyV0/4ypVDvlgto+5Aks+M0eR8T/aCoFkJO4jS7Rf/xdh0Ujo+MfqBtYGrdA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.NETCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-cjVzAUiYxPv949mXl0IbwzSRq0xBTGcW3N619CUcCwe35Ma1C1Tg1nh75Xc+OEn5+eAMW/S66dy+kQhdc277tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-RDOy3pzl0sutv5U3JAx23JWiw2UCoHAPNsCo35TA8MU2DM+LMDXN/lxi2cslot6GfFsxe0cYhclkEocHa2xMPQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-pgpxzvQPZzBPD1lWulgRO/aafBhSBLhqH+SrBD+sYSIu7eswlxE5icW/r8o60fNFKYVg0CFvrnmCut5YpTT27Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NETStandard.Library.Ref", "version": "2.1.0", "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Win32.Primitives|4.3.0", "System.AppContext|4.3.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "System.Buffers", "version": "4.5.1", "sha512": "sha512-gNphWOVbm89+C15jebnPRaYykU8De1PFv1YJV24814IfeGGVa3PXRHDS0MLlbdI1pe9Mpv/n4ZK4INwtAjqv8g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Memory", "version": "4.5.5", "sha512": "sha512-6MjlNsl7lKw0Q8lAsw2tQ89ul9x6jD2Yk3EEj+dOFoYGOE9eAUO9wNhvd4O/n97oQXlkyzqKXXUnE+kLElFy3A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net451": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net452": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net46": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net461": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp1.1": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.2": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.3": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.4": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.5": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.6": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.0": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": []}, - {"id": "System.Numerics.Vectors", "version": "4.5.0", "sha512": "sha512-nATsBTD2CKr4AYN6eRszhX4sptImWmBJwB/U6XKCWWfnCcrTBw8XSCm3QA9gjppkHTr8OkXUY21MR91D3QZXsw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Runtime.CompilerServices.Unsafe", "version": "6.0.0", "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Principal.Windows", "version": "5.0.0", "sha512": "sha512-RKkgqq8ishctQTGbtXqyuOGkUx1fAhkqb1OoHYdRJRlbYLoLWkSkWYHRN/17DzplsSlZtf2Xr8BXjNhO8nRnzQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, + {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Data", "version": "4.2.7", "sha512": "sha512-ycPjhFwlqwGb1nRE2ALpbs+C2DUHSv6YnPLQA+vv+zxaWQfMjJxVVfj6j1ANqlP5WNodjXyiqvmDWv149rBucw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "LibGit2Sharp", "version": "0.27.0-preview-0182", "sha512": "sha512-EQZksMK/1/oSuSU+vtc9R3DurosXySQ5uHRO02D5JvAoYdSCOGQ1lTigtvYcVnXcRGdsAlM3pXnYWexNNf7X4g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["LibGit2Sharp.NativeBinaries"], "net462": ["LibGit2Sharp.NativeBinaries"], "net47": ["LibGit2Sharp.NativeBinaries"], "net471": ["LibGit2Sharp.NativeBinaries"], "net472": ["LibGit2Sharp.NativeBinaries"], "net48": ["LibGit2Sharp.NativeBinaries"], "net5.0": ["LibGit2Sharp.NativeBinaries"], "net6.0": ["LibGit2Sharp.NativeBinaries"], "net7.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp2.1": ["LibGit2Sharp.NativeBinaries"], "netcoreapp2.2": ["LibGit2Sharp.NativeBinaries"], "netcoreapp3.0": ["LibGit2Sharp.NativeBinaries"], "netcoreapp3.1": ["LibGit2Sharp.NativeBinaries"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["LibGit2Sharp.NativeBinaries"], "netstandard2.1": ["LibGit2Sharp.NativeBinaries"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "LibGit2Sharp.NativeBinaries", "version": "2.0.315-alpha.0.9", "sha512": "sha512-YYQfD2dsYdPn9NjR5s4Mcbek0UM76nO00pPUToAS7we3Qknqqh3y6/QV2/GKMv41EDFZ8osGZfCz+qUWows2zw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Magick.NET.Core", "version": "12.2.2", "sha512": "sha512-pCrQcYNwbTHynEYpAa6jKHZmsuSyV0/4ypVDvlgto+5Aks+M0eR8T/aCoFkJO4jS7Rf/xdh0Ujo+MfqBtYGrdA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.Bcl.AsyncInterfaces", "version": "7.0.0", "sha512": "sha512-Nb9B1lxCab0LZi0ijNLEpw4hgwt0Wl8QQM1DxIhJS2otChAtIVMfyGrYl3YzdSjspvBYPliJlr0kCtizNAVe3w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Threading.Tasks.Extensions"], "net462": ["System.Threading.Tasks.Extensions"], "net47": ["System.Threading.Tasks.Extensions"], "net471": ["System.Threading.Tasks.Extensions"], "net472": ["System.Threading.Tasks.Extensions"], "net48": ["System.Threading.Tasks.Extensions"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Threading.Tasks.Extensions"], "netcoreapp2.1": ["System.Threading.Tasks.Extensions"], "netcoreapp2.2": ["System.Threading.Tasks.Extensions"], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Threading.Tasks.Extensions"], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.NETCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-cjVzAUiYxPv949mXl0IbwzSRq0xBTGcW3N619CUcCwe35Ma1C1Tg1nh75Xc+OEn5+eAMW/S66dy+kQhdc277tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-RDOy3pzl0sutv5U3JAx23JWiw2UCoHAPNsCo35TA8MU2DM+LMDXN/lxi2cslot6GfFsxe0cYhclkEocHa2xMPQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-pgpxzvQPZzBPD1lWulgRO/aafBhSBLhqH+SrBD+sYSIu7eswlxE5icW/r8o60fNFKYVg0CFvrnmCut5YpTT27Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NETStandard.Library.Ref", "version": "2.1.0", "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Win32.Primitives|4.3.0", "System.AppContext|4.3.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.Win32.Primitives|4.0.3.0", "System.AppContext|4.1.2.0", "System.Buffers|4.0.3.0", "System.Collections.Concurrent|4.0.11.0", "System.Collections.NonGeneric|4.0.3.0", "System.Collections.Specialized|4.0.3.0", "System.Collections|4.0.11.0", "System.ComponentModel.Composition|4.0.0.0", "System.ComponentModel.EventBasedAsync|4.0.11.0", "System.ComponentModel.Primitives|4.1.2.0", "System.ComponentModel.TypeConverter|4.1.2.0", "System.ComponentModel|4.0.1.0", "System.Console|4.0.2.0", "System.Core|4.0.0.0", "System.Data.Common|4.1.2.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|4.0.1.0", "System.Diagnostics.Debug|4.0.11.0", "System.Diagnostics.FileVersionInfo|4.0.2.0", "System.Diagnostics.Process|4.1.2.0", "System.Diagnostics.StackTrace|4.0.4.0", "System.Diagnostics.TextWriterTraceListener|4.0.2.0", "System.Diagnostics.Tools|4.0.1.0", "System.Diagnostics.TraceSource|4.0.2.0", "System.Diagnostics.Tracing|4.1.2.0", "System.Drawing.Primitives|4.0.2.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|4.0.11.0", "System.Globalization.Calendars|4.0.3.0", "System.Globalization.Extensions|4.0.3.0", "System.Globalization|4.0.11.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|4.0.3.0", "System.IO.Compression|4.1.3.0", "System.IO.FileSystem.DriveInfo|4.0.2.0", "System.IO.FileSystem.Primitives|4.0.3.0", "System.IO.FileSystem.Watcher|4.0.2.0", "System.IO.FileSystem|4.0.3.0", "System.IO.IsolatedStorage|4.0.2.0", "System.IO.MemoryMappedFiles|4.0.2.0", "System.IO.Pipes|4.0.2.0", "System.IO.UnmanagedMemoryStream|4.0.3.0", "System.IO|4.1.2.0", "System.Linq.Expressions|4.1.2.0", "System.Linq.Parallel|4.0.1.0", "System.Linq.Queryable|4.0.1.0", "System.Linq|4.1.2.0", "System.Memory|4.0.2.0", "System.Net.Http|4.1.2.0", "System.Net.NameResolution|4.0.2.0", "System.Net.NetworkInformation|4.1.2.0", "System.Net.Ping|4.0.2.0", "System.Net.Primitives|4.0.11.0", "System.Net.Requests|4.0.11.0", "System.Net.Security|4.0.2.0", "System.Net.Sockets|4.1.2.0", "System.Net.WebHeaderCollection|4.0.1.0", "System.Net.WebSockets.Client|4.0.2.0", "System.Net.WebSockets|4.0.2.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|4.1.5.0", "System.Numerics|4.0.0.0", "System.ObjectModel|4.0.11.0", "System.Reflection.DispatchProxy|4.0.5.0", "System.Reflection.Emit.ILGeneration|4.0.1.0", "System.Reflection.Emit.Lightweight|4.0.1.0", "System.Reflection.Emit|4.0.1.0", "System.Reflection.Extensions|4.0.1.0", "System.Reflection.Primitives|4.0.1.0", "System.Reflection|4.1.2.0", "System.Resources.Reader|4.0.2.0", "System.Resources.ResourceManager|4.0.1.0", "System.Resources.Writer|4.0.2.0", "System.Runtime.CompilerServices.VisualC|4.0.2.0", "System.Runtime.Extensions|4.1.2.0", "System.Runtime.Handles|4.0.1.0", "System.Runtime.InteropServices.RuntimeInformation|4.0.2.0", "System.Runtime.InteropServices|4.1.2.0", "System.Runtime.Numerics|4.0.1.0", "System.Runtime.Serialization.Formatters|4.0.2.0", "System.Runtime.Serialization.Json|4.0.1.0", "System.Runtime.Serialization.Primitives|4.1.3.0", "System.Runtime.Serialization.Xml|4.1.3.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|4.1.2.0", "System.Security.Claims|4.0.3.0", "System.Security.Cryptography.Algorithms|4.2.2.0", "System.Security.Cryptography.Csp|4.0.2.0", "System.Security.Cryptography.Encoding|4.0.2.0", "System.Security.Cryptography.Primitives|4.0.2.0", "System.Security.Cryptography.X509Certificates|4.1.2.0", "System.Security.Principal|4.0.1.0", "System.Security.SecureString|4.0.2.0", "System.ServiceModel.Web|4.0.0.0", "System.Text.Encoding.Extensions|4.0.11.0", "System.Text.Encoding|4.0.11.0", "System.Text.RegularExpressions|4.1.1.0", "System.Threading.Overlapped|4.0.3.0", "System.Threading.Tasks.Extensions|4.2.1.0", "System.Threading.Tasks.Parallel|4.0.1.0", "System.Threading.Tasks|4.0.11.0", "System.Threading.Thread|4.0.2.0", "System.Threading.ThreadPool|4.0.12.0", "System.Threading.Timer|4.0.1.0", "System.Threading|4.0.11.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.2.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|4.1.1.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|4.0.11.0", "System.Xml.XPath.XDocument|4.0.3.0", "System.Xml.XPath|4.0.3.0", "System.Xml.XmlDocument|4.0.3.0", "System.Xml.XmlSerializer|4.0.11.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "System.Buffers", "version": "4.5.1", "sha512": "sha512-gNphWOVbm89+C15jebnPRaYykU8De1PFv1YJV24814IfeGGVa3PXRHDS0MLlbdI1pe9Mpv/n4ZK4INwtAjqv8g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Memory", "version": "4.5.5", "sha512": "sha512-6MjlNsl7lKw0Q8lAsw2tQ89ul9x6jD2Yk3EEj+dOFoYGOE9eAUO9wNhvd4O/n97oQXlkyzqKXXUnE+kLElFy3A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net451": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net452": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net46": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "net461": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp1.1": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.2": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.3": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.4": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.5": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard1.6": ["System.Buffers", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.0": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Buffers", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Numerics.Vectors", "version": "4.5.0", "sha512": "sha512-nATsBTD2CKr4AYN6eRszhX4sptImWmBJwB/U6XKCWWfnCcrTBw8XSCm3QA9gjppkHTr8OkXUY21MR91D3QZXsw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Runtime.CompilerServices.Unsafe", "version": "6.0.0", "sha512": "sha512-1AVzAb5OxJNvJLnOADtexNmWgattm2XVOT3TjQTN7Dd4SqoSwai1CsN2fth42uQldJSQdz/sAec0+TzxBFgisw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Principal.Windows", "version": "5.0.0", "sha512": "sha512-RKkgqq8ishctQTGbtXqyuOGkUx1fAhkqb1OoHYdRJRlbYLoLWkSkWYHRN/17DzplsSlZtf2Xr8BXjNhO8nRnzQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Text.Encodings.Web", "version": "7.0.0", "sha512": "sha512-0WTBXfAhqZ0Y7Qw5trfAKQt/lI2PCb8HFAtHuuZAPxy5qCLBUEqr16YJQ2etn8+M7R6hhrBmKlGBXruzejsENA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net5.0": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "net6.0": ["System.Runtime.CompilerServices.Unsafe"], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.2": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.0": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netcoreapp3.1": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Buffers", "System.Memory", "System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Text.Json", "version": "7.0.3", "sha512": "sha512-DqP+zKPdTIT42a/d1tPu+w/hq14QZ8+6tbpuv2GsyrjhqBqbsHH7mNta/sSvOkF3fB+yP7PWr2IjYILinfT6VQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net462": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net47": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net471": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net472": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net48": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net5.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "net6.0": ["System.Text.Encodings.Web", "System.Runtime.CompilerServices.Unsafe"], "net7.0": ["System.Text.Encodings.Web"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netcoreapp2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netcoreapp2.2": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netcoreapp3.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netcoreapp3.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"], "netstandard2.1": ["Microsoft.Bcl.AsyncInterfaces", "System.Text.Encodings.Web", "System.Buffers", "System.Memory", "System.Numerics.Vectors", "System.Runtime.CompilerServices.Unsafe", "System.Threading.Tasks.Extensions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Threading.Tasks.Extensions", "version": "4.5.4", "sha512": "sha512-aAUghud9PHGYc3o9oWPWd0C3xE+TJQw5ZZs78htlR6mr9ky/QEgfXHjyQ2GvOq9H1S0YizcVVKCSin92ZcH8FA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["System.Runtime.CompilerServices.Unsafe"], "net451": ["System.Runtime.CompilerServices.Unsafe"], "net452": ["System.Runtime.CompilerServices.Unsafe"], "net46": ["System.Runtime.CompilerServices.Unsafe"], "net461": ["System.Runtime.CompilerServices.Unsafe"], "net462": ["System.Runtime.CompilerServices.Unsafe"], "net47": ["System.Runtime.CompilerServices.Unsafe"], "net471": ["System.Runtime.CompilerServices.Unsafe"], "net472": ["System.Runtime.CompilerServices.Unsafe"], "net48": ["System.Runtime.CompilerServices.Unsafe"], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp1.1": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.0": ["System.Runtime.CompilerServices.Unsafe"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.1": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.2": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.3": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.4": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.5": ["System.Runtime.CompilerServices.Unsafe"], "netstandard1.6": ["System.Runtime.CompilerServices.Unsafe"], "netstandard2.0": ["System.Runtime.CompilerServices.Unsafe"], "netstandard2.1": ["System.Runtime.CompilerServices.Unsafe"]}, "targeting_pack_overrides": [], "framework_list": []}, ], ) diff --git a/dotnet/rules_dotnet_nuget_packages.bzl b/dotnet/rules_dotnet_nuget_packages.bzl index c97a2b84..a4e31669 100644 --- a/dotnet/rules_dotnet_nuget_packages.bzl +++ b/dotnet/rules_dotnet_nuget_packages.bzl @@ -7,34 +7,34 @@ def rules_dotnet_nuget_packages(): nuget_repo( name = "rules_dotnet_nuget_packages", packages = [ - {"id": "McMaster.Extensions.CommandLineUtils", "version": "2.5.0", "sha512": "sha512-00uJOWYKPCPqDB6RxyOLXNnoPGeRmzKTZhu5OdZJaWn5+JV/n6mzB3/M+Z1yMpkabag3Lym9S11G/ITLrptOiw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.ComponentModel.Annotations"], "net6.0": ["System.ComponentModel.Annotations"], "net7.0": ["System.ComponentModel.Annotations"], "netcoreapp1.0": ["System.ComponentModel.Annotations"], "netcoreapp1.1": ["System.ComponentModel.Annotations"], "netcoreapp2.0": ["System.ComponentModel.Annotations"], "netcoreapp2.1": ["System.ComponentModel.Annotations"], "netcoreapp2.2": ["System.ComponentModel.Annotations"], "netcoreapp3.0": ["System.ComponentModel.Annotations"], "netcoreapp3.1": ["System.ComponentModel.Annotations"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": ["System.ComponentModel.Annotations"], "netstandard2.0": ["System.ComponentModel.Annotations"], "netstandard2.1": ["System.ComponentModel.Annotations"]}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.NETCore.Platforms", "version": "6.0.5", "sha512": "sha512-GTMT/dgCRBCRUj11ssZ8K1FJm6Md+C/tSJl8I7YjxOFwSvopaIneV32y1VlnBTI4wy1SwueI7ou2sVfHkWENrA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.Web.Xdt", "version": "3.1.0", "sha512": "sha512-3VApgkdgOglJWtrXSgYzz6o8Cp6IpvmFQMeICyQvvbKoy+OjNwco5ovzBBL1HHj7kEgLfe2ruXW/ZQ1k+2YxYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms"], "netstandard1.1": ["Microsoft.NETCore.Platforms"], "netstandard1.2": ["Microsoft.NETCore.Platforms"], "netstandard1.3": ["Microsoft.NETCore.Platforms"], "netstandard1.4": ["Microsoft.NETCore.Platforms"], "netstandard1.5": ["Microsoft.NETCore.Platforms"], "netstandard1.6": ["Microsoft.NETCore.Platforms"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": []}, - {"id": "NETStandard.Library.Ref", "version": "2.1.0", "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Win32.Primitives|4.3.0", "System.AppContext|4.3.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Newtonsoft.Json", "version": "13.0.1", "sha512": "sha512-g3MbZi6vBTeaI/hEbvR7vBETSd1DWLe9i1E4P+nPY34v5i94zqUqDXvdWC3G+7tYN9SnsdU9zzegrnRz4h7nsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["NETStandard.Library"], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.Commands", "version": "5.10.0", "sha512": "sha512-Q7ANXnmLUPC4pWgCZjBy2R7vRDABiaJz5NsBtoErE0dLylx/zQWRMyoa+m4Y478SKvUpt7S1V7LhAOlMRCTPpg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Credentials", "NuGet.ProjectModel"], "net462": ["NuGet.Credentials", "NuGet.ProjectModel"], "net47": ["NuGet.Credentials", "NuGet.ProjectModel"], "net471": ["NuGet.Credentials", "NuGet.ProjectModel"], "net472": ["NuGet.Credentials", "NuGet.ProjectModel"], "net48": ["NuGet.Credentials", "NuGet.ProjectModel"], "net5.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net6.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net7.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.2": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard2.1": ["NuGet.Credentials", "NuGet.ProjectModel"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Common", "version": "5.10.0", "sha512": "sha512-8M9VtXAB1M15KmvL0F9QsItI96PH3WmYD0z3oxYm5H9G5AIhK8Ivi4kGzqtBJDTsZ/NkP91U1MnoCAeg4E4+zA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["NuGet.Frameworks"], "net451": ["NuGet.Frameworks"], "net452": ["NuGet.Frameworks"], "net46": ["NuGet.Frameworks"], "net461": ["NuGet.Frameworks"], "net462": ["NuGet.Frameworks"], "net47": ["NuGet.Frameworks"], "net471": ["NuGet.Frameworks"], "net472": ["NuGet.Frameworks"], "net48": ["NuGet.Frameworks"], "net5.0": ["NuGet.Frameworks"], "net6.0": ["NuGet.Frameworks"], "net7.0": ["NuGet.Frameworks"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Frameworks"], "netcoreapp2.1": ["NuGet.Frameworks"], "netcoreapp2.2": ["NuGet.Frameworks"], "netcoreapp3.0": ["NuGet.Frameworks"], "netcoreapp3.1": ["NuGet.Frameworks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Frameworks"], "netstandard2.1": ["NuGet.Frameworks"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Configuration", "version": "5.10.0", "sha512": "sha512-ZJc2HY/D+UEk2U0jxamyBhUbKl2bgluViM/tnP4ObIIfJpOj8dHEJ6xzggulIGDlhe+ItK6yc+sqtCb6qV5+gw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["NuGet.Common"], "net451": ["NuGet.Common"], "net452": ["NuGet.Common"], "net46": ["NuGet.Common"], "net461": ["NuGet.Common"], "net462": ["NuGet.Common"], "net47": ["NuGet.Common"], "net471": ["NuGet.Common"], "net472": ["NuGet.Common"], "net48": ["NuGet.Common"], "net5.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net6.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net7.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Credentials", "version": "5.10.0", "sha512": "sha512-r/fzn5yJaCXyChbhxbGZ5d/4xV4n3NIjVdE3odLfQy0znmcYRCDIfjYGu5l7vO9Nx27F+q7YA+9QmG9sucxX9A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.DependencyResolver.Core", "version": "5.10.0", "sha512": "sha512-+9mCFiBhnm5C2Cb3dtHaHyv/WarSr5HwRi2NaoVJgudpHoK3B9uy8wB7PNnUos0kOghZmVslemeLsmw7icQqTw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.LibraryModel", "NuGet.Protocol"], "net462": ["NuGet.LibraryModel", "NuGet.Protocol"], "net47": ["NuGet.LibraryModel", "NuGet.Protocol"], "net471": ["NuGet.LibraryModel", "NuGet.Protocol"], "net472": ["NuGet.LibraryModel", "NuGet.Protocol"], "net48": ["NuGet.LibraryModel", "NuGet.Protocol"], "net5.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "net6.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "net7.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.1": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.2": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.1": ["NuGet.LibraryModel", "NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netstandard2.1": ["NuGet.LibraryModel", "NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Frameworks", "version": "5.10.0", "sha512": "sha512-l8KtHN2bzA391seLZ9Q2AWK0mbCHpfbwL1nmOSMDxBpWLxqh+nxMWaKL437bROpHltU+oP5LX/hc4Fxm89T9Tg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.LibraryModel", "version": "5.10.0", "sha512": "sha512-xb8XLKJEMymZMAZJeXdSUaDNFRQMJ4MXkOPUaqafcgSKGz8M8BZgfLsBz9QCQVEyHIVYGbI4yroWZYed/c8xSg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "NuGet.Versioning"], "net462": ["NuGet.Common", "NuGet.Versioning"], "net47": ["NuGet.Common", "NuGet.Versioning"], "net471": ["NuGet.Common", "NuGet.Versioning"], "net472": ["NuGet.Common", "NuGet.Versioning"], "net48": ["NuGet.Common", "NuGet.Versioning"], "net5.0": ["NuGet.Common", "NuGet.Versioning"], "net6.0": ["NuGet.Common", "NuGet.Versioning"], "net7.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.1": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.2": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.1": ["NuGet.Common", "NuGet.Versioning"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "NuGet.Versioning"], "netstandard2.1": ["NuGet.Common", "NuGet.Versioning"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.PackageManagement", "version": "5.10.0", "sha512": "sha512-Kr0CZuStXNsJRL86ecuWGhIHUhYy31rYZJ9WZ0tiFUaRwiPb7HpSQVsV/v3tqrKE7FWUZBpasX1bugXNqXcPjA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net462": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net47": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net471": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net472": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt"], "net48": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt"], "net5.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net6.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net7.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.2": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"]}, "targeting_pack_overrides": []}, - {"id": "Nuget.Packaging", "version": "5.10.0", "sha512": "sha512-2HMq5gNgLMOHmqGb84pyEC7ctkCYBVXkhJfcYmHlkpo4FpDA6GQBoT//1h0Q4nGoybtgoBxiIbJu8VRn/9CZrQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net462": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net47": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net471": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net472": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net48": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net5.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net6.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net7.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"]}, "targeting_pack_overrides": []}, - {"id": "Nuget.Packaging.Core", "version": "5.10.0", "sha512": "sha512-/WXGAbLb4T0pwEfEeY0j8zOVpS36OHNUANL95txANysbLoG7tUr9e+5je+Nfh3iIqzMaHIZXT6JKFvHOBwAotw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.ProjectModel", "version": "5.10.0", "sha512": "sha512-gsZS2Kuat3ZjjPcBQ3Mc8QlRv6mP1OzNzkF4Dzybu3LgtG+kwvgQh4UMLbiIrko6WKbwVTbr8nQYpL+wsVZ4hA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.DependencyResolver.Core"], "net462": ["NuGet.DependencyResolver.Core"], "net47": ["NuGet.DependencyResolver.Core"], "net471": ["NuGet.DependencyResolver.Core"], "net472": ["NuGet.DependencyResolver.Core"], "net48": ["NuGet.DependencyResolver.Core"], "net5.0": ["NuGet.DependencyResolver.Core"], "net6.0": ["NuGet.DependencyResolver.Core"], "net7.0": ["NuGet.DependencyResolver.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.DependencyResolver.Core"], "netcoreapp2.1": ["NuGet.DependencyResolver.Core"], "netcoreapp2.2": ["NuGet.DependencyResolver.Core"], "netcoreapp3.0": ["NuGet.DependencyResolver.Core"], "netcoreapp3.1": ["NuGet.DependencyResolver.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.DependencyResolver.Core"], "netstandard2.1": ["NuGet.DependencyResolver.Core"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Protocol", "version": "5.10.0", "sha512": "sha512-lY85Pgf7kr0JwTufdJmfDgBwN9BRQc96F4xxKrUGSALhuZRRC7y6f2RN1JQ0UTPIXlQx7HTG/h0UZEknQj3/UQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NuGet.Resolver", "version": "5.10.0", "sha512": "sha512-a2zWl9RkKDkcVUqfRJjz3O4uoPIWf3PGaFf6AntXtTKjvvsB6SZz8jjPSGdLgTTRIWzsFlybKp6yU+GaXeIQkg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": []}, - {"id": "NuGet.Versioning", "version": "5.10.0", "sha512": "sha512-NW11tfXijCWeI8d71HKpNPKPzJqr30PtUyJHzCpKFMFTGZhsHh2YxgjKBuhpC5R59SMZUzqrFF5CgJ8uGaupqg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NUnit", "version": "3.12.0", "sha512": "sha512-HAhwFxr+Z+PJf8hXzc747NecvsDwEZ+3X8SA5+GIRM43GAy1Ap+TQPMHsWCnisfes5vPZ1/a2md/91u+shoTsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["NETStandard.Library"], "net6.0": ["NETStandard.Library"], "net7.0": ["NETStandard.Library"], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": ["NETStandard.Library"], "netcoreapp2.1": ["NETStandard.Library"], "netcoreapp2.2": ["NETStandard.Library"], "netcoreapp3.0": ["NETStandard.Library"], "netcoreapp3.1": ["NETStandard.Library"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": ["NETStandard.Library"], "netstandard2.1": ["NETStandard.Library"]}, "targeting_pack_overrides": []}, - {"id": "NUnitLite", "version": "3.12.0", "sha512": "sha512-M9VVS4x3KURXFS4HTl2b7uJOX7vOi2wzpHACmNX6ANlBmb0/hIehJLciiVvddD3ubIIL81EF4Qk54kpsUOtVFQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": ["NUnit"], "net40": ["NUnit"], "net403": ["NUnit"], "net45": ["NUnit"], "net451": ["NUnit"], "net452": ["NUnit"], "net46": ["NUnit"], "net461": ["NUnit"], "net462": ["NUnit"], "net47": ["NUnit"], "net471": ["NUnit"], "net472": ["NUnit"], "net48": ["NUnit"], "net5.0": ["NUnit", "NETStandard.Library"], "net6.0": ["NUnit", "NETStandard.Library"], "net7.0": ["NUnit", "NETStandard.Library"], "netcoreapp1.0": ["NUnit", "NETStandard.Library"], "netcoreapp1.1": ["NUnit", "NETStandard.Library"], "netcoreapp2.0": ["NUnit", "NETStandard.Library"], "netcoreapp2.1": ["NUnit", "NETStandard.Library"], "netcoreapp2.2": ["NUnit", "NETStandard.Library"], "netcoreapp3.0": ["NUnit", "NETStandard.Library"], "netcoreapp3.1": ["NUnit", "NETStandard.Library"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": ["NUnit", "NETStandard.Library"], "netstandard1.5": ["NUnit", "NETStandard.Library"], "netstandard1.6": ["NUnit", "NETStandard.Library"], "netstandard2.0": ["NUnit", "NETStandard.Library"], "netstandard2.1": ["NUnit", "NETStandard.Library"]}, "targeting_pack_overrides": []}, - {"id": "System.ComponentModel.Annotations", "version": "5.0.0", "sha512": "sha512-WJqsTGaXAc55EPGjJylPFXiNPs/x1t9dklVlHlIBxUEcIxIob6sRGm9Un7TehkyEFM+vKjZd7rbwaMH/znw1PA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.ComponentModel.Composition", "version": "6.0.0", "sha512": "sha512-YWQ3ENu0D2st9ZV+Yj4u3IFcas0Pw7S4c7ymDUooPLb1psNJ53YniX2orSiY2OlRWnssaUsTytnVJa/KfCn5aA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Formats.Asn1", "version": "6.0.0", "sha512": "sha512-62YP6zLnvmFtFI3rjybbrnSeK6hHQCaFfJJfoNhQqrETJBPehSucQxIyQs5W+GGBW/rpSXD/0NqNW7mttIWXhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Cng", "version": "5.0.0", "sha512": "sha512-trvkAklUhzM+/z9bPnGmDLzmbvD0l1IlC6gpFRpzjGLylTgtTPqm8Uv7tnDBTuBQObjEZBxNS0bChIi6zQCV9w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.Pkcs", "version": "6.0.1", "sha512": "sha512-ubxxZt0n9t8Xe/NtN53XMf6ZSfRKsk/T+mheDuoZbYrBJRLVyQ4pecXoROihl/DyC9uVOt6QrejwLAx1Raj1wg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.2": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"]}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, + {"id": "McMaster.Extensions.CommandLineUtils", "version": "2.5.0", "sha512": "sha512-00uJOWYKPCPqDB6RxyOLXNnoPGeRmzKTZhu5OdZJaWn5+JV/n6mzB3/M+Z1yMpkabag3Lym9S11G/ITLrptOiw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.ComponentModel.Annotations"], "net6.0": ["System.ComponentModel.Annotations"], "net7.0": ["System.ComponentModel.Annotations"], "netcoreapp1.0": ["System.ComponentModel.Annotations"], "netcoreapp1.1": ["System.ComponentModel.Annotations"], "netcoreapp2.0": ["System.ComponentModel.Annotations"], "netcoreapp2.1": ["System.ComponentModel.Annotations"], "netcoreapp2.2": ["System.ComponentModel.Annotations"], "netcoreapp3.0": ["System.ComponentModel.Annotations"], "netcoreapp3.1": ["System.ComponentModel.Annotations"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": ["System.ComponentModel.Annotations"], "netstandard2.0": ["System.ComponentModel.Annotations"], "netstandard2.1": ["System.ComponentModel.Annotations"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.NETCore.Platforms", "version": "6.0.5", "sha512": "sha512-GTMT/dgCRBCRUj11ssZ8K1FJm6Md+C/tSJl8I7YjxOFwSvopaIneV32y1VlnBTI4wy1SwueI7ou2sVfHkWENrA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.Web.Xdt", "version": "3.1.0", "sha512": "sha512-3VApgkdgOglJWtrXSgYzz6o8Cp6IpvmFQMeICyQvvbKoy+OjNwco5ovzBBL1HHj7kEgLfe2ruXW/ZQ1k+2YxYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms"], "netstandard1.1": ["Microsoft.NETCore.Platforms"], "netstandard1.2": ["Microsoft.NETCore.Platforms"], "netstandard1.3": ["Microsoft.NETCore.Platforms"], "netstandard1.4": ["Microsoft.NETCore.Platforms"], "netstandard1.5": ["Microsoft.NETCore.Platforms"], "netstandard1.6": ["Microsoft.NETCore.Platforms"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NETStandard.Library.Ref", "version": "2.1.0", "sha512": "sha512-Jr0OqnqkaJJGEVq3w9oNQrIEteD/4QBNg3YOh1cvRjydzwop07+5aWjO/SfEYu6CwBn+dSBKXj8niEvTNy2brA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Win32.Primitives|4.3.0", "System.AppContext|4.3.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.Win32.Primitives|4.0.3.0", "System.AppContext|4.1.2.0", "System.Buffers|4.0.3.0", "System.Collections.Concurrent|4.0.11.0", "System.Collections.NonGeneric|4.0.3.0", "System.Collections.Specialized|4.0.3.0", "System.Collections|4.0.11.0", "System.ComponentModel.Composition|4.0.0.0", "System.ComponentModel.EventBasedAsync|4.0.11.0", "System.ComponentModel.Primitives|4.1.2.0", "System.ComponentModel.TypeConverter|4.1.2.0", "System.ComponentModel|4.0.1.0", "System.Console|4.0.2.0", "System.Core|4.0.0.0", "System.Data.Common|4.1.2.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|4.0.1.0", "System.Diagnostics.Debug|4.0.11.0", "System.Diagnostics.FileVersionInfo|4.0.2.0", "System.Diagnostics.Process|4.1.2.0", "System.Diagnostics.StackTrace|4.0.4.0", "System.Diagnostics.TextWriterTraceListener|4.0.2.0", "System.Diagnostics.Tools|4.0.1.0", "System.Diagnostics.TraceSource|4.0.2.0", "System.Diagnostics.Tracing|4.1.2.0", "System.Drawing.Primitives|4.0.2.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|4.0.11.0", "System.Globalization.Calendars|4.0.3.0", "System.Globalization.Extensions|4.0.3.0", "System.Globalization|4.0.11.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|4.0.3.0", "System.IO.Compression|4.1.3.0", "System.IO.FileSystem.DriveInfo|4.0.2.0", "System.IO.FileSystem.Primitives|4.0.3.0", "System.IO.FileSystem.Watcher|4.0.2.0", "System.IO.FileSystem|4.0.3.0", "System.IO.IsolatedStorage|4.0.2.0", "System.IO.MemoryMappedFiles|4.0.2.0", "System.IO.Pipes|4.0.2.0", "System.IO.UnmanagedMemoryStream|4.0.3.0", "System.IO|4.1.2.0", "System.Linq.Expressions|4.1.2.0", "System.Linq.Parallel|4.0.1.0", "System.Linq.Queryable|4.0.1.0", "System.Linq|4.1.2.0", "System.Memory|4.0.2.0", "System.Net.Http|4.1.2.0", "System.Net.NameResolution|4.0.2.0", "System.Net.NetworkInformation|4.1.2.0", "System.Net.Ping|4.0.2.0", "System.Net.Primitives|4.0.11.0", "System.Net.Requests|4.0.11.0", "System.Net.Security|4.0.2.0", "System.Net.Sockets|4.1.2.0", "System.Net.WebHeaderCollection|4.0.1.0", "System.Net.WebSockets.Client|4.0.2.0", "System.Net.WebSockets|4.0.2.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|4.1.5.0", "System.Numerics|4.0.0.0", "System.ObjectModel|4.0.11.0", "System.Reflection.DispatchProxy|4.0.5.0", "System.Reflection.Emit.ILGeneration|4.0.1.0", "System.Reflection.Emit.Lightweight|4.0.1.0", "System.Reflection.Emit|4.0.1.0", "System.Reflection.Extensions|4.0.1.0", "System.Reflection.Primitives|4.0.1.0", "System.Reflection|4.1.2.0", "System.Resources.Reader|4.0.2.0", "System.Resources.ResourceManager|4.0.1.0", "System.Resources.Writer|4.0.2.0", "System.Runtime.CompilerServices.VisualC|4.0.2.0", "System.Runtime.Extensions|4.1.2.0", "System.Runtime.Handles|4.0.1.0", "System.Runtime.InteropServices.RuntimeInformation|4.0.2.0", "System.Runtime.InteropServices|4.1.2.0", "System.Runtime.Numerics|4.0.1.0", "System.Runtime.Serialization.Formatters|4.0.2.0", "System.Runtime.Serialization.Json|4.0.1.0", "System.Runtime.Serialization.Primitives|4.1.3.0", "System.Runtime.Serialization.Xml|4.1.3.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|4.1.2.0", "System.Security.Claims|4.0.3.0", "System.Security.Cryptography.Algorithms|4.2.2.0", "System.Security.Cryptography.Csp|4.0.2.0", "System.Security.Cryptography.Encoding|4.0.2.0", "System.Security.Cryptography.Primitives|4.0.2.0", "System.Security.Cryptography.X509Certificates|4.1.2.0", "System.Security.Principal|4.0.1.0", "System.Security.SecureString|4.0.2.0", "System.ServiceModel.Web|4.0.0.0", "System.Text.Encoding.Extensions|4.0.11.0", "System.Text.Encoding|4.0.11.0", "System.Text.RegularExpressions|4.1.1.0", "System.Threading.Overlapped|4.0.3.0", "System.Threading.Tasks.Extensions|4.2.1.0", "System.Threading.Tasks.Parallel|4.0.1.0", "System.Threading.Tasks|4.0.11.0", "System.Threading.Thread|4.0.2.0", "System.Threading.ThreadPool|4.0.12.0", "System.Threading.Timer|4.0.1.0", "System.Threading|4.0.11.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.2.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|4.1.1.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|4.0.11.0", "System.Xml.XPath.XDocument|4.0.3.0", "System.Xml.XPath|4.0.3.0", "System.Xml.XmlDocument|4.0.3.0", "System.Xml.XmlSerializer|4.0.11.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Newtonsoft.Json", "version": "13.0.1", "sha512": "sha512-g3MbZi6vBTeaI/hEbvR7vBETSd1DWLe9i1E4P+nPY34v5i94zqUqDXvdWC3G+7tYN9SnsdU9zzegrnRz4h7nsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": ["NETStandard.Library"], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Commands", "version": "5.10.0", "sha512": "sha512-Q7ANXnmLUPC4pWgCZjBy2R7vRDABiaJz5NsBtoErE0dLylx/zQWRMyoa+m4Y478SKvUpt7S1V7LhAOlMRCTPpg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Credentials", "NuGet.ProjectModel"], "net462": ["NuGet.Credentials", "NuGet.ProjectModel"], "net47": ["NuGet.Credentials", "NuGet.ProjectModel"], "net471": ["NuGet.Credentials", "NuGet.ProjectModel"], "net472": ["NuGet.Credentials", "NuGet.ProjectModel"], "net48": ["NuGet.Credentials", "NuGet.ProjectModel"], "net5.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net6.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "net7.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp2.2": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netcoreapp3.1": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Credentials", "NuGet.ProjectModel"], "netstandard2.1": ["NuGet.Credentials", "NuGet.ProjectModel"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Common", "version": "5.10.0", "sha512": "sha512-8M9VtXAB1M15KmvL0F9QsItI96PH3WmYD0z3oxYm5H9G5AIhK8Ivi4kGzqtBJDTsZ/NkP91U1MnoCAeg4E4+zA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["NuGet.Frameworks"], "net451": ["NuGet.Frameworks"], "net452": ["NuGet.Frameworks"], "net46": ["NuGet.Frameworks"], "net461": ["NuGet.Frameworks"], "net462": ["NuGet.Frameworks"], "net47": ["NuGet.Frameworks"], "net471": ["NuGet.Frameworks"], "net472": ["NuGet.Frameworks"], "net48": ["NuGet.Frameworks"], "net5.0": ["NuGet.Frameworks"], "net6.0": ["NuGet.Frameworks"], "net7.0": ["NuGet.Frameworks"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Frameworks"], "netcoreapp2.1": ["NuGet.Frameworks"], "netcoreapp2.2": ["NuGet.Frameworks"], "netcoreapp3.0": ["NuGet.Frameworks"], "netcoreapp3.1": ["NuGet.Frameworks"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Frameworks"], "netstandard2.1": ["NuGet.Frameworks"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Configuration", "version": "5.10.0", "sha512": "sha512-ZJc2HY/D+UEk2U0jxamyBhUbKl2bgluViM/tnP4ObIIfJpOj8dHEJ6xzggulIGDlhe+ItK6yc+sqtCb6qV5+gw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["NuGet.Common"], "net451": ["NuGet.Common"], "net452": ["NuGet.Common"], "net46": ["NuGet.Common"], "net461": ["NuGet.Common"], "net462": ["NuGet.Common"], "net47": ["NuGet.Common"], "net471": ["NuGet.Common"], "net472": ["NuGet.Common"], "net48": ["NuGet.Common"], "net5.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net6.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "net7.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp2.2": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netcoreapp3.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"], "netstandard2.1": ["NuGet.Common", "System.Security.Cryptography.ProtectedData"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Credentials", "version": "5.10.0", "sha512": "sha512-r/fzn5yJaCXyChbhxbGZ5d/4xV4n3NIjVdE3odLfQy0znmcYRCDIfjYGu5l7vO9Nx27F+q7YA+9QmG9sucxX9A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.DependencyResolver.Core", "version": "5.10.0", "sha512": "sha512-+9mCFiBhnm5C2Cb3dtHaHyv/WarSr5HwRi2NaoVJgudpHoK3B9uy8wB7PNnUos0kOghZmVslemeLsmw7icQqTw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.LibraryModel", "NuGet.Protocol"], "net462": ["NuGet.LibraryModel", "NuGet.Protocol"], "net47": ["NuGet.LibraryModel", "NuGet.Protocol"], "net471": ["NuGet.LibraryModel", "NuGet.Protocol"], "net472": ["NuGet.LibraryModel", "NuGet.Protocol"], "net48": ["NuGet.LibraryModel", "NuGet.Protocol"], "net5.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "net6.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "net7.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.1": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp2.2": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netcoreapp3.1": ["NuGet.LibraryModel", "NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.LibraryModel", "NuGet.Protocol"], "netstandard2.1": ["NuGet.LibraryModel", "NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Frameworks", "version": "5.10.0", "sha512": "sha512-l8KtHN2bzA391seLZ9Q2AWK0mbCHpfbwL1nmOSMDxBpWLxqh+nxMWaKL437bROpHltU+oP5LX/hc4Fxm89T9Tg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.LibraryModel", "version": "5.10.0", "sha512": "sha512-xb8XLKJEMymZMAZJeXdSUaDNFRQMJ4MXkOPUaqafcgSKGz8M8BZgfLsBz9QCQVEyHIVYGbI4yroWZYed/c8xSg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Common", "NuGet.Versioning"], "net462": ["NuGet.Common", "NuGet.Versioning"], "net47": ["NuGet.Common", "NuGet.Versioning"], "net471": ["NuGet.Common", "NuGet.Versioning"], "net472": ["NuGet.Common", "NuGet.Versioning"], "net48": ["NuGet.Common", "NuGet.Versioning"], "net5.0": ["NuGet.Common", "NuGet.Versioning"], "net6.0": ["NuGet.Common", "NuGet.Versioning"], "net7.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.1": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp2.2": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.0": ["NuGet.Common", "NuGet.Versioning"], "netcoreapp3.1": ["NuGet.Common", "NuGet.Versioning"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Common", "NuGet.Versioning"], "netstandard2.1": ["NuGet.Common", "NuGet.Versioning"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.PackageManagement", "version": "5.10.0", "sha512": "sha512-Kr0CZuStXNsJRL86ecuWGhIHUhYy31rYZJ9WZ0tiFUaRwiPb7HpSQVsV/v3tqrKE7FWUZBpasX1bugXNqXcPjA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net462": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net47": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net471": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net472": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt"], "net48": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt"], "net5.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net6.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "net7.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp2.2": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netcoreapp3.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"], "netstandard2.1": ["NuGet.Commands", "NuGet.Resolver", "Microsoft.Web.Xdt", "System.ComponentModel.Composition"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Nuget.Packaging", "version": "5.10.0", "sha512": "sha512-2HMq5gNgLMOHmqGb84pyEC7ctkCYBVXkhJfcYmHlkpo4FpDA6GQBoT//1h0Q4nGoybtgoBxiIbJu8VRn/9CZrQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net462": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net47": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net471": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net472": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net48": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json"], "net5.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net6.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "net7.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp2.2": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netcoreapp3.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"], "netstandard2.1": ["NuGet.Configuration", "NuGet.Versioning", "Newtonsoft.Json", "System.Security.Cryptography.Cng", "System.Security.Cryptography.Pkcs"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Nuget.Packaging.Core", "version": "5.10.0", "sha512": "sha512-/WXGAbLb4T0pwEfEeY0j8zOVpS36OHNUANL95txANysbLoG7tUr9e+5je+Nfh3iIqzMaHIZXT6JKFvHOBwAotw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.ProjectModel", "version": "5.10.0", "sha512": "sha512-gsZS2Kuat3ZjjPcBQ3Mc8QlRv6mP1OzNzkF4Dzybu3LgtG+kwvgQh4UMLbiIrko6WKbwVTbr8nQYpL+wsVZ4hA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.DependencyResolver.Core"], "net462": ["NuGet.DependencyResolver.Core"], "net47": ["NuGet.DependencyResolver.Core"], "net471": ["NuGet.DependencyResolver.Core"], "net472": ["NuGet.DependencyResolver.Core"], "net48": ["NuGet.DependencyResolver.Core"], "net5.0": ["NuGet.DependencyResolver.Core"], "net6.0": ["NuGet.DependencyResolver.Core"], "net7.0": ["NuGet.DependencyResolver.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.DependencyResolver.Core"], "netcoreapp2.1": ["NuGet.DependencyResolver.Core"], "netcoreapp2.2": ["NuGet.DependencyResolver.Core"], "netcoreapp3.0": ["NuGet.DependencyResolver.Core"], "netcoreapp3.1": ["NuGet.DependencyResolver.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.DependencyResolver.Core"], "netstandard2.1": ["NuGet.DependencyResolver.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Protocol", "version": "5.10.0", "sha512": "sha512-lY85Pgf7kr0JwTufdJmfDgBwN9BRQc96F4xxKrUGSALhuZRRC7y6f2RN1JQ0UTPIXlQx7HTG/h0UZEknQj3/UQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Resolver", "version": "5.10.0", "sha512": "sha512-a2zWl9RkKDkcVUqfRJjz3O4uoPIWf3PGaFf6AntXtTKjvvsB6SZz8jjPSGdLgTTRIWzsFlybKp6yU+GaXeIQkg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["NuGet.Protocol"], "net462": ["NuGet.Protocol"], "net47": ["NuGet.Protocol"], "net471": ["NuGet.Protocol"], "net472": ["NuGet.Protocol"], "net48": ["NuGet.Protocol"], "net5.0": ["NuGet.Protocol"], "net6.0": ["NuGet.Protocol"], "net7.0": ["NuGet.Protocol"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["NuGet.Protocol"], "netcoreapp2.1": ["NuGet.Protocol"], "netcoreapp2.2": ["NuGet.Protocol"], "netcoreapp3.0": ["NuGet.Protocol"], "netcoreapp3.1": ["NuGet.Protocol"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["NuGet.Protocol"], "netstandard2.1": ["NuGet.Protocol"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NuGet.Versioning", "version": "5.10.0", "sha512": "sha512-NW11tfXijCWeI8d71HKpNPKPzJqr30PtUyJHzCpKFMFTGZhsHh2YxgjKBuhpC5R59SMZUzqrFF5CgJ8uGaupqg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NUnit", "version": "3.12.0", "sha512": "sha512-HAhwFxr+Z+PJf8hXzc747NecvsDwEZ+3X8SA5+GIRM43GAy1Ap+TQPMHsWCnisfes5vPZ1/a2md/91u+shoTsQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["NETStandard.Library"], "net6.0": ["NETStandard.Library"], "net7.0": ["NETStandard.Library"], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": ["NETStandard.Library"], "netcoreapp2.1": ["NETStandard.Library"], "netcoreapp2.2": ["NETStandard.Library"], "netcoreapp3.0": ["NETStandard.Library"], "netcoreapp3.1": ["NETStandard.Library"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": ["NETStandard.Library"], "netstandard2.1": ["NETStandard.Library"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NUnitLite", "version": "3.12.0", "sha512": "sha512-M9VVS4x3KURXFS4HTl2b7uJOX7vOi2wzpHACmNX6ANlBmb0/hIehJLciiVvddD3ubIIL81EF4Qk54kpsUOtVFQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": ["NUnit"], "net40": ["NUnit"], "net403": ["NUnit"], "net45": ["NUnit"], "net451": ["NUnit"], "net452": ["NUnit"], "net46": ["NUnit"], "net461": ["NUnit"], "net462": ["NUnit"], "net47": ["NUnit"], "net471": ["NUnit"], "net472": ["NUnit"], "net48": ["NUnit"], "net5.0": ["NUnit", "NETStandard.Library"], "net6.0": ["NUnit", "NETStandard.Library"], "net7.0": ["NUnit", "NETStandard.Library"], "netcoreapp1.0": ["NUnit", "NETStandard.Library"], "netcoreapp1.1": ["NUnit", "NETStandard.Library"], "netcoreapp2.0": ["NUnit", "NETStandard.Library"], "netcoreapp2.1": ["NUnit", "NETStandard.Library"], "netcoreapp2.2": ["NUnit", "NETStandard.Library"], "netcoreapp3.0": ["NUnit", "NETStandard.Library"], "netcoreapp3.1": ["NUnit", "NETStandard.Library"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": ["NUnit", "NETStandard.Library"], "netstandard1.5": ["NUnit", "NETStandard.Library"], "netstandard1.6": ["NUnit", "NETStandard.Library"], "netstandard2.0": ["NUnit", "NETStandard.Library"], "netstandard2.1": ["NUnit", "NETStandard.Library"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.ComponentModel.Annotations", "version": "5.0.0", "sha512": "sha512-WJqsTGaXAc55EPGjJylPFXiNPs/x1t9dklVlHlIBxUEcIxIob6sRGm9Un7TehkyEFM+vKjZd7rbwaMH/znw1PA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": ["NETStandard.Library"], "netcoreapp1.1": ["NETStandard.Library"], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": ["NETStandard.Library"], "netstandard1.2": ["NETStandard.Library"], "netstandard1.3": ["NETStandard.Library"], "netstandard1.4": ["NETStandard.Library"], "netstandard1.5": ["NETStandard.Library"], "netstandard1.6": ["NETStandard.Library"], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.ComponentModel.Composition", "version": "6.0.0", "sha512": "sha512-YWQ3ENu0D2st9ZV+Yj4u3IFcas0Pw7S4c7ymDUooPLb1psNJ53YniX2orSiY2OlRWnssaUsTytnVJa/KfCn5aA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Formats.Asn1", "version": "6.0.0", "sha512": "sha512-62YP6zLnvmFtFI3rjybbrnSeK6hHQCaFfJJfoNhQqrETJBPehSucQxIyQs5W+GGBW/rpSXD/0NqNW7mttIWXhA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Cng", "version": "5.0.0", "sha512": "sha512-trvkAklUhzM+/z9bPnGmDLzmbvD0l1IlC6gpFRpzjGLylTgtTPqm8Uv7tnDBTuBQObjEZBxNS0bChIi6zQCV9w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": ["System.Formats.Asn1"], "netcoreapp3.1": ["System.Formats.Asn1"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.Pkcs", "version": "6.0.1", "sha512": "sha512-ubxxZt0n9t8Xe/NtN53XMf6ZSfRKsk/T+mheDuoZbYrBJRLVyQ4pecXoROihl/DyC9uVOt6QrejwLAx1Raj1wg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "net6.0": ["System.Formats.Asn1"], "net7.0": ["System.Formats.Asn1"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp2.2": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netcoreapp3.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"], "netstandard2.1": ["System.Formats.Asn1", "System.Security.Cryptography.Cng"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, ], ) diff --git a/examples/aspnetcore/BUILD.bazel b/examples/aspnetcore/BUILD.bazel index 52db548e..9f0f740e 100644 --- a/examples/aspnetcore/BUILD.bazel +++ b/examples/aspnetcore/BUILD.bazel @@ -12,12 +12,12 @@ csharp_binary( "Program.cs", "WeatherForecast.cs", ], - private_deps = [ + project_sdk = "web", + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.aspnetcore.app.ref", "@example_deps//microsoft.netcore.app.ref", ], - project_sdk = "web", - target_frameworks = ["net6.0"], deps = [ ], ) diff --git a/examples/basic_csharp/BUILD.bazel b/examples/basic_csharp/BUILD.bazel index e32340d9..4dddf5e8 100644 --- a/examples/basic_csharp/BUILD.bazel +++ b/examples/basic_csharp/BUILD.bazel @@ -9,10 +9,10 @@ load( csharp_binary( name = "hello", srcs = ["hello.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], @@ -21,10 +21,10 @@ csharp_binary( csharp_nunit_test( name = "lib_test", srcs = ["libtest.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], @@ -34,9 +34,9 @@ csharp_library( name = "lib", srcs = ["lib.cs"], internals_visible_to = ["lib_test"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [], ) diff --git a/examples/basic_fsharp/BUILD.bazel b/examples/basic_fsharp/BUILD.bazel index e68c8370..780c93c2 100644 --- a/examples/basic_fsharp/BUILD.bazel +++ b/examples/basic_fsharp/BUILD.bazel @@ -8,10 +8,10 @@ load( fsharp_binary( name = "hello", srcs = ["hello.fs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", "@example_deps//fsharp.core", @@ -21,10 +21,10 @@ fsharp_binary( fsharp_nunit_test( name = "lib_test", srcs = ["libtest.fs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", "@example_deps//fsharp.core", @@ -35,10 +35,10 @@ fsharp_library( name = "lib", srcs = ["lib.fs"], internals_visible_to = ["lib_test"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@example_deps//fsharp.core", ], diff --git a/examples/diamond/BUILD.bazel b/examples/diamond/BUILD.bazel deleted file mode 100644 index 5304e24e..00000000 --- a/examples/diamond/BUILD.bazel +++ /dev/null @@ -1,40 +0,0 @@ -load("@rules_dotnet//dotnet:defs.bzl", "csharp_library") - -# This example comes from docs/MultiTargetingDesign.md. -# It demonstrates how framework selection works, and why, sometimes, we compile -# more things than we need to ship, but in the same way as MSBuild. This -# example isn't meant to be realistic. - -csharp_library( - name = "Top", - srcs = ["Top.cs"], - target_frameworks = ["net48"], - deps = [ - "Left", - "Right", - ], -) - -csharp_library( - name = "Left", - srcs = ["Left.cs"], - target_frameworks = ["net45"], - deps = ["Bottom"], -) - -csharp_library( - name = "Right", - srcs = ["Right.cs"], - target_frameworks = ["netstandard2.0"], - deps = ["Bottom"], -) - -csharp_library( - name = "Bottom", - srcs = ["Bottom.cs"], - target_frameworks = [ - "net48", - "net40", - "netstandard1.4", - ], -) diff --git a/examples/diamond/Bottom.cs b/examples/diamond/Bottom.cs deleted file mode 100644 index e69de29b..00000000 diff --git a/examples/diamond/Left.cs b/examples/diamond/Left.cs deleted file mode 100644 index e69de29b..00000000 diff --git a/examples/diamond/Right.cs b/examples/diamond/Right.cs deleted file mode 100644 index e69de29b..00000000 diff --git a/examples/diamond/Top.cs b/examples/diamond/Top.cs deleted file mode 100644 index e69de29b..00000000 diff --git a/examples/example_deps.bzl b/examples/example_deps.bzl index 06beebcb..5f011fb9 100644 --- a/examples/example_deps.bzl +++ b/examples/example_deps.bzl @@ -7,19 +7,19 @@ def example_deps(): nuget_repo( name = "example_deps", packages = [ - {"id": "Expecto", "version": "9.0.4", "sha512": "sha512-k0TT6pNIyzDaJD0ZxHDhNU0UmmWZlum2XFfHTGrkApQ+JUdjcoBqKOACXrSkfiLVYsD8Ww768eeAiKPP3QYetw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "Mono.Cecil"], "net462": ["FSharp.Core", "Mono.Cecil"], "net47": ["FSharp.Core", "Mono.Cecil"], "net471": ["FSharp.Core", "Mono.Cecil"], "net472": ["FSharp.Core", "Mono.Cecil"], "net48": ["FSharp.Core", "Mono.Cecil"], "net5.0": ["FSharp.Core", "Mono.Cecil"], "net6.0": ["FSharp.Core", "Mono.Cecil"], "net7.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp2.1": ["FSharp.Core", "Mono.Cecil"], "netcoreapp2.2": ["FSharp.Core", "Mono.Cecil"], "netcoreapp3.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp3.1": ["FSharp.Core", "Mono.Cecil"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "Mono.Cecil"], "netstandard2.1": ["FSharp.Core", "Mono.Cecil"]}, "targeting_pack_overrides": []}, - {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "FSharp.Data", "version": "5.0.2", "sha512": "sha512-BlDokqEWMysUMedhZzaREUPrhAbj8VRUEXjUrd85fzH63XaxppqjEYtpjQLnQcwkyWI71bzr3cfzYgaAANQLAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "Microsoft.AspNetCore.App.Ref", "version": "6.0.8", "sha512": "sha512-yLy7tFshfGLJRCFdlmOv8YOlJ4J5IfE88bnqiulxsJzhgEQNfbPQLpxbvmjCO3Zg0tdBLAS4B8QYWoojkOkWLg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Extensions.Caching.Abstractions|6.0.0", "Microsoft.Extensions.Caching.Memory|6.0.0", "Microsoft.Extensions.Configuration.Abstractions|6.0.0", "Microsoft.Extensions.Configuration.Binder|6.0.0", "Microsoft.Extensions.Configuration.CommandLine|6.0.0", "Microsoft.Extensions.Configuration|6.0.0", "Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0", "Microsoft.Extensions.Configuration.FileExtensions|6.0.0", "Microsoft.Extensions.Configuration.Ini|6.0.0", "Microsoft.Extensions.Configuration.Json|6.0.0", "Microsoft.Extensions.Configuration.UserSecrets|6.0.0", "Microsoft.Extensions.Configuration.Xml|6.0.0", "Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0", "Microsoft.Extensions.DependencyInjection|6.0.0", "Microsoft.Extensions.FileProviders.Abstractions|6.0.0", "Microsoft.Extensions.FileProviders.Composite|6.0.0", "Microsoft.Extensions.FileProviders.Physical|6.0.0", "Microsoft.Extensions.FileSystemGlobbing|6.0.0", "Microsoft.Extensions.Hosting.Abstractions|6.0.0", "Microsoft.Extensions.Hosting|6.0.0", "Microsoft.Extensions.Http|6.0.0", "Microsoft.Extensions.Logging.Abstractions|6.0.0", "Microsoft.Extensions.Logging.Configuration|6.0.0", "Microsoft.Extensions.Logging.Console|6.0.0", "Microsoft.Extensions.Logging.Debug|6.0.0", "Microsoft.Extensions.Logging|6.0.0", "Microsoft.Extensions.Logging.EventLog|6.0.0", "Microsoft.Extensions.Logging.EventSource|6.0.0", "Microsoft.Extensions.Logging.TraceSource|6.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0", "Microsoft.Extensions.Options.DataAnnotations|6.0.0", "Microsoft.Extensions.Options|6.0.0", "Microsoft.Extensions.Primitives|6.0.0", "System.Diagnostics.EventLog|6.0.0", "System.IO.Pipelines|6.0.0", "System.Security.Cryptography.Xml|6.0.0", "Microsoft.AspNetCore.Antiforgery|6.0.0", "Microsoft.AspNetCore.Authentication.Abstractions|6.0.0", "Microsoft.AspNetCore.Authentication.Cookies|6.0.0", "Microsoft.AspNetCore.Authentication.Core|6.0.0", "Microsoft.AspNetCore.Authentication|6.0.0", "Microsoft.AspNetCore.Authentication.OAuth|6.0.0", "Microsoft.AspNetCore.Authorization|6.0.0", "Microsoft.AspNetCore.Authorization.Policy|6.0.0", "Microsoft.AspNetCore.Components.Authorization|6.0.0", "Microsoft.AspNetCore.Components|6.0.0", "Microsoft.AspNetCore.Components.Forms|6.0.0", "Microsoft.AspNetCore.Components.Server|6.0.0", "Microsoft.AspNetCore.Components.Web|6.0.0", "Microsoft.AspNetCore.Connections.Abstractions|6.0.0", "Microsoft.AspNetCore.CookiePolicy|6.0.0", "Microsoft.AspNetCore.Cors|6.0.0", "Microsoft.AspNetCore.Cryptography.Internal|6.0.0", "Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0", "Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0", "Microsoft.AspNetCore.DataProtection|6.0.0", "Microsoft.AspNetCore.DataProtection.Extensions|6.0.0", "Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0", "Microsoft.AspNetCore.Diagnostics|6.0.0", "Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0", "Microsoft.AspNetCore|6.0.0", "Microsoft.AspNetCore.HostFiltering|6.0.0", "Microsoft.AspNetCore.Hosting.Abstractions|6.0.0", "Microsoft.AspNetCore.Hosting|6.0.0", "Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0", "Microsoft.AspNetCore.Html.Abstractions|6.0.0", "Microsoft.AspNetCore.Http.Abstractions|6.0.0", "Microsoft.AspNetCore.Http.Connections.Common|6.0.0", "Microsoft.AspNetCore.Http.Connections|6.0.0", "Microsoft.AspNetCore.Http|6.0.0", "Microsoft.AspNetCore.Http.Extensions|6.0.0", "Microsoft.AspNetCore.Http.Features|6.0.0", "Microsoft.AspNetCore.Http.Results|6.0.0", "Microsoft.AspNetCore.HttpLogging|6.0.0", "Microsoft.AspNetCore.HttpOverrides|6.0.0", "Microsoft.AspNetCore.HttpsPolicy|6.0.0", "Microsoft.AspNetCore.Identity|6.0.0", "Microsoft.AspNetCore.Localization|6.0.0", "Microsoft.AspNetCore.Localization.Routing|6.0.0", "Microsoft.AspNetCore.Metadata|6.0.0", "Microsoft.AspNetCore.Mvc.Abstractions|6.0.0", "Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0", "Microsoft.AspNetCore.Mvc.Core|6.0.0", "Microsoft.AspNetCore.Mvc.Cors|6.0.0", "Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0", "Microsoft.AspNetCore.Mvc|6.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0", "Microsoft.AspNetCore.Mvc.Localization|6.0.0", "Microsoft.AspNetCore.Mvc.Razor|6.0.0", "Microsoft.AspNetCore.Mvc.RazorPages|6.0.0", "Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0", "Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0", "Microsoft.AspNetCore.Razor|6.0.0", "Microsoft.AspNetCore.Razor.Runtime|6.0.0", "Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0", "Microsoft.AspNetCore.ResponseCaching|6.0.0", "Microsoft.AspNetCore.ResponseCompression|6.0.0", "Microsoft.AspNetCore.Rewrite|6.0.0", "Microsoft.AspNetCore.Routing.Abstractions|6.0.0", "Microsoft.AspNetCore.Routing|6.0.0", "Microsoft.AspNetCore.Server.HttpSys|6.0.0", "Microsoft.AspNetCore.Server.IIS|6.0.0", "Microsoft.AspNetCore.Server.IISIntegration|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0", "Microsoft.AspNetCore.Server.Kestrel|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0", "Microsoft.AspNetCore.Session|6.0.0", "Microsoft.AspNetCore.SignalR.Common|6.0.0", "Microsoft.AspNetCore.SignalR.Core|6.0.0", "Microsoft.AspNetCore.SignalR|6.0.0", "Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0", "Microsoft.AspNetCore.StaticFiles|6.0.0", "Microsoft.AspNetCore.WebSockets|6.0.0", "Microsoft.AspNetCore.WebUtilities|6.0.0", "Microsoft.Extensions.Configuration.KeyPerFile|6.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0", "Microsoft.Extensions.Features|6.0.0", "Microsoft.Extensions.FileProviders.Embedded|6.0.0", "Microsoft.Extensions.Identity.Core|6.0.0", "Microsoft.Extensions.Identity.Stores|6.0.0", "Microsoft.Extensions.Localization.Abstractions|6.0.0", "Microsoft.Extensions.Localization|6.0.0", "Microsoft.Extensions.ObjectPool|6.0.0", "Microsoft.Extensions.WebEncoders|6.0.0", "Microsoft.JSInterop|6.0.0", "Microsoft.Net.Http.Headers|6.0.0"]}, - {"id": "Microsoft.AspNetCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-3Hig5sP4ALm0aaB3cYCdhmW0a6SgT23ReaP5oYOZ9p1fQoQy4fHeLlU2LXQTXgJDopd3sQZCaWg639rJCYppiQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.AspNetCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-AQHu61cati6QzemklVlevQgChYJ3+msUUnXVDh51cEHhFEO/HBLKFWTiS1A49jnLBFpNUY98jPJMauyKIrh4jQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.AspNetCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-fSuPkgA89T57pmGx2g6pcMSizT49ABL43d6s8Vp0PCzPjrme7UBISHATM9zP45Sq6GUhTZe2892wj7NmPa0wBA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.8", "sha512": "sha512-TcZWOpmw+hWGQANrK0YWS3oHvtxdkn5A5JB284IdgXNvQ4rGABOPK8u52qB2bATbpSy3DbiMdobRxgAB2/mcJQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.NETCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-cjVzAUiYxPv949mXl0IbwzSRq0xBTGcW3N619CUcCwe35Ma1C1Tg1nh75Xc+OEn5+eAMW/S66dy+kQhdc277tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-RDOy3pzl0sutv5U3JAx23JWiw2UCoHAPNsCo35TA8MU2DM+LMDXN/lxi2cslot6GfFsxe0cYhclkEocHa2xMPQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-pgpxzvQPZzBPD1lWulgRO/aafBhSBLhqH+SrBD+sYSIu7eswlxE5icW/r8o60fNFKYVg0CFvrnmCut5YpTT27Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.Platforms", "version": "7.0.4", "sha512": "sha512-mcQWjuDBh4WHGG4WcBI0k025WAdA2afMm6fs42sm1f+3gRyNQUiuMVT5gAWNUGSHmlu6qn/TCnAQpfl4Gm6cBw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "Mono.Cecil", "version": "0.11.4", "sha512": "sha512-CnjwUMmFHnScNG8e/4DRZQQX67H5ajekRDudmZ6Fy1jCLhyH1jjzbQCOEFhBLa2NjPWQpMF+RHdBJY8a7GgmlA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms"], "netstandard1.1": ["Microsoft.NETCore.Platforms"], "netstandard1.2": ["Microsoft.NETCore.Platforms"], "netstandard1.3": ["Microsoft.NETCore.Platforms"], "netstandard1.4": ["Microsoft.NETCore.Platforms"], "netstandard1.5": ["Microsoft.NETCore.Platforms"], "netstandard1.6": ["Microsoft.NETCore.Platforms"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": []}, + {"id": "Expecto", "version": "9.0.4", "sha512": "sha512-k0TT6pNIyzDaJD0ZxHDhNU0UmmWZlum2XFfHTGrkApQ+JUdjcoBqKOACXrSkfiLVYsD8Ww768eeAiKPP3QYetw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "Mono.Cecil"], "net462": ["FSharp.Core", "Mono.Cecil"], "net47": ["FSharp.Core", "Mono.Cecil"], "net471": ["FSharp.Core", "Mono.Cecil"], "net472": ["FSharp.Core", "Mono.Cecil"], "net48": ["FSharp.Core", "Mono.Cecil"], "net5.0": ["FSharp.Core", "Mono.Cecil"], "net6.0": ["FSharp.Core", "Mono.Cecil"], "net7.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp2.1": ["FSharp.Core", "Mono.Cecil"], "netcoreapp2.2": ["FSharp.Core", "Mono.Cecil"], "netcoreapp3.0": ["FSharp.Core", "Mono.Cecil"], "netcoreapp3.1": ["FSharp.Core", "Mono.Cecil"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "Mono.Cecil"], "netstandard2.1": ["FSharp.Core", "Mono.Cecil"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Data", "version": "5.0.2", "sha512": "sha512-BlDokqEWMysUMedhZzaREUPrhAbj8VRUEXjUrd85fzH63XaxppqjEYtpjQLnQcwkyWI71bzr3cfzYgaAANQLAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.AspNetCore.App.Ref", "version": "6.0.8", "sha512": "sha512-yLy7tFshfGLJRCFdlmOv8YOlJ4J5IfE88bnqiulxsJzhgEQNfbPQLpxbvmjCO3Zg0tdBLAS4B8QYWoojkOkWLg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.Extensions.Caching.Abstractions|6.0.0", "Microsoft.Extensions.Caching.Memory|6.0.0", "Microsoft.Extensions.Configuration.Abstractions|6.0.0", "Microsoft.Extensions.Configuration.Binder|6.0.0", "Microsoft.Extensions.Configuration.CommandLine|6.0.0", "Microsoft.Extensions.Configuration|6.0.0", "Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0", "Microsoft.Extensions.Configuration.FileExtensions|6.0.0", "Microsoft.Extensions.Configuration.Ini|6.0.0", "Microsoft.Extensions.Configuration.Json|6.0.0", "Microsoft.Extensions.Configuration.UserSecrets|6.0.0", "Microsoft.Extensions.Configuration.Xml|6.0.0", "Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0", "Microsoft.Extensions.DependencyInjection|6.0.0", "Microsoft.Extensions.FileProviders.Abstractions|6.0.0", "Microsoft.Extensions.FileProviders.Composite|6.0.0", "Microsoft.Extensions.FileProviders.Physical|6.0.0", "Microsoft.Extensions.FileSystemGlobbing|6.0.0", "Microsoft.Extensions.Hosting.Abstractions|6.0.0", "Microsoft.Extensions.Hosting|6.0.0", "Microsoft.Extensions.Http|6.0.0", "Microsoft.Extensions.Logging.Abstractions|6.0.0", "Microsoft.Extensions.Logging.Configuration|6.0.0", "Microsoft.Extensions.Logging.Console|6.0.0", "Microsoft.Extensions.Logging.Debug|6.0.0", "Microsoft.Extensions.Logging|6.0.0", "Microsoft.Extensions.Logging.EventLog|6.0.0", "Microsoft.Extensions.Logging.EventSource|6.0.0", "Microsoft.Extensions.Logging.TraceSource|6.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0", "Microsoft.Extensions.Options.DataAnnotations|6.0.0", "Microsoft.Extensions.Options|6.0.0", "Microsoft.Extensions.Primitives|6.0.0", "System.Diagnostics.EventLog|6.0.0", "System.IO.Pipelines|6.0.0", "System.Security.Cryptography.Xml|6.0.0", "Microsoft.AspNetCore.Antiforgery|6.0.0", "Microsoft.AspNetCore.Authentication.Abstractions|6.0.0", "Microsoft.AspNetCore.Authentication.Cookies|6.0.0", "Microsoft.AspNetCore.Authentication.Core|6.0.0", "Microsoft.AspNetCore.Authentication|6.0.0", "Microsoft.AspNetCore.Authentication.OAuth|6.0.0", "Microsoft.AspNetCore.Authorization|6.0.0", "Microsoft.AspNetCore.Authorization.Policy|6.0.0", "Microsoft.AspNetCore.Components.Authorization|6.0.0", "Microsoft.AspNetCore.Components|6.0.0", "Microsoft.AspNetCore.Components.Forms|6.0.0", "Microsoft.AspNetCore.Components.Server|6.0.0", "Microsoft.AspNetCore.Components.Web|6.0.0", "Microsoft.AspNetCore.Connections.Abstractions|6.0.0", "Microsoft.AspNetCore.CookiePolicy|6.0.0", "Microsoft.AspNetCore.Cors|6.0.0", "Microsoft.AspNetCore.Cryptography.Internal|6.0.0", "Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0", "Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0", "Microsoft.AspNetCore.DataProtection|6.0.0", "Microsoft.AspNetCore.DataProtection.Extensions|6.0.0", "Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0", "Microsoft.AspNetCore.Diagnostics|6.0.0", "Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0", "Microsoft.AspNetCore|6.0.0", "Microsoft.AspNetCore.HostFiltering|6.0.0", "Microsoft.AspNetCore.Hosting.Abstractions|6.0.0", "Microsoft.AspNetCore.Hosting|6.0.0", "Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0", "Microsoft.AspNetCore.Html.Abstractions|6.0.0", "Microsoft.AspNetCore.Http.Abstractions|6.0.0", "Microsoft.AspNetCore.Http.Connections.Common|6.0.0", "Microsoft.AspNetCore.Http.Connections|6.0.0", "Microsoft.AspNetCore.Http|6.0.0", "Microsoft.AspNetCore.Http.Extensions|6.0.0", "Microsoft.AspNetCore.Http.Features|6.0.0", "Microsoft.AspNetCore.Http.Results|6.0.0", "Microsoft.AspNetCore.HttpLogging|6.0.0", "Microsoft.AspNetCore.HttpOverrides|6.0.0", "Microsoft.AspNetCore.HttpsPolicy|6.0.0", "Microsoft.AspNetCore.Identity|6.0.0", "Microsoft.AspNetCore.Localization|6.0.0", "Microsoft.AspNetCore.Localization.Routing|6.0.0", "Microsoft.AspNetCore.Metadata|6.0.0", "Microsoft.AspNetCore.Mvc.Abstractions|6.0.0", "Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0", "Microsoft.AspNetCore.Mvc.Core|6.0.0", "Microsoft.AspNetCore.Mvc.Cors|6.0.0", "Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0", "Microsoft.AspNetCore.Mvc|6.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0", "Microsoft.AspNetCore.Mvc.Localization|6.0.0", "Microsoft.AspNetCore.Mvc.Razor|6.0.0", "Microsoft.AspNetCore.Mvc.RazorPages|6.0.0", "Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0", "Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0", "Microsoft.AspNetCore.Razor|6.0.0", "Microsoft.AspNetCore.Razor.Runtime|6.0.0", "Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0", "Microsoft.AspNetCore.ResponseCaching|6.0.0", "Microsoft.AspNetCore.ResponseCompression|6.0.0", "Microsoft.AspNetCore.Rewrite|6.0.0", "Microsoft.AspNetCore.Routing.Abstractions|6.0.0", "Microsoft.AspNetCore.Routing|6.0.0", "Microsoft.AspNetCore.Server.HttpSys|6.0.0", "Microsoft.AspNetCore.Server.IIS|6.0.0", "Microsoft.AspNetCore.Server.IISIntegration|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0", "Microsoft.AspNetCore.Server.Kestrel|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0", "Microsoft.AspNetCore.Session|6.0.0", "Microsoft.AspNetCore.SignalR.Common|6.0.0", "Microsoft.AspNetCore.SignalR.Core|6.0.0", "Microsoft.AspNetCore.SignalR|6.0.0", "Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0", "Microsoft.AspNetCore.StaticFiles|6.0.0", "Microsoft.AspNetCore.WebSockets|6.0.0", "Microsoft.AspNetCore.WebUtilities|6.0.0", "Microsoft.Extensions.Configuration.KeyPerFile|6.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0", "Microsoft.Extensions.Features|6.0.0", "Microsoft.Extensions.FileProviders.Embedded|6.0.0", "Microsoft.Extensions.Identity.Core|6.0.0", "Microsoft.Extensions.Identity.Stores|6.0.0", "Microsoft.Extensions.Localization.Abstractions|6.0.0", "Microsoft.Extensions.Localization|6.0.0", "Microsoft.Extensions.ObjectPool|6.0.0", "Microsoft.Extensions.WebEncoders|6.0.0", "Microsoft.JSInterop|6.0.0", "Microsoft.Net.Http.Headers|6.0.0"], "framework_list": ["Microsoft.AspNetCore.Antiforgery|6.0.0.0", "Microsoft.AspNetCore.Authentication.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Authentication.Cookies|6.0.0.0", "Microsoft.AspNetCore.Authentication.Core|6.0.0.0", "Microsoft.AspNetCore.Authentication.OAuth|6.0.0.0", "Microsoft.AspNetCore.Authentication|6.0.0.0", "Microsoft.AspNetCore.Authorization.Policy|6.0.0.0", "Microsoft.AspNetCore.Authorization|6.0.0.0", "Microsoft.AspNetCore.Components.Authorization|6.0.0.0", "Microsoft.AspNetCore.Components.Forms|6.0.0.0", "Microsoft.AspNetCore.Components.Server|6.0.0.0", "Microsoft.AspNetCore.Components.Web|6.0.0.0", "Microsoft.AspNetCore.Components|6.0.0.0", "Microsoft.AspNetCore.Connections.Abstractions|6.0.0.0", "Microsoft.AspNetCore.CookiePolicy|6.0.0.0", "Microsoft.AspNetCore.Cors|6.0.0.0", "Microsoft.AspNetCore.Cryptography.Internal|6.0.0.0", "Microsoft.AspNetCore.Cryptography.KeyDerivation|6.0.0.0", "Microsoft.AspNetCore.DataProtection.Abstractions|6.0.0.0", "Microsoft.AspNetCore.DataProtection.Extensions|6.0.0.0", "Microsoft.AspNetCore.DataProtection|6.0.0.0", "Microsoft.AspNetCore.Diagnostics.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Diagnostics.HealthChecks|6.0.0.0", "Microsoft.AspNetCore.Diagnostics|6.0.0.0", "Microsoft.AspNetCore.HostFiltering|6.0.0.0", "Microsoft.AspNetCore.Hosting.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Hosting.Server.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Hosting|6.0.0.0", "Microsoft.AspNetCore.Html.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Http.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Http.Connections.Common|6.0.0.0", "Microsoft.AspNetCore.Http.Connections|6.0.0.0", "Microsoft.AspNetCore.Http.Extensions|6.0.0.0", "Microsoft.AspNetCore.Http.Features|6.0.0.0", "Microsoft.AspNetCore.Http.Results|6.0.0.0", "Microsoft.AspNetCore.Http|6.0.0.0", "Microsoft.AspNetCore.HttpLogging|6.0.0.0", "Microsoft.AspNetCore.HttpOverrides|6.0.0.0", "Microsoft.AspNetCore.HttpsPolicy|6.0.0.0", "Microsoft.AspNetCore.Identity|6.0.0.0", "Microsoft.AspNetCore.Localization.Routing|6.0.0.0", "Microsoft.AspNetCore.Localization|6.0.0.0", "Microsoft.AspNetCore.Metadata|6.0.0.0", "Microsoft.AspNetCore.Mvc.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Mvc.ApiExplorer|6.0.0.0", "Microsoft.AspNetCore.Mvc.Core|6.0.0.0", "Microsoft.AspNetCore.Mvc.Cors|6.0.0.0", "Microsoft.AspNetCore.Mvc.DataAnnotations|6.0.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Json|6.0.0.0", "Microsoft.AspNetCore.Mvc.Formatters.Xml|6.0.0.0", "Microsoft.AspNetCore.Mvc.Localization|6.0.0.0", "Microsoft.AspNetCore.Mvc.Razor|6.0.0.0", "Microsoft.AspNetCore.Mvc.RazorPages|6.0.0.0", "Microsoft.AspNetCore.Mvc.TagHelpers|6.0.0.0", "Microsoft.AspNetCore.Mvc.ViewFeatures|6.0.0.0", "Microsoft.AspNetCore.Mvc|6.0.0.0", "Microsoft.AspNetCore.Razor.Runtime|6.0.0.0", "Microsoft.AspNetCore.Razor|6.0.0.0", "Microsoft.AspNetCore.ResponseCaching.Abstractions|6.0.0.0", "Microsoft.AspNetCore.ResponseCaching|6.0.0.0", "Microsoft.AspNetCore.ResponseCompression|6.0.0.0", "Microsoft.AspNetCore.Rewrite|6.0.0.0", "Microsoft.AspNetCore.Routing.Abstractions|6.0.0.0", "Microsoft.AspNetCore.Routing|6.0.0.0", "Microsoft.AspNetCore.Server.HttpSys|6.0.0.0", "Microsoft.AspNetCore.Server.IIS|6.0.0.0", "Microsoft.AspNetCore.Server.IISIntegration|6.0.0.0", "Microsoft.AspNetCore.Server.Kestrel.Core|6.0.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic|6.0.0.0", "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets|6.0.0.0", "Microsoft.AspNetCore.Server.Kestrel|6.0.0.0", "Microsoft.AspNetCore.Session|6.0.0.0", "Microsoft.AspNetCore.SignalR.Common|6.0.0.0", "Microsoft.AspNetCore.SignalR.Core|6.0.0.0", "Microsoft.AspNetCore.SignalR.Protocols.Json|6.0.0.0", "Microsoft.AspNetCore.SignalR|6.0.0.0", "Microsoft.AspNetCore.StaticFiles|6.0.0.0", "Microsoft.AspNetCore.WebSockets|6.0.0.0", "Microsoft.AspNetCore.WebUtilities|6.0.0.0", "Microsoft.AspNetCore|6.0.0.0", "Microsoft.Extensions.Caching.Abstractions|6.0.0.0", "Microsoft.Extensions.Caching.Memory|6.0.0.0", "Microsoft.Extensions.Configuration.Abstractions|6.0.0.0", "Microsoft.Extensions.Configuration.Binder|6.0.0.0", "Microsoft.Extensions.Configuration.CommandLine|6.0.0.0", "Microsoft.Extensions.Configuration.EnvironmentVariables|6.0.0.0", "Microsoft.Extensions.Configuration.FileExtensions|6.0.0.0", "Microsoft.Extensions.Configuration.Ini|6.0.0.0", "Microsoft.Extensions.Configuration.Json|6.0.0.0", "Microsoft.Extensions.Configuration.KeyPerFile|6.0.0.0", "Microsoft.Extensions.Configuration.UserSecrets|6.0.0.0", "Microsoft.Extensions.Configuration.Xml|6.0.0.0", "Microsoft.Extensions.Configuration|6.0.0.0", "Microsoft.Extensions.DependencyInjection.Abstractions|6.0.0.0", "Microsoft.Extensions.DependencyInjection|6.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions|6.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks|6.0.0.0", "Microsoft.Extensions.Features|6.0.0.0", "Microsoft.Extensions.FileProviders.Abstractions|6.0.0.0", "Microsoft.Extensions.FileProviders.Composite|6.0.0.0", "Microsoft.Extensions.FileProviders.Embedded|6.0.0.0", "Microsoft.Extensions.FileProviders.Physical|6.0.0.0", "Microsoft.Extensions.FileSystemGlobbing|6.0.0.0", "Microsoft.Extensions.Hosting.Abstractions|6.0.0.0", "Microsoft.Extensions.Hosting|6.0.0.0", "Microsoft.Extensions.Http|6.0.0.0", "Microsoft.Extensions.Identity.Core|6.0.0.0", "Microsoft.Extensions.Identity.Stores|6.0.0.0", "Microsoft.Extensions.Localization.Abstractions|6.0.0.0", "Microsoft.Extensions.Localization|6.0.0.0", "Microsoft.Extensions.Logging.Abstractions|6.0.0.0", "Microsoft.Extensions.Logging.Configuration|6.0.0.0", "Microsoft.Extensions.Logging.Console|6.0.0.0", "Microsoft.Extensions.Logging.Debug|6.0.0.0", "Microsoft.Extensions.Logging.EventLog|6.0.0.0", "Microsoft.Extensions.Logging.EventSource|6.0.0.0", "Microsoft.Extensions.Logging.TraceSource|6.0.0.0", "Microsoft.Extensions.Logging|6.0.0.0", "Microsoft.Extensions.ObjectPool|6.0.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions|6.0.0.0", "Microsoft.Extensions.Options.DataAnnotations|6.0.0.0", "Microsoft.Extensions.Options|6.0.0.0", "Microsoft.Extensions.Primitives|6.0.0.0", "Microsoft.Extensions.WebEncoders|6.0.0.0", "Microsoft.JSInterop|6.0.0.0", "Microsoft.Net.Http.Headers|6.0.0.0", "System.Diagnostics.EventLog|6.0.0.0", "System.IO.Pipelines|6.0.0.0", "System.Security.Cryptography.Xml|6.0.0.0"]}, + {"id": "Microsoft.AspNetCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-3Hig5sP4ALm0aaB3cYCdhmW0a6SgT23ReaP5oYOZ9p1fQoQy4fHeLlU2LXQTXgJDopd3sQZCaWg639rJCYppiQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.AspNetCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-AQHu61cati6QzemklVlevQgChYJ3+msUUnXVDh51cEHhFEO/HBLKFWTiS1A49jnLBFpNUY98jPJMauyKIrh4jQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.AspNetCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-fSuPkgA89T57pmGx2g6pcMSizT49ABL43d6s8Vp0PCzPjrme7UBISHATM9zP45Sq6GUhTZe2892wj7NmPa0wBA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.8", "sha512": "sha512-TcZWOpmw+hWGQANrK0YWS3oHvtxdkn5A5JB284IdgXNvQ4rGABOPK8u52qB2bATbpSy3DbiMdobRxgAB2/mcJQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.NETCore.App.Runtime.linux-x64", "version": "6.0.8", "sha512": "sha512-cjVzAUiYxPv949mXl0IbwzSRq0xBTGcW3N619CUcCwe35Ma1C1Tg1nh75Xc+OEn5+eAMW/S66dy+kQhdc277tA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Runtime.osx-x64", "version": "6.0.8", "sha512": "sha512-RDOy3pzl0sutv5U3JAx23JWiw2UCoHAPNsCo35TA8MU2DM+LMDXN/lxi2cslot6GfFsxe0cYhclkEocHa2xMPQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Runtime.win-x64", "version": "6.0.8", "sha512": "sha512-pgpxzvQPZzBPD1lWulgRO/aafBhSBLhqH+SrBD+sYSIu7eswlxE5icW/r8o60fNFKYVg0CFvrnmCut5YpTT27Q==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.Platforms", "version": "7.0.4", "sha512": "sha512-mcQWjuDBh4WHGG4WcBI0k025WAdA2afMm6fs42sm1f+3gRyNQUiuMVT5gAWNUGSHmlu6qn/TCnAQpfl4Gm6cBw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Mono.Cecil", "version": "0.11.4", "sha512": "sha512-CnjwUMmFHnScNG8e/4DRZQQX67H5ajekRDudmZ6Fy1jCLhyH1jjzbQCOEFhBLa2NjPWQpMF+RHdBJY8a7GgmlA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "NETStandard.Library", "version": "2.0.3", "sha512": "sha512-548M6mnBSJWxsIlkQHfbzoYxpiYFXZZSL00p4GHYv8PkiqFBnnT68mW5mGEsA/ch9fDO9GkPgkFQpWiXZN7mAQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": ["Microsoft.NETCore.Platforms"], "net451": ["Microsoft.NETCore.Platforms"], "net452": ["Microsoft.NETCore.Platforms"], "net46": ["Microsoft.NETCore.Platforms"], "net461": ["Microsoft.NETCore.Platforms"], "net462": ["Microsoft.NETCore.Platforms"], "net47": ["Microsoft.NETCore.Platforms"], "net471": ["Microsoft.NETCore.Platforms"], "net472": ["Microsoft.NETCore.Platforms"], "net48": ["Microsoft.NETCore.Platforms"], "net5.0": ["Microsoft.NETCore.Platforms"], "net6.0": ["Microsoft.NETCore.Platforms"], "net7.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.0": ["Microsoft.NETCore.Platforms"], "netcoreapp1.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.0": ["Microsoft.NETCore.Platforms"], "netcoreapp2.1": ["Microsoft.NETCore.Platforms"], "netcoreapp2.2": ["Microsoft.NETCore.Platforms"], "netcoreapp3.0": ["Microsoft.NETCore.Platforms"], "netcoreapp3.1": ["Microsoft.NETCore.Platforms"], "netstandard": [], "netstandard1.0": ["Microsoft.NETCore.Platforms"], "netstandard1.1": ["Microsoft.NETCore.Platforms"], "netstandard1.2": ["Microsoft.NETCore.Platforms"], "netstandard1.3": ["Microsoft.NETCore.Platforms"], "netstandard1.4": ["Microsoft.NETCore.Platforms"], "netstandard1.5": ["Microsoft.NETCore.Platforms"], "netstandard1.6": ["Microsoft.NETCore.Platforms"], "netstandard2.0": ["Microsoft.NETCore.Platforms"], "netstandard2.1": ["Microsoft.NETCore.Platforms"]}, "targeting_pack_overrides": [], "framework_list": []}, ], ) diff --git a/examples/expecto/BUILD.bazel b/examples/expecto/BUILD.bazel index 30a3cead..4e2b4a78 100644 --- a/examples/expecto/BUILD.bazel +++ b/examples/expecto/BUILD.bazel @@ -10,10 +10,10 @@ fsharp_test( "test.fs", "main.fs", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@example_deps//expecto", "@example_deps//fsharp.core", diff --git a/examples/fsharp_type_provider/BUILD.bazel b/examples/fsharp_type_provider/BUILD.bazel index f0e81d1a..6f271027 100644 --- a/examples/fsharp_type_provider/BUILD.bazel +++ b/examples/fsharp_type_provider/BUILD.bazel @@ -6,10 +6,10 @@ load( fsharp_nunit_test( name = "fsharp_type_provider", srcs = ["Main.fs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "//fsharp_type_provider/type_provider_lib", "@example_deps//fsharp.core", diff --git a/examples/fsharp_type_provider/type_provider_lib/BUILD.bazel b/examples/fsharp_type_provider/type_provider_lib/BUILD.bazel index c4e36a19..496763dc 100644 --- a/examples/fsharp_type_provider/type_provider_lib/BUILD.bazel +++ b/examples/fsharp_type_provider/type_provider_lib/BUILD.bazel @@ -9,10 +9,10 @@ fsharp_library( # Files used by type providers at compile time need to be put here compile_data = ["foo.json"], internals_visible_to = ["lib_test"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//fsharp_type_provider:__subpackages__"], deps = [ "@example_deps//fsharp.core", diff --git a/examples/netstandard2.0/BUILD.bazel b/examples/netstandard2.0/BUILD.bazel index a684fc3a..06ab3ffd 100644 --- a/examples/netstandard2.0/BUILD.bazel +++ b/examples/netstandard2.0/BUILD.bazel @@ -7,10 +7,10 @@ load( csharp_nunit_test( name = "lib_test", srcs = ["libtest.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ":lib", ], @@ -20,9 +20,9 @@ csharp_library( name = "lib", srcs = ["lib.cs"], internals_visible_to = ["lib_test"], - private_deps = [ + target_frameworks = ["netstandard2.0"], + targeting_packs = [ "@example_deps//netstandard.library", ], - target_frameworks = ["netstandard2.0"], deps = [], ) diff --git a/examples/paket.lock b/examples/paket.lock index 58d35be8..9b47c5c5 100644 --- a/examples/paket.lock +++ b/examples/paket.lock @@ -2,7 +2,7 @@ GROUP example_deps STORAGE: NONE -RESTRICTION: == net6.0 +RESTRICTION: || (== net6.0) (== netstandard2.0) NUGET remote: https://api.nuget.org/v3/index.json Expecto (9.0.4) diff --git a/examples/paket/BUILD.bazel b/examples/paket/BUILD.bazel index a578a8c0..61dc53d9 100644 --- a/examples/paket/BUILD.bazel +++ b/examples/paket/BUILD.bazel @@ -6,11 +6,11 @@ fsharp_binary( # Keep order "Main.fs", ], - private_deps = [ - "@example_deps//microsoft.netcore.app.ref", - ], tags = ["requires-network"], target_frameworks = ["net6.0"], + targeting_packs = [ + "@example_deps//microsoft.netcore.app.ref", + ], deps = [ "@paket.main//argu", "@paket.main//fsharp.core", @@ -25,11 +25,11 @@ fsharp_binary( # Keep order "Main.fs", ], - private_deps = [ - "@example_deps//microsoft.netcore.app.ref", - ], tags = ["requires-network"], target_frameworks = ["net6.0"], + targeting_packs = [ + "@example_deps//microsoft.netcore.app.ref", + ], deps = [ "@paket.othergroup//argu", "@paket.othergroup//fsharp.core", diff --git a/examples/paket/deps/paket.bzl b/examples/paket/deps/paket.bzl index 2b953f92..3542098e 100644 --- a/examples/paket/deps/paket.bzl +++ b/examples/paket/deps/paket.bzl @@ -7,32 +7,32 @@ def paket(): nuget_repo( name = "paket.main", packages = [ - {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": []}, - {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "FSharp.Data", "version": "4.2.8", "sha512": "sha512-Rcs+BsL424ryhiKNYzBVqvDeIJnei1DgfAnrQ+bg+bOoXgDXtpUTh6ZeG8DWu2mKlfi9LFhByg/KjydL7E8v0g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": []}, - {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": []}, - {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, + {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Data", "version": "4.2.8", "sha512": "sha512-Rcs+BsL424ryhiKNYzBVqvDeIJnei1DgfAnrQ+bg+bOoXgDXtpUTh6ZeG8DWu2mKlfi9LFhByg/KjydL7E8v0g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, ], ) nuget_repo( name = "paket.othergroup", packages = [ - {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": []}, - {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "FSharp.Data", "version": "4.2.8", "sha512": "sha512-Rcs+BsL424ryhiKNYzBVqvDeIJnei1DgfAnrQ+bg+bOoXgDXtpUTh6ZeG8DWu2mKlfi9LFhByg/KjydL7E8v0g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": []}, - {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"]}, - {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": []}, - {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, - {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": []}, - {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": []}, + {"id": "Argu", "version": "6.1.1", "sha512": "sha512-ed1N3RMohnxS54MYuMgPz3766hXItY3L12IrPazZ+F8CXPKkxyV+p8xVkWmE5NDnRhEvaWptRhBrXstK9DhS/w==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net462": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net47": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net471": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net472": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net48": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net5.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net6.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "net7.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp2.2": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netcoreapp3.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core", "System.Configuration.ConfigurationManager"], "netstandard2.1": ["FSharp.Core", "System.Configuration.ConfigurationManager"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Core", "version": "6.0.3", "sha512": "sha512-aDyKHiVFMwXWJrfW90iAeKyvw/lN+x98DPfx4oXke9Qnl4dz1sOi8KT2iczGeunqyWXh7nm+XUJ18i/0P3pZYw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "FSharp.Data", "version": "4.2.8", "sha512": "sha512-Rcs+BsL424ryhiKNYzBVqvDeIJnei1DgfAnrQ+bg+bOoXgDXtpUTh6ZeG8DWu2mKlfi9LFhByg/KjydL7E8v0g==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["FSharp.Core"], "net462": ["FSharp.Core"], "net47": ["FSharp.Core"], "net471": ["FSharp.Core"], "net472": ["FSharp.Core"], "net48": ["FSharp.Core"], "net5.0": ["FSharp.Core"], "net6.0": ["FSharp.Core"], "net7.0": ["FSharp.Core"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["FSharp.Core"], "netcoreapp2.1": ["FSharp.Core"], "netcoreapp2.2": ["FSharp.Core"], "netcoreapp3.0": ["FSharp.Core"], "netcoreapp3.1": ["FSharp.Core"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["FSharp.Core"], "netstandard2.1": ["FSharp.Core"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "Microsoft.NETCore.App.Ref", "version": "6.0.5", "sha512": "sha512-quj/gyLoZLypJO7PwsZ8ib6ZSgFv1C9s5SJgwzl/gztynTJ/3oO/stA2gNMf0C33vTJ0J3SSF/kRPQ/ifY5xZg==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": ["Microsoft.CSharp|4.4.0", "Microsoft.Win32.Primitives|4.3.0", "Microsoft.Win32.Registry|4.4.0", "runtime.debian.8-x64.runtime.native.System|4.3.0", "runtime.debian.8-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Http|4.3.0", "runtime.debian.8-x64.runtime.native.System.Net.Security|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.23-x64.runtime.native.System|4.3.0", "runtime.fedora.23-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.fedora.24-x64.runtime.native.System|4.3.0", "runtime.fedora.24-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Http|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Net.Security|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.osx.10.10-x64.runtime.native.System|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple|4.3.0", "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.rhel.7-x64.runtime.native.System|4.3.0", "runtime.rhel.7-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Http|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Net.Security|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography|4.3.0", "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl|4.3.0", "System.AppContext|4.3.0", "System.Buffers|4.4.0", "System.Collections|4.3.0", "System.Collections.Concurrent|4.3.0", "System.Collections.Immutable|1.4.0", "System.Collections.NonGeneric|4.3.0", "System.Collections.Specialized|4.3.0", "System.ComponentModel|4.3.0", "System.ComponentModel.EventBasedAsync|4.3.0", "System.ComponentModel.Primitives|4.3.0", "System.ComponentModel.TypeConverter|4.3.0", "System.Console|4.3.0", "System.Data.Common|4.3.0", "System.Diagnostics.Contracts|4.3.0", "System.Diagnostics.Debug|4.3.0", "System.Diagnostics.DiagnosticSource|4.4.0", "System.Diagnostics.FileVersionInfo|4.3.0", "System.Diagnostics.Process|4.3.0", "System.Diagnostics.StackTrace|4.3.0", "System.Diagnostics.TextWriterTraceListener|4.3.0", "System.Diagnostics.Tools|4.3.0", "System.Diagnostics.TraceSource|4.3.0", "System.Diagnostics.Tracing|4.3.0", "System.Dynamic.Runtime|4.3.0", "System.Globalization|4.3.0", "System.Globalization.Calendars|4.3.0", "System.Globalization.Extensions|4.3.0", "System.IO|4.3.0", "System.IO.Compression|4.3.0", "System.IO.Compression.ZipFile|4.3.0", "System.IO.FileSystem|4.3.0", "System.IO.FileSystem.AccessControl|4.4.0", "System.IO.FileSystem.DriveInfo|4.3.0", "System.IO.FileSystem.Primitives|4.3.0", "System.IO.FileSystem.Watcher|4.3.0", "System.IO.IsolatedStorage|4.3.0", "System.IO.MemoryMappedFiles|4.3.0", "System.IO.Pipes|4.3.0", "System.IO.UnmanagedMemoryStream|4.3.0", "System.Linq|4.3.0", "System.Linq.Expressions|4.3.0", "System.Linq.Queryable|4.3.0", "System.Net.Http|4.3.0", "System.Net.NameResolution|4.3.0", "System.Net.Primitives|4.3.0", "System.Net.Requests|4.3.0", "System.Net.Security|4.3.0", "System.Net.Sockets|4.3.0", "System.Net.WebHeaderCollection|4.3.0", "System.ObjectModel|4.3.0", "System.Private.DataContractSerialization|4.3.0", "System.Reflection|4.3.0", "System.Reflection.Emit|4.3.0", "System.Reflection.Emit.ILGeneration|4.3.0", "System.Reflection.Emit.Lightweight|4.3.0", "System.Reflection.Extensions|4.3.0", "System.Reflection.Metadata|1.5.0", "System.Reflection.Primitives|4.3.0", "System.Reflection.TypeExtensions|4.3.0", "System.Resources.ResourceManager|4.3.0", "System.Runtime|4.3.0", "System.Runtime.Extensions|4.3.0", "System.Runtime.Handles|4.3.0", "System.Runtime.InteropServices|4.3.0", "System.Runtime.InteropServices.RuntimeInformation|4.3.0", "System.Runtime.Loader|4.3.0", "System.Runtime.Numerics|4.3.0", "System.Runtime.Serialization.Formatters|4.3.0", "System.Runtime.Serialization.Json|4.3.0", "System.Runtime.Serialization.Primitives|4.3.0", "System.Security.AccessControl|4.4.0", "System.Security.Claims|4.3.0", "System.Security.Cryptography.Algorithms|4.3.0", "System.Security.Cryptography.Cng|4.4.0", "System.Security.Cryptography.Csp|4.3.0", "System.Security.Cryptography.Encoding|4.3.0", "System.Security.Cryptography.OpenSsl|4.4.0", "System.Security.Cryptography.Primitives|4.3.0", "System.Security.Cryptography.X509Certificates|4.3.0", "System.Security.Cryptography.Xml|4.4.0", "System.Security.Principal|4.3.0", "System.Security.Principal.Windows|4.4.0", "System.Text.Encoding|4.3.0", "System.Text.Encoding.Extensions|4.3.0", "System.Text.RegularExpressions|4.3.0", "System.Threading|4.3.0", "System.Threading.Overlapped|4.3.0", "System.Threading.Tasks|4.3.0", "System.Threading.Tasks.Extensions|4.3.0", "System.Threading.Tasks.Parallel|4.3.0", "System.Threading.Thread|4.3.0", "System.Threading.ThreadPool|4.3.0", "System.Threading.Timer|4.3.0", "System.ValueTuple|4.3.0", "System.Xml.ReaderWriter|4.3.0", "System.Xml.XDocument|4.3.0", "System.Xml.XmlDocument|4.3.0", "System.Xml.XmlSerializer|4.3.0", "System.Xml.XPath|4.3.0", "System.Xml.XPath.XDocument|4.3.0"], "framework_list": ["Microsoft.CSharp|6.0.0.0", "Microsoft.VisualBasic.Core|11.0.0.0", "Microsoft.VisualBasic|10.0.0.0", "Microsoft.Win32.Primitives|6.0.0.0", "Microsoft.Win32.Registry|6.0.0.0", "System.AppContext|6.0.0.0", "System.Buffers|6.0.0.0", "System.Collections.Concurrent|6.0.0.0", "System.Collections.Immutable|6.0.0.0", "System.Collections.NonGeneric|6.0.0.0", "System.Collections.Specialized|6.0.0.0", "System.Collections|6.0.0.0", "System.ComponentModel.Annotations|6.0.0.0", "System.ComponentModel.DataAnnotations|4.0.0.0", "System.ComponentModel.EventBasedAsync|6.0.0.0", "System.ComponentModel.Primitives|6.0.0.0", "System.ComponentModel.TypeConverter|6.0.0.0", "System.ComponentModel|6.0.0.0", "System.Configuration|4.0.0.0", "System.Console|6.0.0.0", "System.Core|4.0.0.0", "System.Data.Common|6.0.0.0", "System.Data.DataSetExtensions|4.0.0.0", "System.Data|4.0.0.0", "System.Diagnostics.Contracts|6.0.0.0", "System.Diagnostics.Debug|6.0.0.0", "System.Diagnostics.DiagnosticSource|6.0.0.0", "System.Diagnostics.FileVersionInfo|6.0.0.0", "System.Diagnostics.Process|6.0.0.0", "System.Diagnostics.StackTrace|6.0.0.0", "System.Diagnostics.TextWriterTraceListener|6.0.0.0", "System.Diagnostics.Tools|6.0.0.0", "System.Diagnostics.TraceSource|6.0.0.0", "System.Diagnostics.Tracing|6.0.0.0", "System.Drawing.Primitives|6.0.0.0", "System.Drawing|4.0.0.0", "System.Dynamic.Runtime|6.0.0.0", "System.Formats.Asn1|6.0.0.0", "System.Globalization.Calendars|6.0.0.0", "System.Globalization.Extensions|6.0.0.0", "System.Globalization|6.0.0.0", "System.IO.Compression.Brotli|6.0.0.0", "System.IO.Compression.FileSystem|4.0.0.0", "System.IO.Compression.ZipFile|6.0.0.0", "System.IO.Compression|6.0.0.0", "System.IO.FileSystem.AccessControl|6.0.0.0", "System.IO.FileSystem.DriveInfo|6.0.0.0", "System.IO.FileSystem.Primitives|6.0.0.0", "System.IO.FileSystem.Watcher|6.0.0.0", "System.IO.FileSystem|6.0.0.0", "System.IO.IsolatedStorage|6.0.0.0", "System.IO.MemoryMappedFiles|6.0.0.0", "System.IO.Pipes.AccessControl|6.0.0.0", "System.IO.Pipes|6.0.0.0", "System.IO.UnmanagedMemoryStream|6.0.0.0", "System.IO|6.0.0.0", "System.Linq.Expressions|6.0.0.0", "System.Linq.Parallel|6.0.0.0", "System.Linq.Queryable|6.0.0.0", "System.Linq|6.0.0.0", "System.Memory|6.0.0.0", "System.Net.Http.Json|6.0.0.0", "System.Net.Http|6.0.0.0", "System.Net.HttpListener|6.0.0.0", "System.Net.Mail|6.0.0.0", "System.Net.NameResolution|6.0.0.0", "System.Net.NetworkInformation|6.0.0.0", "System.Net.Ping|6.0.0.0", "System.Net.Primitives|6.0.0.0", "System.Net.Requests|6.0.0.0", "System.Net.Security|6.0.0.0", "System.Net.ServicePoint|6.0.0.0", "System.Net.Sockets|6.0.0.0", "System.Net.WebClient|6.0.0.0", "System.Net.WebHeaderCollection|6.0.0.0", "System.Net.WebProxy|6.0.0.0", "System.Net.WebSockets.Client|6.0.0.0", "System.Net.WebSockets|6.0.0.0", "System.Net|4.0.0.0", "System.Numerics.Vectors|6.0.0.0", "System.Numerics|4.0.0.0", "System.ObjectModel|6.0.0.0", "System.Reflection.DispatchProxy|6.0.0.0", "System.Reflection.Emit.ILGeneration|6.0.0.0", "System.Reflection.Emit.Lightweight|6.0.0.0", "System.Reflection.Emit|6.0.0.0", "System.Reflection.Extensions|6.0.0.0", "System.Reflection.Metadata|6.0.0.0", "System.Reflection.Primitives|6.0.0.0", "System.Reflection.TypeExtensions|6.0.0.0", "System.Reflection|6.0.0.0", "System.Resources.Reader|6.0.0.0", "System.Resources.ResourceManager|6.0.0.0", "System.Resources.Writer|6.0.0.0", "System.Runtime.CompilerServices.Unsafe|6.0.0.0", "System.Runtime.CompilerServices.VisualC|6.0.0.0", "System.Runtime.Extensions|6.0.0.0", "System.Runtime.Handles|6.0.0.0", "System.Runtime.InteropServices.RuntimeInformation|6.0.0.0", "System.Runtime.InteropServices|6.0.0.0", "System.Runtime.Intrinsics|6.0.0.0", "System.Runtime.Loader|6.0.0.0", "System.Runtime.Numerics|6.0.0.0", "System.Runtime.Serialization.Formatters|6.0.0.0", "System.Runtime.Serialization.Json|6.0.0.0", "System.Runtime.Serialization.Primitives|6.0.0.0", "System.Runtime.Serialization.Xml|6.0.0.0", "System.Runtime.Serialization|4.0.0.0", "System.Runtime|6.0.0.0", "System.Security.AccessControl|6.0.0.0", "System.Security.Claims|6.0.0.0", "System.Security.Cryptography.Algorithms|6.0.0.0", "System.Security.Cryptography.Cng|6.0.0.0", "System.Security.Cryptography.Csp|6.0.0.0", "System.Security.Cryptography.Encoding|6.0.0.0", "System.Security.Cryptography.OpenSsl|6.0.0.0", "System.Security.Cryptography.Primitives|6.0.0.0", "System.Security.Cryptography.X509Certificates|6.0.0.0", "System.Security.Principal.Windows|6.0.0.0", "System.Security.Principal|6.0.0.0", "System.Security.SecureString|6.0.0.0", "System.Security|4.0.0.0", "System.ServiceModel.Web|4.0.0.0", "System.ServiceProcess|4.0.0.0", "System.Text.Encoding.CodePages|6.0.0.0", "System.Text.Encoding.Extensions|6.0.0.0", "System.Text.Encoding|6.0.0.0", "System.Text.Encodings.Web|6.0.0.0", "System.Text.Json|6.0.0.0", "System.Text.RegularExpressions|6.0.0.0", "System.Threading.Channels|6.0.0.0", "System.Threading.Overlapped|6.0.0.0", "System.Threading.Tasks.Dataflow|6.0.0.0", "System.Threading.Tasks.Extensions|6.0.0.0", "System.Threading.Tasks.Parallel|6.0.0.0", "System.Threading.Tasks|6.0.0.0", "System.Threading.Thread|6.0.0.0", "System.Threading.ThreadPool|6.0.0.0", "System.Threading.Timer|6.0.0.0", "System.Threading|6.0.0.0", "System.Transactions.Local|6.0.0.0", "System.Transactions|4.0.0.0", "System.ValueTuple|4.0.3.0", "System.Web.HttpUtility|6.0.0.0", "System.Web|4.0.0.0", "System.Windows|4.0.0.0", "System.Xml.Linq|4.0.0.0", "System.Xml.ReaderWriter|6.0.0.0", "System.Xml.Serialization|4.0.0.0", "System.Xml.XDocument|6.0.0.0", "System.Xml.XPath.XDocument|6.0.0.0", "System.Xml.XPath|6.0.0.0", "System.Xml.XmlDocument|6.0.0.0", "System.Xml.XmlSerializer|6.0.0.0", "System.Xml|4.0.0.0", "System|4.0.0.0", "WindowsBase|4.0.0.0", "mscorlib|4.0.0.0", "netstandard|2.1.0.0"]}, + {"id": "Microsoft.Win32.SystemEvents", "version": "6.0.1", "sha512": "sha512-tCbvWn9ymrxUuAlYZCQ7eDwVSn7571UIeMYWizWCXPjQlESdfIGr1W6EXhrFm8BgPt2e9G5bJfxVrzx2knWR6A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Configuration.ConfigurationManager", "version": "6.0.0", "sha512": "sha512-3ljLko1jA6FjAf16qO2sN53+bEfm2AshZl+SurndX/UrPiRM9t8PlF8ccucckjN1YdvydS/DMkF0qMnsxwwyRw==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.Permissions"], "net462": ["System.Security.Permissions"], "net47": ["System.Security.Permissions"], "net471": ["System.Security.Permissions"], "net472": ["System.Security.Permissions"], "net48": ["System.Security.Permissions"], "net5.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net6.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "net7.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp2.2": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netcoreapp3.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"], "netstandard2.1": ["System.Security.Cryptography.ProtectedData", "System.Security.Permissions"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Drawing.Common", "version": "6.0.0", "sha512": "sha512-1h8KPgHD6sFfE/wboEosfOTqyVZACy+qNh/sq9ODbUnVvTRPOYXuPZTNw/anK44H5CPNspZbT1yiIitd4ymI5A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["Microsoft.Win32.SystemEvents"], "net6.0": ["Microsoft.Win32.SystemEvents"], "net7.0": ["Microsoft.Win32.SystemEvents"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["Microsoft.Win32.SystemEvents"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.AccessControl", "version": "6.0.0", "sha512": "sha512-ZKNqEDuVSrS36KdsDodleb1ITDCOREwtkV+5oP0FrWNhRQHtI1xUSvybQxy4pM8PBxW47UFOhZWObWhXkWj7RQ==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Cryptography.ProtectedData", "version": "6.0.0", "sha512": "sha512-SJtdqwq/rfuLwtBDfeg6FEeRgHGUlEDnZttwHIHDUY3mo4o+D2mXBrBtWRq1OTx7wLLqqBwVv/FWM5JI5sNXMA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": [], "net6.0": [], "net7.0": [], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": [], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Security.Permissions", "version": "6.0.0", "sha512": "sha512-1PIXLMOxZPEE+i46Mwti8qFfUOBQqRZZ21co8o1NXWyoZg7sOk+SIJAYGlS8Hp9mNMpJdQOYNgcn0bxZ22ICeA==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": ["System.Security.AccessControl"], "net462": ["System.Security.AccessControl"], "net47": ["System.Security.AccessControl"], "net471": ["System.Security.AccessControl"], "net472": ["System.Security.AccessControl"], "net48": ["System.Security.AccessControl"], "net5.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net6.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "net7.0": ["System.Security.AccessControl", "System.Windows.Extensions"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": ["System.Security.AccessControl"], "netcoreapp2.1": ["System.Security.AccessControl"], "netcoreapp2.2": ["System.Security.AccessControl"], "netcoreapp3.0": ["System.Security.AccessControl"], "netcoreapp3.1": ["System.Security.AccessControl", "System.Windows.Extensions"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": ["System.Security.AccessControl"], "netstandard2.1": ["System.Security.AccessControl"]}, "targeting_pack_overrides": [], "framework_list": []}, + {"id": "System.Windows.Extensions", "version": "6.0.0", "sha512": "sha512-9R7sgWb5e1/OokgW7HN8JNXFpcsUXvLTMnfJoWBE9AvD+5e0z+f5ojr3BO3pFYbGq9Ks8AsndTi7ME13ocpU8A==", "sources": ["https://api.nuget.org/v3/index.json"], "dependencies": {"net11": [], "net20": [], "net30": [], "net35": [], "net40": [], "net403": [], "net45": [], "net451": [], "net452": [], "net46": [], "net461": [], "net462": [], "net47": [], "net471": [], "net472": [], "net48": [], "net5.0": ["System.Drawing.Common"], "net6.0": ["System.Drawing.Common"], "net7.0": ["System.Drawing.Common"], "netcoreapp1.0": [], "netcoreapp1.1": [], "netcoreapp2.0": [], "netcoreapp2.1": [], "netcoreapp2.2": [], "netcoreapp3.0": [], "netcoreapp3.1": ["System.Drawing.Common"], "netstandard": [], "netstandard1.0": [], "netstandard1.1": [], "netstandard1.2": [], "netstandard1.3": [], "netstandard1.4": [], "netstandard1.5": [], "netstandard1.6": [], "netstandard2.0": [], "netstandard2.1": []}, "targeting_pack_overrides": [], "framework_list": []}, ], ) diff --git a/examples/publish_framework_dependent/BUILD.bazel b/examples/publish_framework_dependent/BUILD.bazel index e2fd1710..95ac3f90 100644 --- a/examples/publish_framework_dependent/BUILD.bazel +++ b/examples/publish_framework_dependent/BUILD.bazel @@ -7,10 +7,10 @@ load( csharp_binary( name = "hello", srcs = ["hello.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ], ) diff --git a/examples/publish_self_contained/BUILD.bazel b/examples/publish_self_contained/BUILD.bazel index b15e9f0f..0c0e0116 100644 --- a/examples/publish_self_contained/BUILD.bazel +++ b/examples/publish_self_contained/BUILD.bazel @@ -7,10 +7,10 @@ load( csharp_binary( name = "hello", srcs = ["hello.cs"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ ], ) diff --git a/examples/runfiles_csharp/BUILD.bazel b/examples/runfiles_csharp/BUILD.bazel index 91fd4749..88fb184e 100644 --- a/examples/runfiles_csharp/BUILD.bazel +++ b/examples/runfiles_csharp/BUILD.bazel @@ -7,10 +7,10 @@ csharp_nunit_test( name = "runfiles_test", srcs = ["RunfilesTest.cs"], data = ["data-file"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@rules_dotnet//tools/runfiles", ], diff --git a/examples/runfiles_fsharp/BUILD.bazel b/examples/runfiles_fsharp/BUILD.bazel index e2d4fb39..09457ae7 100644 --- a/examples/runfiles_fsharp/BUILD.bazel +++ b/examples/runfiles_fsharp/BUILD.bazel @@ -7,10 +7,10 @@ fsharp_nunit_test( name = "runfiles_test", srcs = ["RunfilesTest.fs"], data = ["data-file"], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@example_deps//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "@example_deps//fsharp.core", "@rules_dotnet//tools/runfiles", diff --git a/paket.dependencies b/paket.dependencies index 0d528cf2..54158533 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -29,6 +29,7 @@ group rules_dotnet_dev_nuget_packages nuget System.Security.Principal.Windows 5.0.0 nuget Magick.NET.Core 12.2.2 nuget System.Memory 4.5.5 + nuget System.Text.Json 7.0.3 group rules_dotnet_nuget_packages framework: net6.0 diff --git a/paket.lock b/paket.lock index 102383d7..882e3f13 100644 --- a/paket.lock +++ b/paket.lock @@ -382,19 +382,35 @@ NUGET LibGit2Sharp.NativeBinaries (2.0.315-alpha.0.9) LibGit2Sharp.NativeBinaries (2.0.315-alpha.0.9) Magick.NET.Core (12.2.2) + Microsoft.Bcl.AsyncInterfaces (7.0) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (== net6.0) (>= net462)) (&& (== net6.0) (< netstandard2.1)) (== netstandard2.0) (&& (== netstandard2.1) (>= net462)) Microsoft.NETCore.App.Ref (6.0.5) Microsoft.NETCore.App.Runtime.linux-x64 (6.0.8) Microsoft.NETCore.App.Runtime.osx-x64 (6.0.8) Microsoft.NETCore.App.Runtime.win-x64 (6.0.8) NETStandard.Library.Ref (2.1) - System.Buffers (4.5.1) - restriction: || (&& (== net6.0) (>= monotouch)) (&& (== net6.0) (>= net461)) (&& (== net6.0) (< netcoreapp2.0)) (&& (== net6.0) (< netstandard1.1)) (&& (== net6.0) (< netstandard2.0)) (&& (== net6.0) (>= xamarinios)) (&& (== net6.0) (>= xamarinmac)) (&& (== net6.0) (>= xamarintvos)) (&& (== net6.0) (>= xamarinwatchos)) (== netstandard2.0) (== netstandard2.1) + System.Buffers (4.5.1) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) System.Memory (4.5.5) System.Buffers (>= 4.5.1) - restriction: || (&& (== net6.0) (>= monotouch)) (&& (== net6.0) (>= net461)) (&& (== net6.0) (< netcoreapp2.0)) (&& (== net6.0) (< netstandard1.1)) (&& (== net6.0) (< netstandard2.0)) (&& (== net6.0) (>= xamarinios)) (&& (== net6.0) (>= xamarinmac)) (&& (== net6.0) (>= xamarintvos)) (&& (== net6.0) (>= xamarinwatchos)) (== netstandard2.0) (== netstandard2.1) System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== net6.0) (< netcoreapp2.0)) (== netstandard2.0) (== netstandard2.1) System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (== net6.0) (>= monotouch)) (&& (== net6.0) (>= net461)) (&& (== net6.0) (< netcoreapp2.0)) (&& (== net6.0) (< netcoreapp2.1)) (&& (== net6.0) (< netstandard1.1)) (&& (== net6.0) (< netstandard2.0)) (&& (== net6.0) (>= uap10.1)) (&& (== net6.0) (>= xamarinios)) (&& (== net6.0) (>= xamarinmac)) (&& (== net6.0) (>= xamarintvos)) (&& (== net6.0) (>= xamarinwatchos)) (== netstandard2.0) (== netstandard2.1) - System.Numerics.Vectors (4.5) - restriction: || (&& (== net6.0) (< netcoreapp2.0)) (== netstandard2.0) (== netstandard2.1) - System.Runtime.CompilerServices.Unsafe (6.0) - restriction: || (&& (== net6.0) (>= monotouch)) (&& (== net6.0) (>= net461)) (&& (== net6.0) (< netcoreapp2.0)) (&& (== net6.0) (< netcoreapp2.1)) (&& (== net6.0) (< netstandard1.1)) (&& (== net6.0) (< netstandard2.0)) (&& (== net6.0) (>= uap10.1)) (&& (== net6.0) (>= xamarinios)) (&& (== net6.0) (>= xamarinmac)) (&& (== net6.0) (>= xamarintvos)) (&& (== net6.0) (>= xamarinwatchos)) (== netstandard2.0) (== netstandard2.1) + System.Numerics.Vectors (4.5) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Runtime.CompilerServices.Unsafe (6.0) System.Security.Principal.Windows (5.0) + System.Text.Encodings.Web (7.0) + System.Buffers (>= 4.5.1) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Memory (>= 4.5.5) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Runtime.CompilerServices.Unsafe (>= 6.0) + System.Text.Json (7.0.3) + Microsoft.Bcl.AsyncInterfaces (>= 7.0) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Buffers (>= 4.5.1) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Memory (>= 4.5.5) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Numerics.Vectors (>= 4.5) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Runtime.CompilerServices.Unsafe (>= 6.0) + System.Text.Encodings.Web (>= 7.0) + System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Threading.Tasks.Extensions (4.5.4) - restriction: || (&& (== net6.0) (>= net462)) (== netstandard2.0) (== netstandard2.1) + System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (== net6.0) (>= net461)) (&& (== net6.0) (< netcoreapp2.1)) (&& (== net6.0) (< netstandard1.0)) (&& (== net6.0) (< netstandard2.0)) (&& (== net6.0) (>= wp8)) (== netstandard2.0) (== netstandard2.1) GROUP rules_dotnet_nuget_packages RESTRICTION: == net6.0 diff --git a/tools/nuget/src/Afas.BazelDotnet.Nuget/BUILD.bazel b/tools/nuget/src/Afas.BazelDotnet.Nuget/BUILD.bazel index 6a1bdae8..eaf21b5d 100644 --- a/tools/nuget/src/Afas.BazelDotnet.Nuget/BUILD.bazel +++ b/tools/nuget/src/Afas.BazelDotnet.Nuget/BUILD.bazel @@ -9,10 +9,10 @@ csharp_library( "**/bin/**", ], ), - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//visibility:public"], deps = [ #Adding built-in .Net libs diff --git a/tools/nuget/src/Afas.BazelDotnet.Project/BUILD.bazel b/tools/nuget/src/Afas.BazelDotnet.Project/BUILD.bazel index d26cba51..4de09f68 100644 --- a/tools/nuget/src/Afas.BazelDotnet.Project/BUILD.bazel +++ b/tools/nuget/src/Afas.BazelDotnet.Project/BUILD.bazel @@ -9,10 +9,10 @@ csharp_library( "**/bin/**", ], ), - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//visibility:public"], deps = [ ], diff --git a/tools/nuget/src/Afas.BazelDotnet/BUILD.bazel b/tools/nuget/src/Afas.BazelDotnet/BUILD.bazel index 28df5051..3f159e85 100644 --- a/tools/nuget/src/Afas.BazelDotnet/BUILD.bazel +++ b/tools/nuget/src/Afas.BazelDotnet/BUILD.bazel @@ -9,10 +9,10 @@ csharp_binary( "**/bin/**", ], ), - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//visibility:public"], deps = [ #Adding built-in .Net libs diff --git a/tools/paket2bazel/BUILD.bazel b/tools/paket2bazel/BUILD.bazel index f34aa64b..f946184f 100644 --- a/tools/paket2bazel/BUILD.bazel +++ b/tools/paket2bazel/BUILD.bazel @@ -9,10 +9,10 @@ fsharp_binary( "Gen.fs", "Main.fs", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@paket2bazel_dependencies//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], visibility = ["//visibility:public"], deps = [ "@paket2bazel_dependencies//argu", diff --git a/tools/paket2bazel/Gen.fs b/tools/paket2bazel/Gen.fs index b85ac739..9c365a8b 100644 --- a/tools/paket2bazel/Gen.fs +++ b/tools/paket2bazel/Gen.fs @@ -19,7 +19,8 @@ type NugetRepoPackage = sources: string seq netrc: string option dependencies: Dictionary - targeting_pack_overrides: string seq } + targeting_pack_overrides: string seq + framework_list: string seq } type NugetRepo = { packages: NugetRepoPackage seq } @@ -90,7 +91,8 @@ let groupToNugetRepo (group: Group) = sources = p.sources netrc = None dependencies = Dictionary(p.dependencies) - targeting_pack_overrides = p.overrides }) + targeting_pack_overrides = p.overrides + framework_list = p.frameworkList }) { packages = repoPackages } diff --git a/tools/paket2bazel/Models.fs b/tools/paket2bazel/Models.fs index 56263d7b..d7a3aa32 100644 --- a/tools/paket2bazel/Models.fs +++ b/tools/paket2bazel/Models.fs @@ -9,7 +9,8 @@ type Package = sha512sri: string sources: string seq dependencies: Map> - overrides: string seq } + overrides: string seq + frameworkList: string seq } type Group = { name: string diff --git a/tools/paket2bazel/Paket.fs b/tools/paket2bazel/Paket.fs index 24a80f82..9c7005da 100644 --- a/tools/paket2bazel/Paket.fs +++ b/tools/paket2bazel/Paket.fs @@ -10,8 +10,8 @@ open Paket.Requirements open NuGet.Packaging open NuGet.Frameworks open NuGet.Versioning -open System.Buffers.Text open System +open System.Xml // List of the supportd TFMS in rules_dotnet // Needs to be updated when a new TFM is released @@ -132,6 +132,26 @@ let getOverrides (packageName: string) (packageVersion: string) (packageReader: |> Array.filter (fun l -> not (String.IsNullOrEmpty l))) |> Option.defaultValue [||] +let getFrameworkList (packageName: string) (packageVersion: string) (packageReader: PackageFolderReader) = + packageReader.GetItems "data" + |> Seq.collect (fun f -> f.Items) + |> Seq.tryFind (fun f -> f.EndsWith("FrameworkList.xml")) + |> Option.map (fun f -> + let path = Path.Combine((getPackageFolderPath packageName packageVersion), f) + let xmlDocument = XmlDocument() + xmlDocument.Load(path) + let root = xmlDocument.DocumentElement + + root.ChildNodes + |> Seq.cast + |> Seq.filter (fun node -> node.Attributes.ItemOf("Type").Value = "Managed") + |> Seq.map (fun node -> + let name = node.Attributes.ItemOf("AssemblyName").Value + let version = node.Attributes.ItemOf("AssemblyVersion").Value + $"{name}|{version}") + |> Seq.filter (fun l -> not (String.IsNullOrEmpty l))) + |> Option.defaultValue [||] + let getDependencies dependenciesFile (cache: Dictionary) = let maybeDeps = Dependencies.TryLocate(dependenciesFile) @@ -174,7 +194,8 @@ let getDependencies dependenciesFile (cache: Dictionary) = tfms (packages |> Seq.map (fun (_, name, _) -> name)) packageReader - overrides = getOverrides name version packageReader } + overrides = getOverrides name version packageReader + frameworkList = getFrameworkList name version packageReader } cache.Add((sprintf "%s-%s" group name), package) |> ignore diff --git a/tools/runfiles/BUILD.bazel b/tools/runfiles/BUILD.bazel index 14929c3c..871e43d8 100644 --- a/tools/runfiles/BUILD.bazel +++ b/tools/runfiles/BUILD.bazel @@ -6,10 +6,10 @@ load( csharp_library( name = "runfiles", srcs = ["Runfiles.cs"], - private_deps = [ + target_frameworks = ["netstandard2.0"], + targeting_packs = [ "@rules_dotnet_nuget_packages//netstandard.library", ], - target_frameworks = ["netstandard2.0"], visibility = ["//visibility:public"], deps = [ ], diff --git a/tools/runfiles/tests/BUILD.bazel b/tools/runfiles/tests/BUILD.bazel index bd7b33e8..6dcf90cc 100644 --- a/tools/runfiles/tests/BUILD.bazel +++ b/tools/runfiles/tests/BUILD.bazel @@ -9,10 +9,10 @@ csharp_nunit_test( "MockFile.cs", "Runfiles.cs", ], - private_deps = [ + target_frameworks = ["net6.0"], + targeting_packs = [ "@rules_dotnet_dev_nuget_packages//microsoft.netcore.app.ref", ], - target_frameworks = ["net6.0"], deps = [ "//tools/runfiles", ],