From 3d10eb16e967d7e0f1b5790f4ce1fe26ef451d3f Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Thu, 5 Aug 2021 12:40:43 +0200 Subject: [PATCH 1/5] Clean-up pkgproj leftovers in libs and apply fixes Remove any pkgproj infrastructure that was only used by src/libraries (which is the majority). Delete the packageindex *YAY*. Update the documentation that covered the packageindex and the pkgprojs. Avoid any incremental builds during packaging by removing libraries-packages.proj and use src.proj for packaging instead. Make use of the `GeneratePackageOnBuild` property to build package during the allconfigurations without requiring a different entry target. Fix the addition of the DocumentationFile during packaging when `GeneratePackageOnBuid` is used by hooking onto the `DocumentationProjectOutputGroup` that NuGet uses and replacing the generated documentation file with the one that comes via the intellisense package. Also introduce a property to choose the generated documentation file over the one from the intellisense package: false Removing a few leftover PackageDescription properties from the projects' Directory.Build.props file. Cleaning up properties in Directory.Build.props & Directory.Build.targets files. --- Directory.Build.targets | 2 - .../adding-api-guidelines.md | 10 - docs/coding-guidelines/libraries-packaging.md | 2 +- docs/coding-guidelines/package-projects.md | 163 - docs/coding-guidelines/project-guidelines.md | 3 - docs/project/library-servicing.md | 30 +- .../debugging/libraries/debugging-packages.md | 105 - eng/Subsets.props | 6 +- eng/packaging.props | 43 +- eng/packaging.targets | 106 +- eng/restore/harvestPackages.targets | 43 - eng/restore/repoRestore.props | 26 - eng/restore/repoRestore.targets | 29 - src/libraries/Directory.Build.props | 66 +- src/libraries/Directory.Build.targets | 40 +- ...gnostics.Tracing.EventSource.Redist.csproj | 1 - .../Directory.Build.props | 10 - .../src/Microsoft.NETCore.Platforms.csproj | 2 + .../src/System.IO.Compression.Brotli.csproj | 1 - .../src/System.IO.Pipelines.csproj | 1 - .../pkg/runtime.native.System.IO.Ports.proj | 2 +- .../src/System.Numerics.Vectors.csproj | 1 - .../ref/System.Runtime.Experimental.csproj | 2 + .../src/System.Runtime.Experimental.proj | 7 + .../Directory.Build.props | 5 - .../src/System.Windows.Extensions.csproj | 5 + src/libraries/libraries-packages.proj | 67 - src/libraries/pkg/baseline/baseline.props | 31 - src/libraries/pkg/baseline/packageIndex.json | 7901 ----------------- src/libraries/src.proj | 31 +- 30 files changed, 110 insertions(+), 8631 deletions(-) delete mode 100644 docs/coding-guidelines/package-projects.md delete mode 100644 docs/workflow/debugging/libraries/debugging-packages.md delete mode 100644 eng/restore/harvestPackages.targets delete mode 100644 eng/restore/repoRestore.props delete mode 100644 eng/restore/repoRestore.targets create mode 100644 src/libraries/System.Runtime.Experimental/src/System.Runtime.Experimental.proj delete mode 100644 src/libraries/libraries-packages.proj delete mode 100644 src/libraries/pkg/baseline/baseline.props delete mode 100644 src/libraries/pkg/baseline/packageIndex.json diff --git a/Directory.Build.targets b/Directory.Build.targets index e390cc3dda3204..78cb82f2331480 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -54,8 +54,6 @@ $(RuntimePackageDisclaimer) $(PackageDescription) - - $(BeforePack);AddNETStandardCompatErrorFileForPackaging AddNETStandardCompatErrorFileForPackaging;$(GenerateNuspecDependsOn) diff --git a/docs/coding-guidelines/adding-api-guidelines.md b/docs/coding-guidelines/adding-api-guidelines.md index f6014fd1f7d52f..b744eb1c4de1cc 100644 --- a/docs/coding-guidelines/adding-api-guidelines.md +++ b/docs/coding-guidelines/adding-api-guidelines.md @@ -29,12 +29,6 @@ should be added to `net5.0`. [More Information on TargetFrameworks](https://docs ## Making the changes in repo -**Update pkg** - - If changing the target framework - - Update `SupportedFramework` metadata on the ref ProjectReference to declare the set of concrete platforms you expect your library to support. (see [Specific platform mappings][net-standard table]). Generally will be a combination of netcoreapp2.x, netfx46x, and/or `$(AllXamarinFrameworks)`. - - If assembly or package version is updated the package index needs to be updated by running - `dotnet build /pkg/.pkgproj /t:UpdatePackageIndex` - **Update tests** - Add new `TargetFramework` to the ```TargetFrameworks```. - Add new test code following [conventions](project-guidelines.md#code-file-naming-conventions) for new files to that are specific to the new target framework. @@ -52,10 +46,6 @@ Once the dotnet-api-docs change is merged, your comments will start showing up i Once the documentation is official, any subsequent updates to it must be made directly in https://github.com/dotnet/dotnet-api-docs/. It's fine to make updates to the triple slash comments later, they just won't automatically flow into the official docs. ## FAQ -_**How do I consume APIs from another package that aren't yet published?**_ - -If you are adding APIs across multiple packages at the same time. You can temporarily add a direct -ProjectReference from the ref\csproj to the ref\csproj, src\csproj to the ref\csproj, and/or tests\csproj to pkg\pkgproj. Once a new set of packages have been published these ProjectReferences should be removed. _**What to do if you are moving types down into a lower contract?**_ diff --git a/docs/coding-guidelines/libraries-packaging.md b/docs/coding-guidelines/libraries-packaging.md index 95b1183a5a490b..a810163e35521c 100644 --- a/docs/coding-guidelines/libraries-packaging.md +++ b/docs/coding-guidelines/libraries-packaging.md @@ -36,7 +36,7 @@ Removing a library from this transport package is a breaking change and should b ## NuGet package -Libraries to be packaged must be referenced by the [traversal packaging project](../../src/libraries/libraries-packages.proj) and set `IsPackable` to true. By default, all `Libraries/*/src` projects are considered for packaging. +Libraries to be packaged must set `IsPackable` to true. By default, all `libraries/*/src` projects are considered for packaging. Package versions and shipping state should be controlled using the properties defined by the [Arcade SDK](https://github.com/dotnet/arcade/blob/master/Documentation/ArcadeSdk.md#project-properties-defined-by-the-sdk). Typically libraries should not need to explicitly set any of these properties. diff --git a/docs/coding-guidelines/package-projects.md b/docs/coding-guidelines/package-projects.md deleted file mode 100644 index 3e3caa257344b4..00000000000000 --- a/docs/coding-guidelines/package-projects.md +++ /dev/null @@ -1,163 +0,0 @@ -# Package projects -** IMPORTANT ** Package projects are in the process of being deprecated, please do not create new package projects. Instead use normal projects (csproj) following the guidelines here: [libraries-packaging](libraries-packaging.md) - -Package projects bring together all the assemblies that make up a library on different platforms into a set of NuGet packages. - -## Package hierarchy -All libraries should have at least one package if they represent public surface area. This is called the *reference package* and is named the same as the library's assembly, EG: System.Collections.Immutable. - -Packages may have platform specific implementation packages. These are referred to as *runtime packages* and follow the naming convention of runtime.{rid}.{assemblyName}, EG: runtime.unix.System.IO.FileSystem. - -In either case the file name of the `.pkgproj` is just {assemblyName}.pkgproj and package names are derived from the contents of the project. - -## Package samples -### Simple portable library -This is the simplest case. The package project need only reference the single project that implements the portable library. - -Sample `System.Text.Encodings.Web.pkgproj` -``` - - - - - - net45;netcore45;wp8;wpa81;netcoreapp1.0 - - - - - -``` - -### Portable library, inbox on some platforms -These packages need to include placeholders for inbox platforms. They should also include reference assemblies for representing the fixed API that is inbox in old platforms. - -Sample `System.Collections.Concurrent.pkgproj` -``` - - - - - net45;netcore45;wpa81 - - - net46;netcore50;netcoreapp1.0 - - - - - - - - - - - - - -``` - -## Asset selection - -The makeup of a package folder is primarily a grouping of project references to the projects that compose that package. Settings within each referenced project determines where that asset will be placed in the package. For example, reference assembly projects will be placed under the `ref/{targetMoniker}` folder in the package and implementations will be under either `lib/{targetMoniker}` or `runtimes/{rid}/lib/{targetMoniker}`. Whenever NuGet evaluates a package in the context of a referencing project it will choose the best compile time asset (preferring `ref`, then falling back to `lib`) and runtime asset (preferring `runtimes/{rid}/lib` and falling back to `lib`) for every package that is referenced. For more information see http://docs.nuget.org/. - -Asset projects (`.csproj`, `.vbproj`, or `.depproj`) can control their `{targetMoniker}` using the `PackageTargetFramework` property in the project file. Similarly `{rid}` is controlled using the `PackageTargetRuntime` property. For the libraries we automatically select default values for these properties based on the build pivots. These can be overridden in the project reference using metadata of the same name, but this is rarely needed. - -The primary thing that the library author needs to do in order to ensure the correct asset selection is: - -1. Configure the correct projects in your library's `.proj` file. -2. Reference the `.proj` file from the package project. -3. Provide a default PackageTargetFramework for empty-BuildTargetFramework builds in the library's `.csproj` or `.vbproj`. - ``` - dotnet5.4 - ``` -### Which version of dotnet/netstandard should I select? -TL;DR - choose the lowest version that doesn't result in build errors for both the library projects and package project. - -NETStandard/DotNet are *open* ended portable identifiers. They allow a package to place an asset in a folder and that asset can be reused on any framework that supports that version of NETStandard/DotNet. This is in contrast to the previous *closed* set portable-a+b+c identifiers which only applied to the frameworks listed in the set. For more information see [.NET Standard](https://github.com/dotnet/standard/blob/master/docs/faq.md). - -Libraries should select a version of DotNet/NETStandard that supports the most frameworks. This means the library should choose the lowest version that provides all the API needed to implement their functionality. Eventually this will be the same moniker used for package resolution in the library project, AKA in `frameworks` section for the libraries project.json. - -In dotnet/runtime we don't always use the package resolution for dependencies, sometimes we must use project references. Additionally we aren't building all projects with the NETStandard/DotNet identifier. This issue is tracked with https://github.com/dotnet/runtime/issues/14876. As a result we calculate the version as an added safeguard based on seeds. These seeds are listed in [Generations.json](https://github.com/dotnet/buildtools/blob/master/src/Microsoft.DotNet.Build.Tasks.Packaging/src/PackageFiles/Generations.json) and rarely change. They are a record of what libraries shipped in-box and are unchangeable for a particular framework supporting a generation. Occasionally an API change can be made even to these in-box libraries and shipped out-of-band, for example by adding a new type and putting that type in a hybrid facade. This is the only case when it is permitted to update Generations.json. - -In addition to the minimum API version required by implementation, reference assemblies should only claim the NETStandard/DotNet version of the minimum implementation assembly. Just because a reference assembly only depends on API in NETStandard1.0, if its implementations only apply to frameworks supporting NETStandard1.4, it should use NETStandard1.4. - -### .NET Framework facades -.NET Framework facades must be part of the reference package. This is because if we were to use the reference assembly on desktop it would have type collisions with whatever types already exist in the desktop reference assemblies. Since we include the desktop reference facade in the reference package we also include the runtime facade in the same package for compression savings. - -## Applicability validation -Part of package build is to ensure that a package is applicable on all platforms it supports and not applicable on platforms it does not support. We do this validation for a set of targets established in the packaging tools (see [DefaultValidateFramework](https://github.com/dotnet/buildtools/blob/9f4ddda1cb021c9bd25f606bc4e74b92e4b82869/src/Microsoft.DotNet.Build.Tasks.Packaging/src/PackageFiles/Packaging.targets#L709)). Package projects identify the targets supported in one of two ways. - -1. **Preferred:** Through `SupportedFramework` metadata on the project reference. The metadata will associate the API version of that project reference with the frameworks listed. - ``` - - net45;netcore45;wpa81 - - - net46;netcore50;netcoreapp1.0 - - ``` - -2. Through SupportedFramework items with Version metadata. - ``` - - - - - 4.0.0.0 - - ``` - -### Inbox assets -Some libraries are supported inbox on particular frameworks. For these frameworks the package should not present any assets for (ref or lib) for that framework, but instead permit installation and provide no assets. We do this in the package by using placeholders ref and lib folders for that framework. In the package project one can use `InboxOnTargetFramework` items. The following is an example from the System.Linq.Expressions package. -``` - - - - -``` - -If the library is also a "classic" reference assembly, not referenced by default, then adding the `AsFrameworkReference` metadata will instruct that the package include a `frameworkReference` element in the nuspec. The following is the an example from the Microsoft.CSharp package. -``` - - true - - - - -``` - -Package validation will catch a case where we know a library is supported inbox but a package is using an asset from the package. This data is driven by framework lists from previously-shipped targeting packs. The error will appear as: *Framework net45 should support Microsoft.CSharp inbox but {explanation of problem}. You may need to add to your project.* - -### External assets -Runtime specific packages are used to break apart implementations into separate packages and enable "pay-for-play". For example: don't download the Windows implementation if we're only building/deploying for linux. In most cases we can completely separate implementations into separate packages such that they easily translate. For example: -``` -runtimes/win/lib/dotnet5.4/System.Banana.dll -runtimes/unix/lib/dotnet5.4/System.Banana.dll -``` -This can easily be split into a `win` and `unix` package. If someone happens to install both packages into a project they'll still get a single implementation. - -Consider the following: -``` -runtimes/win/lib/dotnet5.4/System.Banana.dll -runtimes/win/lib/net46/System.Banana.dll -``` -Suppose we wanted to split the desktop (`net46`) implementation into a separate package than the portable implementation. Doing so would cause both the `dotnet5.4` asset and the `net46` asset to be applicable and result in a bin-clash. This is because in a single package the `net46` asset is preferred over the `dotnet5.4` asset, but in separate packages both are in view. The packaging validation will catch this problem and display an error such as - -*System.Banana includes both package1/runtimes/win/lib/net46/System.Banana.dll and package2/runtimes/win/lib/dotnet5.4/System.Banana.dll an on net46 which have the same name and will clash when both packages are used.* - - -The fix for the error is to put a placeholder in the package that contains the asset we want to prevent applying. This can be done with the following syntax. -``` - -``` - -### Not supported -In rare cases a particular library might represent itself as targeting a specific portable moniker (eg: `dotnet5.4`) but it cannot be supported on a particular target framework that is included in that portable moniker for other reasons. One example of this is System.Diagnostics.Process. The surface area of this API is portable to dotnet5.4 and could technically run in UWP based on its managed dependencies. The native API, however, is not supported in app container. To prevent this package and packages which depend on from installing in UWP projects, only to fail at runtime, we can block the package from being installed. - -To do this we create a placeholder in the lib folder with the following syntax. The resulting combination will be an applicable ref asset with no applicable lib and NuGet's compat check will fail. -``` - -``` -The packaging validation will catch this problem and display an error such as -*System.Diagnostics.Process should not be supported on netcore50 but has both compile and runtime assets.* diff --git a/docs/coding-guidelines/project-guidelines.md b/docs/coding-guidelines/project-guidelines.md index 3e974772a671d9..85a405d2fe4b72 100644 --- a/docs/coding-guidelines/project-guidelines.md +++ b/docs/coding-guidelines/project-guidelines.md @@ -151,9 +151,6 @@ All src outputs are under `bin\$(MSBuildProjectName)\$(TargetFramework)` -## pkg -In the pkg directory for the library there should be only **one** `.pkgproj` for the primary package for the library. If the library has platform-specific implementations those should be split into platform specific projects in a subfolder for each platform. (see [Package projects](./package-projects.md)) - ## tests Similar to the src projects tests projects will define a `TargetFrameworks` property so they can list out the set of target frameworks they support. diff --git a/docs/project/library-servicing.md b/docs/project/library-servicing.md index 2fca53501f0afc..1b3dd7263b0bb3 100644 --- a/docs/project/library-servicing.md +++ b/docs/project/library-servicing.md @@ -2,21 +2,19 @@ This document provides the steps necessary after modifying a library in a servicing branch (where "servicing branch" refers to any branch whose name begins with `release/`). -## Check for existence of a .pkgproj +## Check if a package is generated -Your first step is to determine whether or not your library has its own package. To do this, go into the root folder for the library you've made changes to. If there is a `pkg` folder there (which should have a `.pkgproj` file inside of it), your library does have its own package. If there is no `pkg` folder there, the library is the part of the shared framework. If it is, then there is nothing that needs to be done. - -For example, if you made changes to [Microsoft.Win32.Primitives](https://github.com/dotnet/runtime/tree/main/src/libraries/Microsoft.Win32.Primitives), then you have a `.pkgproj`, and will have to follow the steps in this document. However, if you made changes to [System.Collections](https://github.com/dotnet/runtime/tree/main/src/libraries/System.Collections), then you don't have a `.pkgproj`, and you do not need to do any further work for servicing. +If a library's source project sets `true` a package is generated. If the library's source project doesn't set `true`, the library is the part of the shared framework. If it is, then there is nothing that needs to be done. ## Determine PackageVersion -Each package has a property called `PackageVersion`. When you make a change to a library & ship it, the `PackageVersion` must be bumped. This property could either be in one of two places inside your library's source folder: `Directory.Build.Props` (or dir.props), or the `.pkgproj`. It's also possible that the property is in neither of those files, in which case we're using the default version from [Packaging.props](https://github.com/dotnet/runtime/blob/main/eng/packaging.props#L25) (IMPORTANT - make sure to check the default version from the branch that you're making changes to, not from main). You'll need to increment this package version. If the property is already present in your library's source folder, just increment the patch version by 1 (e.g. `4.6.0` -> `4.6.1`). If it's not present, add it to the library's `Directory.Build.props`, where it is equal to the version in `Packaging.props`, with the patch version incremented by 1. +Each package has a property called `PackageVersion`. When you make a change to a library & ship it, the `PackageVersion` must be bumped. This property could either be in one of two places inside your library's source folder: `Directory.Build.Props`, or in the the source project (under src/). It's also possible that the property is in neither of those files, in which case we're using the default version which is calculated based on the version properties in the [Versions.props](https://github.com/dotnet/runtime/blob/95147163dac477da5177f5c5402ae9b93feb5c89/eng/Versions.props#L6-L8) file. (IMPORTANT - make sure to check the default version from the branch that you're making changes to, not from main). You'll need to increment this package version. If the property is already present in your library's source folder, just increment the patch version by 1 (e.g. `4.6.0` -> `4.6.1`). If it's not present, add it to the library's `Directory.Build.props`, where it is equal to the patch version in `Version.props`, but with the patch version incremented by one. Note that it's possible that somebody else has already incremented the package version since our last release. If this is the case, you don't need to increment it yourself. To confirm, check [Nuget.org](https://www.nuget.org/) to see if there is already a published version of your package with the same package version. If so, the `PackageVersion` must be incremented. If not, there's still a possibility that the version should be bumped, in the event that we've already built the package with its current version in an official build, but haven't released it publicly yet. If you see that the `PackageVersion` has been changed in the last 1-2 months, but don't see a matching package in Nuget.org, contact somebody on the servicing team for guidance. ## Determine AssemblyVersion -Each library has a property called `AssemblyVersion` which will be in either the library `.csproj` or in `Directory.Build.Props`. For servicing events you will want to increment the revision by 1 (e.g `4.0.0.0` -> `4.0.0.1`) in the library's `Directory.Build.Props` if the library ships in its own package and has an asset that is applicable to .NET Framework. To determine if it applies to .NET Framework you should check to see if there are any `netstandard` or `net4x` configurations in the ref and/or src project, if there are then it has assets that apply. +Each library has a property called `AssemblyVersion` which will be in either the library `.csproj` or in `Directory.Build.props`. For servicing events you will want to increment the revision by 1 (e.g `4.0.0.0` -> `4.0.0.1`) in the library's `Directory.Build.props` if the library ships in its own package and has an asset that is applicable to .NET Framework. To determine if it applies to .NET Framework you should check to see if there are any `netstandard` or `net4x` configurations in the ref and/or src project, if there are then it has assets that apply. The reason we need to increment the assembly version for things running on .NET Framework is because of the way binding works there. If there are two assemblies with the same assembly version the loader will essentially pick the first one it finds and use that version so applications don't have full control over using the later build with a particular fix included. This is worse if someone puts the older assembly in the GAC as the GAC will always win for matching assembly versions so an application couldn't load the newer one because it has the same assembly version. @@ -27,32 +25,22 @@ If this library ships both inbox on a platform and in its own library package th Can be removed when API is added and this assembly is versioned to 4.1.* --> 4.0.3.0 ``` -Where the `AssemblyVersion` is set to the old version before updating. To determine if the library ships inbox you can look at for `InboxOnTargetFramework` item groups or `TreatAsOutOfBox` suppressions in the pkgproj for the library. +Where the `AssemblyVersion` is set to the old version before updating. To determine if the library ships inbox you can look at the list in [NetCoreAppLibrary.props](https://github.com/dotnet/runtime/blob/95147163dac477da5177f5c5402ae9b93feb5c89/src/libraries/NetCoreAppLibrary.props#L1). -If the library is part of a Aspnetcore or .NET targeting pack then we cannot increment the assembly version. For Aspnetcore, You can examine the ```true``` property in the library`s ```Directory.Build.Props``` -For .Net you can examine the list in ```NetCoreAppLibrary.Props``` +If the library is part of a Aspnetcore or .NET targeting pack then we cannot increment the assembly version. For Aspnetcore, You can examine the ```true``` property in the library`s ```Directory.Build.props``` +For .Net you can examine the list in ```NetCoreAppLibrary.props``` If the library is part of a targeting pack and also contains an asset applicable to the .NET Framework then we will increment the assembly version for that asset. eg. ``` -5.0.0.1 -true +6.0.0.1 ``` -## Update the package index - -If you incremented the `AssemblyVersion` in the last step, you'll also need to add an entry to [packageIndex.json](https://github.com/dotnet/runtime/blob/main/src/libraries/pkg/Microsoft.Private.PackageBaseline/packageIndex.json). Find the entry for your library in that file (again, making sure you're in the correct release branch), then find the subsection labeled `AssemblyVersionInPackageVersion`. There, add an entry that maps your new `AssemblyVersion` to your new `PackageVersion`. For an example, see [this PR](https://github.com/dotnet/runtime/commit/d0e4dcc7ebf008e7b6835cafbd03878c3a0e75f8#diff-ec9fd7a62cb0c494d86029014940382cR107), where we bumped the `PackageVersion` of `Microsoft.Diagnostics.Tracing.EventSource` from `2.0.0` to `2.0.1`, and bumped the `AssemblyVersion` from `2.0.0.0` to `2.0.1.0`. Therefore, we added an entry to `packageIndex.json` of the form `"2.0.1.0": "2.0.1"`. -The baseline version for the assembly in the package index should also be incremented so that all the other packages can use this servicing version for package dependencies. - -## Add your package to libraries-packages.proj - -In order to ensure that your package gets built, you need to add it to [libraries-packages.proj](https://github.com/dotnet/runtime/blob/main/src/libraries/libraries-packages.proj). In the linked example, we were building `System.Drawing.Common`. All you have to do is add a `Project` block inside the linked ItemGroup that matches the form of the linked example, but with `System.Drawing.Common` replaced by your library's name. Again, make sure to do this in the right servicing branch. - ## Test your changes All that's left is to ensure that your changes have worked as expected. To do so, execute the following steps: -1. From a clean copy of your branch, run `build.cmd -allconfigurations` +1. From a clean copy of your branch, run `build.cmd/sh libs -allconfigurations` 2. Check in `bin\packages\Debug` for the existence of your package, with the appropriate package version. diff --git a/docs/workflow/debugging/libraries/debugging-packages.md b/docs/workflow/debugging/libraries/debugging-packages.md deleted file mode 100644 index 7a57a2219ceac1..00000000000000 --- a/docs/workflow/debugging/libraries/debugging-packages.md +++ /dev/null @@ -1,105 +0,0 @@ -Debugging CoreFX build issues -======================================== - -## MSBuild debug options - -* Enable MSBuild diagnostics log (msbuild.log): -`dotnet build my.csproj /flp:v=diag` -* Generate a flat project file (out.pp): -`dotnet build my.csproj /pp:out.pp` -* Generate a binary log usable by the [MSBuild Binary and Structured Log Viewer](http://msbuildlog.com/): -`dotnet build my.csproj /bl` - -## Steps to debug packaging build issues - -(This documentation is work in progress.) - -I found the following process to help when investigating some of the build issues caused by incorrect packaging. - -To quickly validate if a given project compiles on all supported configurations use `dotnet build /t:RebuildAll`. This applies for running tests as well. For more information, see [Building individual libraries](../../building/libraries/README.md#building-individual-libraries) - -Assuming the current directory is `\src\contractname\`: - -1. Build the `\ref` folder: `dotnet build` - - -Check the logs for output such as: -``` -Project "S:\c1\src\System.Net.ServicePoint\ref\System.Net.ServicePoint.csproj" (1) is building "S:\c1\src\System.Net.ServicePoint\ref\System.Net.ServicePoint.csproj" (2:3) on node 1 -(Build target(s)). - -[...] - -CopyFilesToOutputDirectory: - Copying file from "S:\c1\bin/obj/ref/System.Net.ServicePoint/4.0.0.0/System.Net.ServicePoint.dll" to "S:\c1\bin/ref/System.Net.ServicePoint/4.0.0.0/System.Net.ServicePoint.dll". - System.Net.ServicePoint -> S:\c1\bin\ref\System.Net.ServicePoint\4.0.0.0\System.Net.ServicePoint.dll - Copying file from "S:\c1\bin/obj/ref/System.Net.ServicePoint/4.0.0.0/System.Net.ServicePoint.pdb" to "S:\c1\bin/ref/System.Net.ServicePoint/4.0.0.0/System.Net.ServicePoint.pdb". - -[...] - -Project "S:\c1\src\System.Net.ServicePoint\ref\System.Net.ServicePoint.csproj" (1) is building "S:\c1\src\System.Net.ServicePoint\ref\System.Net.ServicePoint.csproj" (2:4) on node 1 -(Build target(s)). - -[...] - -CopyFilesToOutputDirectory: - Copying file from "S:\c1\bin/obj/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp1.1/System.Net.ServicePoint.dll" to "S:\c1\bin/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp1.1/System.Net.ServicePoint.dll". - System.Net.ServicePoint -> S:\c1\bin\ref\System.Net.ServicePoint\4.0.0.0\netcoreapp1.1\System.Net.ServicePoint.dll - Copying file from "S:\c1\bin/obj/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp1.1/System.Net.ServicePoint.pdb" to "S:\c1\bin/ref/System.Net.ServicePoint/4.0.0.0/netcoreapp1.1/System.Net.ServicePoint.pdb". -``` - -Using your favourite IL disassembler, ensure that each platform contains the correct APIs. Missing APIs from the contracts is likely caused by not having the right `DefineConstants` tags in the csproj files. - -2. Build the `\src` folder: `dotnet build` - -Use the same technique above to ensure that the binaries include the correct implementations. - -3. Build the `\pkg` folder: `dotnet build` - -Ensure that all Build Pivots are actually being built. This should build all .\ref and .\src variations as well as actually creating the NuGet packages. - -Verify that the contents of the nuspec as well as the actual package is correct. You can find the packages by searching for the following pattern in the msbuild output: - -``` -GetPkgProjPackageDependencies: -Skipping target "GetPkgProjPackageDependencies" because it has no inputs. -CreatePackage: - Created 'S:\c1\bin/packages/Debug/System.Net.Security.4.4.0-beta-24625-0.nupkg' - Created 'S:\c1\bin/packages/Debug/symbols/System.Net.Security.4.4.0-beta-24625-0.symbols.nupkg' -Build: - System.Net.Security -> S:\c1\bin/packages/Debug/specs/System.Net.Security.nuspec -``` - -To validate the content of the nupkg, change the extension to .zip. As before, use an IL disassembler to verify that the right APIs are present within `ref\\contractname.dll` and the right implementations within the `lib\\contractname.dll`. - -4. Run the tests from `\tests`: `dotnet build /t:test` - -Ensure that the test is referencing the correct pkg. For example: -``` - - - -``` - -Ensure that the right `BuildTargetFramework` (what we're testing) is set. - -To identify which of the combinations failed, search for the following pattern in the output: - -``` -Project "S:\c1\src\System.Net.ServicePoint\tests\System.Net.ServicePoint.Tests.csproj" (1) is building "S:\c1\src\System.Net.ServicePoint\tests\System.Net.ServicePoint.Tests.csproj" -(2:5) on node 1 (Build target(s)). -ResolvePkgProjReferences: - Resolved compile assets from .NETStandard,Version=v2.0: S:\c1\bin\ref\System.Net.ServicePoint\4.0.0.0\System.Net.ServicePoint.dll - Resolved runtime assets from .NETCoreApp,Version=v2.0: S:\c1\bin\AnyOS.AnyCPU.Debug\System.Net.ServicePoint\System.Net.ServicePoint.dll -``` - -To run a test from a single Build Pivot combination, specify all properties and build the `csproj`: - -``` -dotnet build System.Net.ServicePoint.Tests.csproj -f netcoreapp2.0 /t:test /p:OuterLoop=true /p:xunitoptions=-showprogress -``` -Will run the test using the following pivot values: -* Architecture: AnyCPU -* Flavor: Debug -* OS: windows -* Target: netstandard2.0 diff --git a/eng/Subsets.props b/eng/Subsets.props index f26f40c7d7a052..47a53c75e7c502 100644 --- a/eng/Subsets.props +++ b/eng/Subsets.props @@ -63,7 +63,7 @@ libs.native+ - $(DefaultLibrariesSubsets)libs.ref+libs.src+libs.packages + $(DefaultLibrariesSubsets)libs.ref+libs.src $(DefaultLibrariesSubsets)+libs.pretest host.native+host.tools @@ -284,10 +284,6 @@ - - - - diff --git a/eng/packaging.props b/eng/packaging.props index 9e992bbf7a3103..8c4d987de58fc7 100644 --- a/eng/packaging.props +++ b/eng/packaging.props @@ -1,55 +1,20 @@ - - - $(Platform) - x64 - - - false - - - true - 6.0.0 - true - true - .dll;.exe;.winmd;.json;.pri; - - - - - false - - true - - $([MSBuild]::NormalizeDirectory('$(ArtifactsPackagesDir)', 'specs')) - $(MSBuildProjectDirectory)\..\pkg\$(MSBuildProjectName).pkgproj + .dll;.exe;.winmd;.json;.pri; - - - + - - - - - - - - - @(NETCoreApp30RIDs) - - + + diff --git a/eng/packaging.targets b/eng/packaging.targets index fcde29af5a3f9e..eaa5cb0b625a57 100644 --- a/eng/packaging.targets +++ b/eng/packaging.targets @@ -1,18 +1,23 @@ - - - - true + + + + true true $([MSBuild]::Subtract($(MajorVersion), 1)).0.0 $(PackageOutputPath) - $(TargetsForTfmSpecificContentInPackage);AddDocumentationFileToPackage;AddRuntimeSpecificFilesToPackage + $(TargetsForTfmSpecificContentInPackage);AddRuntimeSpecificFilesToPackage $(TargetsForTfmSpecificDebugSymbolsInPackage);AddRuntimeSpecificSymbolToPackage false true $(MSBuildThisFileDirectory)useSharedDesignerContext.txt IncludeAnalyzersInPackage;$(GenerateNuspecDependsOn) + + true + + $(XmlDocFileRoot)1033\$(AssemblyName).xml + true @@ -29,8 +34,7 @@ - + $(NoWarn);NU5128 @@ -50,77 +54,28 @@ - - + + - - - - - - - - - <_excludeCompile Condition="@(Dependency->WithMetadataValue('Exclude', 'Compile')->Count()) == @(Dependency->Count())">true - - - - - - - - true - _BuildPkgProj - - - - - - - - - - - <_documentationFileToPackage Condition="Exists('$(XmlDocFileRoot)1033\$(TargetName).xml')">$(XmlDocFileRoot)1033\$(TargetName).xml - <_documentationFileToPackage Condition="'$(_documentationFileToPackage)' == '' and Exists('$(DocumentationFile)')">$(DocumentationFile) - - - - - + + - + - $(PackagingTaskAssembly)net5.0\ - $(PackagingTaskAssembly)Microsoft.DotNet.Build.Tasks.Packaging.dll - - - - - - <_AllPkgProjs Include="$(LibrariesProjectRoot)*\pkg\**\*.pkgproj" /> - - - - <_AllPkgProjsToPackageIdentity Include="@(_AllPkgProjs -> '%(Filename)')" /> - - - - - - - - - <_OverridenPackageDownloads Include="@(_PackageDownload)" Condition="'@(PackageDownload)' == '@(_PackageDownload)' and %(Identity) != ''" /> - <_PackageDownload Remove="@(_OverridenPackageDownloads)" /> - <_PackageDownload Include="@(PackageDownload)" /> - - - - - - [%(Version)] - - - - diff --git a/eng/restore/repoRestore.props b/eng/restore/repoRestore.props deleted file mode 100644 index d2ca92d6db0131..00000000000000 --- a/eng/restore/repoRestore.props +++ /dev/null @@ -1,26 +0,0 @@ - - - $(RepoRoot)artifacts\toolset\Common\ - false - - unused - - <_excludeRestorePackageImports>$(ExcludeRestorePackageImports) - false - - - - - $(_excludeRestorePackageImports) - - - - - false - false - false - - diff --git a/eng/restore/repoRestore.targets b/eng/restore/repoRestore.targets deleted file mode 100644 index d350ef534c1c47..00000000000000 --- a/eng/restore/repoRestore.targets +++ /dev/null @@ -1,29 +0,0 @@ - - - - Unknown - - - - - <_excludeRestorePackageImports>$(ExcludeRestorePackageImports) - false - - - - $(_excludeRestorePackageImports) - - - - - - - - - diff --git a/src/libraries/Directory.Build.props b/src/libraries/Directory.Build.props index a2d67fe604cd02..23421981fbadfe 100644 --- a/src/libraries/Directory.Build.props +++ b/src/libraries/Directory.Build.props @@ -13,23 +13,18 @@ - $(RepositoryEngineeringDir)BeforeTargetFrameworkInference.targets $(LibrariesProjectRoot)OSGroups.json false - $(RepositoryEngineeringDir)LicenseHeader.txt - - - - - net461;net462;net47;net471;net472 + + false @@ -52,11 +47,6 @@ annotations - - - $([MSBuild]::NormalizeDirectory('$(LibrariesProjectRoot)', 'pkg')) - - $([MSBuild]::ValueOrDefault('$(IsSourceProject)', 'false')) $([MSBuild]::ValueOrDefault('$(IsSourceProject)', 'false')) @@ -69,13 +59,8 @@ - - - - - $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'ref')) - - + + @@ -86,12 +71,14 @@ MicrosoftAspNetCore true - - - - false + false + + false @@ -102,19 +89,13 @@ false $(RepositoryEngineeringDir)CodeAnalysis.test.ruleset + + true + true - - false - - $([MSBuild]::NormalizeDirectory('$(RefRootPath)', '$(NetCoreAppCurrent)')) - $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'runtime', '$(NetCoreAppCurrent)-$(TargetOS)-$(Configuration)-$(TargetArchitecture)')) - $(TargetOS).$(Platform).$(Configuration) AnyOS.AnyCPU.$(Configuration) @@ -126,6 +107,9 @@ $(TestArchiveTestsRoot)$(OSPlatformConfig)/ $(TestArchiveRoot)runtime/ + $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'ref', '$(NetCoreAppCurrent)')) + $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'runtime', '$(NetCoreAppCurrent)-$(TargetOS)-$(Configuration)-$(TargetArchitecture)')) + $([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', 'pkg', 'aspnetcoreapp')) $([MSBuild]::NormalizeDirectory('$(ASPNETCoreAppPackageRootPath)', 'ref')) $([MSBuild]::NormalizeDirectory('$(ASPNETCoreAppPackageRootPath)', 'lib')) @@ -135,16 +119,6 @@ $([MSBuild]::NormalizeDirectory('$(CommonPathRoot)', 'tests')) - - true - - - - - - false - - @@ -174,16 +148,8 @@ - - - - - false - true - - diff --git a/src/libraries/Directory.Build.targets b/src/libraries/Directory.Build.targets index e5dbad2afc7868..6453b8d5407c45 100644 --- a/src/libraries/Directory.Build.targets +++ b/src/libraries/Directory.Build.targets @@ -39,8 +39,6 @@ $(NoWarn);SYSLIB0003;SYSLIB0004;SYSLIB0015;SYSLIB0017;SYSLIB0021;SYSLIB0022;SYSLIB0023;SYSLIB0025;SYSLIB0032 - - $(OutputPath)$(TargetName).xml true @@ -137,12 +135,11 @@ - + - @@ -169,15 +166,6 @@ - - - - - - - - - @@ -196,16 +184,6 @@ - - - - - - + true false false true diff --git a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj index 9fdcecf8f5e1ef..5bb7b0e6b29d18 100644 --- a/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj +++ b/src/libraries/System.IO.Compression.Brotli/src/System.IO.Compression.Brotli.csproj @@ -3,7 +3,6 @@ true enable $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent) - true diff --git a/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj b/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj index 5a34b6bdb90577..1231450cc59eca 100644 --- a/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj +++ b/src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj @@ -1,7 +1,6 @@ $(NetCoreAppCurrent);netcoreapp3.1;netstandard2.0;net461 - true enable true Single producer single consumer byte buffer management. diff --git a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj index c443ea30730057..cc1681189944f2 100644 --- a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj +++ b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj @@ -11,7 +11,7 @@ + They are filtered in the traversal build in src.proj based on the OutputRid. --> diff --git a/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj b/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj index 3061589479bb62..4f2d15aa3b6a58 100644 --- a/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj +++ b/src/libraries/System.Numerics.Vectors/src/System.Numerics.Vectors.csproj @@ -3,7 +3,6 @@ true $(NetCoreAppCurrent) enable - true diff --git a/src/libraries/System.Runtime.Experimental/ref/System.Runtime.Experimental.csproj b/src/libraries/System.Runtime.Experimental/ref/System.Runtime.Experimental.csproj index 4c6ae1a740fe26..0ec6e1e5a1e891 100644 --- a/src/libraries/System.Runtime.Experimental/ref/System.Runtime.Experimental.csproj +++ b/src/libraries/System.Runtime.Experimental/ref/System.Runtime.Experimental.csproj @@ -19,6 +19,8 @@ true Exposes new experimental APIs from System.Runtime $(MSBuildProjectName) + + true diff --git a/src/libraries/System.Runtime.Experimental/src/System.Runtime.Experimental.proj b/src/libraries/System.Runtime.Experimental/src/System.Runtime.Experimental.proj new file mode 100644 index 00000000000000..304633a1911a7f --- /dev/null +++ b/src/libraries/System.Runtime.Experimental/src/System.Runtime.Experimental.proj @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/libraries/System.Windows.Extensions/Directory.Build.props b/src/libraries/System.Windows.Extensions/Directory.Build.props index 025f072b49a432..e7e8cb9ac081be 100644 --- a/src/libraries/System.Windows.Extensions/Directory.Build.props +++ b/src/libraries/System.Windows.Extensions/Directory.Build.props @@ -3,10 +3,5 @@ Open windows - Provides miscellaneous Windows-specific types - -Commonly Used Types: -System.Security.Cryptography.X509Certificates.X509Certificate2UI -System.Security.Cryptography.X509Certificates.X509SelectionFlag \ No newline at end of file diff --git a/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj b/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj index 276e9865a70a02..f2d4cc54d10126 100644 --- a/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj +++ b/src/libraries/System.Windows.Extensions/src/System.Windows.Extensions.csproj @@ -3,6 +3,11 @@ true $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent);netcoreapp3.1-windows;netcoreapp3.1 true + Provides miscellaneous Windows-specific types + +Commonly Used Types: +System.Security.Cryptography.X509Certificates.X509Certificate2UI +System.Security.Cryptography.X509Certificates.X509SelectionFlag diff --git a/src/libraries/libraries-packages.proj b/src/libraries/libraries-packages.proj deleted file mode 100644 index 4232bcfa4331f2..00000000000000 --- a/src/libraries/libraries-packages.proj +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/libraries/pkg/baseline/baseline.props b/src/libraries/pkg/baseline/baseline.props deleted file mode 100644 index aadc08c1a3e197..00000000000000 --- a/src/libraries/pkg/baseline/baseline.props +++ /dev/null @@ -1,31 +0,0 @@ - - - - $(MSBuildThisFileDirectory)packageIndex.json - - - - - - - - - - - - - - - - - - <_StablePackageIdentity Include="$(Id)"> - $(PackageVersion) - - - - diff --git a/src/libraries/pkg/baseline/packageIndex.json b/src/libraries/pkg/baseline/packageIndex.json deleted file mode 100644 index 09f1be0796e397..00000000000000 --- a/src/libraries/pkg/baseline/packageIndex.json +++ /dev/null @@ -1,7901 +0,0 @@ -{ - "Packages": { - "Accessibility": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "CustomMarshalers": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "ISymWrapper": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Activities.Build": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Bcl.AsyncInterfaces": { - "StableVersions": [ - "1.0.0", - "1.1.0", - "1.1.1", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.0.0": "1.0.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Bcl.HashCode": { - "StableVersions": [ - "1.0.0" - ], - "BaselineVersion": "1.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.0.0": "1.0.0" - } - }, - "Microsoft.Bcl.Json.Sources": { - "InboxOn": {} - }, - "Microsoft.Build": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Build.Conversion.v4.0": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Build.Engine": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Build.Framework": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Build.Tasks.v4.0": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.Build.Utilities.v4.0": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "Microsoft.CSharp": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp2.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.4.0", - "4.0.4.0": "4.5.0" - } - }, - "Microsoft.Devices.Sensors": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Diagnostics.Tracing.EventSource.Redist": { - "StableVersions": [ - "1.0.24", - "1.0.26", - "1.1.24", - "1.1.25", - "1.1.26", - "1.1.28", - "2.0.0", - "2.0.1", - "2.1.0", - "2.2.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "2.0.0.0": "2.0.0", - "2.0.1.0": "2.0.1", - "2.0.2.0": "2.1.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Caching.Abstractions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.23", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Binder": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.10", - "2.2.0", - "2.2.4", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.CommandLine": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "2.2.4", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.FileExtensions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Ini": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Json": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.UserSecrets": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Configuration.Xml": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0", - "5.0.1" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.DependencyModel": { - "StableVersions": [ - "1.0.0", - "1.0.2", - "1.0.3", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.9", - "2.0.0", - "2.0.1", - "2.0.3", - "2.0.4", - "2.1.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "3.1.3.0": "3.1.3", - "3.1.4.0": "3.1.4", - "3.1.5.0": "3.1.5", - "3.1.6.0": "3.1.6", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Abstractions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Composite": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Physical": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.FileSystemGlobbing": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "2.0.0", - "2.0.1", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.1.0", - "3.1.1", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.HostFactoryResolver.Sources": { - "InboxOn": {} - }, - "Microsoft.Extensions.Hosting": { - "StableVersions": [ - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Hosting.Abstractions": { - "StableVersions": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Hosting.Systemd": { - "StableVersions": [ - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "5.0.0", - "5.0.1" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Hosting.WindowsServices": { - "StableVersions": [ - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "3.1.11", - "5.0.0", - "5.0.1" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Http": { - "StableVersions": [ - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Configuration": { - "StableVersions": [ - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Console": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Debug": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "3.1.3", - "3.1.4", - "3.1.5", - "3.1.6", - "3.1.7", - "3.1.8", - "3.1.9", - "3.1.10", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.EventLog": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.EventSource": { - "StableVersions": [ - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.TraceSource": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Options": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Options.DataAnnotations": { - "StableVersions": [ - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Extensions.Primitives": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.1.0", - "1.1.1", - "2.0.0", - "2.1.0", - "2.1.1", - "2.1.6", - "2.2.0", - "3.0.0", - "3.0.1", - "3.0.2", - "3.0.3", - "3.1.0", - "3.1.1", - "3.1.2", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.IO.Redist": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.JScript": { - "InboxOn": { - "net45": "10.0.0.0" - } - }, - "Microsoft.NETCore.Platforms": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.1.0", - "1.1.1", - "1.1.2", - "2.0.0", - "2.0.1", - "2.0.2", - "2.1.0", - "2.1.1", - "2.1.2", - "2.1.3", - "2.1.4", - "2.1.5", - "2.2.0", - "2.2.1", - "2.2.2", - "3.0.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {} - }, - "Microsoft.NETCore.Targets": { - "StableVersions": [ - "1.0.0", - "1.0.1", - "1.0.2", - "1.0.3", - "1.0.4", - "1.0.5", - "1.0.6", - "1.0.7", - "1.1.0", - "1.1.1", - "1.1.2", - "1.1.3", - "1.1.4", - "2.0.0", - "2.1.0", - "3.0.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": {} - }, - "Microsoft.Phone": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Phone.Controls": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Phone.Controls.Maps": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Phone.Interop": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Phone.Maps": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Phone.Reactive": { - "InboxOn": { - "wp8": "8.0.0.0" - } - }, - "Microsoft.Private.PackageBaseline": { - "StableVersions": [ - "1.0.0" - ], - "InboxOn": {} - }, - "Microsoft.VisualBasic": { - "StableVersions": [ - "10.0.0", - "10.0.1", - "10.1.0", - "10.2.0", - "10.3.0" - ], - "BaselineVersion": "10.3.0", - "InboxOn": { - "netcoreapp2.0": "10.0.3.0", - "netcoreapp2.1": "10.0.4.0", - "net5.0": "10.0.6.0", - "net45": "10.0.0.0", - "portable45-net45+win8+wpa81": "10.0.0.0", - "portable46-net451+win81+wpa81": "10.0.0.0", - "portable46-win81+wpa81": "10.0.0.0", - "portable46-net451+win81": "10.0.0.0", - "portable45-net45+win8": "10.0.0.0", - "uap10.0.16299": "10.0.0.0", - "win8": "10.0.0.0", - "wpa81": "10.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "10.0.0.0": "10.0.0", - "10.0.1.0": "10.0.1", - "10.0.2.0": "10.1.0", - "10.0.3.0": "10.2.0", - "10.0.4.0": "10.3.0" - } - }, - "Microsoft.VisualBasic.Compatibility": { - "InboxOn": { - "net45": "10.0.0.0" - } - }, - "Microsoft.VisualBasic.Compatibility.Data": { - "InboxOn": { - "net45": "10.0.0.0" - } - }, - "Microsoft.VisualBasic.Core": { - "BaselineVersion": "11.0.0", - "InboxOn": { - "netcoreapp3.0": "10.0.4.0", - "netcoreapp3.1": "10.0.5.0", - "net5.0": "10.0.6.0", - "net6.0": "11.0.0.0" - } - }, - "Microsoft.VisualC": { - "InboxOn": { - "net45": "10.0.0.0" - } - }, - "Microsoft.VisualC.STLCLR": { - "InboxOn": { - "net45": "2.0.0.0" - } - }, - "Microsoft.Win32.Primitives": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "Microsoft.Win32.Registry": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.1.0.0": "4.4.0", - "4.1.1.0": "4.5.0", - "4.1.2.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Win32.SystemEvents": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.XmlSerializer.Generator": { - "StableVersions": [ - "1.0.0", - "2.0.0", - "2.1.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.0.0": "1.0.0", - "1.0.1.0": "1.1.0", - "2.0.0.0": "2.0.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "Microsoft.Xna.Framework": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.Avatar": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.Game": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.GamerServices": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.GamerServicesExtensions": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.Graphics": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.Input.Touch": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.Interop": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "Microsoft.Xna.Framework.MediaLibraryExtensions": { - "InboxOn": { - "wp8": "4.0.0.0" - } - }, - "mscorlib": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "mscorlib.Extensions": { - "InboxOn": { - "wp8": "2.0.5.0" - } - }, - "netstandard": { - "InboxOn": { - "netcoreapp2.0": "2.0.0.0", - "netcoreapp3.0": "2.1.0.0", - "net461": "2.0.0.0", - "netstandard2.0": "2.0.0.0", - "netstandard2.1": "2.1.0.0", - "uap10.0.16299": "2.0.0.0" - } - }, - "NETStandard.Library": { - "StableVersions": [ - "1.6.0", - "1.6.1", - "2.0.0", - "2.0.1", - "2.0.2", - "2.0.3" - ], - "BaselineVersion": "1.6.1", - "InboxOn": {} - }, - "Newtonsoft.Json": { - "StableVersions": [ - "9.0.1" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "9.0.0.0": "9.0.1" - } - }, - "PresentationBuildTasks": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationCore": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.Aero": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.Aero2": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.AeroLite": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.Classic": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.Luna": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "PresentationFramework.Royale": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "ReachFramework": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "runtime.native.System.Data.SqlClient.sni": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {} - }, - "runtime.native.System.IO.Ports": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {} - }, - "SMDiagnostics": { - "InboxOn": { - "monoandroid10": "Any" - } - }, - "sysglobl": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Activities": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Activities.Core.Presentation": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Activities.DurableInstancing": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Activities.Presentation": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Activities.Statements": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.AddIn": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.AddIn.Contract": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.AppContext": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Buffers": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1" - ], - "BaselineVersion": "4.5.1", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.0": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.0.3.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0" - } - }, - "System.CodeDom": { - "StableVersions": [ - "4.4.0", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Collections": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Collections.Concurrent": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.12", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.14.0", - "netcoreapp3.1": "4.0.15.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.14.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.12.0": "4.0.12", - "4.0.13.0": "4.3.0" - } - }, - "System.Collections.Immutable": { - "StableVersions": [ - "1.1.36", - "1.1.37", - "1.2.0", - "1.3.0", - "1.3.1", - "1.3.2", - "1.4.0", - "1.5.0", - "1.6.0", - "1.7.0", - "1.7.1", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "1.2.2.0", - "netcoreapp2.1": "1.2.3.0", - "netcoreapp3.0": "1.2.4.0", - "netcoreapp3.1": "1.2.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "1.2.3.0" - }, - "AssemblyVersionInPackageVersion": { - "1.1.36.0": "1.1.36", - "1.1.37.0": "1.1.37", - "1.2.0.0": "1.2.0", - "1.2.1.0": "1.3.0", - "1.2.2.0": "1.4.0", - "1.2.3.0": "1.5.0", - "1.2.4.0": "1.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Collections.NonGeneric": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Collections.Specialized": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.ComponentModel": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.ComponentModel.Annotations": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.0": "4.3.0.0", - "netcoreapp3.1": "4.3.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0", - "4.2.0.0": "4.4.0", - "4.2.1.0": "4.5.0", - "4.3.0.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.ComponentModel.Composition": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.ComponentModel.Composition.Registration": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.ComponentModel.DataAnnotations": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ComponentModel.EventBasedAsync": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.ComponentModel.Primitives": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Composition": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {} - }, - "System.Composition.AttributedModel": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.31.0": "1.0.31", - "1.0.32.0": "1.1.0", - "1.0.33.0": "1.2.0", - "1.0.34.0": "1.3.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Composition.Convention": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.31.0": "1.0.31", - "1.0.32.0": "1.1.0", - "1.0.33.0": "1.2.0", - "1.0.34.0": "1.3.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Composition.Hosting": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.31.0": "1.0.31", - "1.0.32.0": "1.1.0", - "1.0.33.0": "1.2.0", - "1.0.34.0": "1.3.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Composition.Runtime": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.31.0": "1.0.31", - "1.0.32.0": "1.1.0", - "1.0.33.0": "1.2.0", - "1.0.34.0": "1.3.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Composition.TypedParts": { - "StableVersions": [ - "1.0.31", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.0", - "1.4.1", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.31.0": "1.0.31", - "1.0.32.0": "1.1.0", - "1.0.33.0": "1.2.0", - "1.0.34.0": "1.3.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Configuration": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "System.Configuration.ConfigurationManager": { - "StableVersions": [ - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "5.0.0", - "4.7.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Configuration.Install": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Console": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Core": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Data": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Data.Common": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Data.DataSetExtensions": { - "StableVersions": [ - "4.5.0" - ], - "BaselineVersion": "4.5.0", - "InboxOn": { - "netcoreapp3.0": "4.0.0.0", - "netcoreapp3.1": "4.0.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.Data.Entity": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Data.Entity.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Data.Linq": { - "InboxOn": { - "net45": "4.0.0.0", - "wp8": "8.0.0.0" - } - }, - "System.Data.Odbc": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Data.OleDb": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Data.OracleClient": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Data.Services": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Data.Services.Client": { - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Data.Services.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Data.SqlClient": { - "StableVersions": [ - "4.1.0", - "4.3.0", - "4.3.1", - "4.4.0", - "4.4.1", - "4.4.2", - "4.4.3", - "4.5.0", - "4.5.1", - "4.6.0", - "4.6.1", - "4.7.0", - "4.8.0", - "4.8.1" - ], - "BaselineVersion": "4.8.0", - "InboxOn": { - "net461": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.3.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.1.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0", - "4.2.0.0": "4.4.0", - "4.4.0.0": "4.5.0", - "4.5.0.0": "4.6.0", - "4.5.0.1": "4.6.1", - "4.6.0.0": "4.7.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Data.SqlXml": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Deployment": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Device": { - "InboxOn": { - "net45": "4.0.0.0", - "wp8": "2.0.5.0" - } - }, - "System.Diagnostics.Contracts": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Diagnostics.Debug": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.3.1", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.1", - "netcoreapp2.1": "4.0.3.1", - "netcoreapp3.0": "4.0.4.0", - "netcoreapp3.1": "4.0.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.2.1": "4.4.1", - "4.0.3.0": "4.5.0", - "4.0.3.1": "4.5.1", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Diagnostics.EventLog": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Diagnostics.FileVersionInfo": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Diagnostics.PerformanceCounter": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Diagnostics.Process": { - "StableVersions": [ - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.1.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Diagnostics.StackTrace": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.2", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.2.0", - "netstandard2.0": "4.0.2.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.0.2", - "4.0.3.0": "4.3.0" - } - }, - "System.Diagnostics.TextWriterTraceListener": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Diagnostics.Tools": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Diagnostics.TraceEvent": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Diagnostics.TraceSource": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Diagnostics.Tracing": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.20", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net451": "4.0.10.0", - "net46": "4.0.20.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.10.0", - "portable46-win81+wpa81": "4.0.10.0", - "portable46-net451+win81": "4.0.10.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "win81": "4.0.10.0", - "wpa81": "4.0.10.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.20.0": "4.0.20", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.DirectoryServices": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.DirectoryServices.AccountManagement": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.DirectoryServices.Protocols": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.Drawing": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "System.Drawing.Common": { - "StableVersions": [ - "4.5.0", - "4.5.1", - "4.5.2", - "4.6.0", - "4.6.1", - "4.6.2", - "4.7.0", - "4.7.1", - "5.0.0", - "5.0.1", - "5.0.2" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.0.1": "4.5.1", - "4.0.0.2": "4.5.2", - "4.0.1.0": "4.6.0", - "4.0.1.1": "4.6.1", - "5.0.0.0": "5.0.0", - "5.0.0.1": "5.0.1", - "6.0.0.0": "6.0.0" - } - }, - "System.Drawing.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Drawing.Primitives": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.2.0.0", - "netcoreapp3.1": "4.2.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.2.0.0": "4.5.0" - } - }, - "System.Dynamic": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Dynamic.Runtime": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.EnterpriseServices": { - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any" - } - }, - "System.Formats.Asn1": { - "StableVersions": [ - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Formats.Cbor": { - "StableVersions": [ - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Globalization": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Globalization.Calendars": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Globalization.Extensions": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.IdentityModel": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.IdentityModel.Selectors": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.IdentityModel.Services": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.IO": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.IO.Compression": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net461": "4.1.1.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.1.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.1.1", - "4.1.2.0": "4.3.0" - } - }, - "System.IO.Compression.Brotli": { - "InboxOn": { - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.2.0.0": "4.4.0", - "4.2.1.0": "4.5.0" - } - }, - "System.IO.Compression.FileSystem": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.IO.Compression.ZipFile": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp2.1": "4.0.4.0", - "netcoreapp3.1": "4.0.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.4.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.IO.FileSystem": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.IO.FileSystem.AccessControl": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.IO.FileSystem.DriveInfo": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.IO.FileSystem.Watcher": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.IO.IsolatedStorage": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.IO.Log": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.IO.MemoryMappedFiles": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.IO.Packaging": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.IO.Pipelines": { - "StableVersions": [ - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.6.0", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.0.1": "4.5.2", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.IO.Pipes": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "uap10.0.16299": "4.1.1.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.IO.Pipes.AccessControl": { - "StableVersions": [ - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "5.0.0.0": "5.0.0" - } - }, - "System.IO.Ports": { - "StableVersions": [ - "4.4.0", - "4.5.0", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "uap10.0.16299": "4.0.1.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.IO.UnmanagedMemoryStream": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Json": { - "StableVersions": [ - "4.4.0", - "4.5.0", - "4.6.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "2.0.5.0": "4.4.0", - "2.0.6.0": "4.5.0", - "2.0.7.0": "4.6.0" - } - }, - "System.Linq": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Linq.Expressions": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.1.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Linq.Parallel": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Linq.Queryable": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Management": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.Management.Instrumentation": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Memory": { - "StableVersions": [ - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4" - ], - "BaselineVersion": "4.5.4", - "InboxOn": { - "netcoreapp2.1": "4.1.0.0", - "netcoreapp3.0": "4.2.0.0", - "netcoreapp3.1": "4.2.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.1.1": "4.5.3", - "4.1.0.0": "4.6.0" - } - }, - "System.Memory.Data": { - "StableVersions": [ - "1.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "1.0.0.0": "1.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Messaging": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Net": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "3.9.0.0", - "portable45-net45+win8+wp8+wpa81": "3.9.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "portable46-wp81+wpa81": "3.9.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.AuthenticationManager": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.Cache": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.Http": { - "StableVersions": [ - "2.0.20126", - "2.0.20505", - "2.0.20710", - "4.0.0", - "4.1.0", - "4.1.1", - "4.1.2", - "4.1.3", - "4.1.4", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.3.4" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net461": "4.1.1.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.1.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0", - "4.2.0.0": "4.4.0" - } - }, - "System.Net.Http.Json": { - "StableVersions": [ - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Net.Http.Rtc": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "uap10.0.16299": "4.0.4.0", - "win8": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.4.0" - } - }, - "System.Net.Http.WebRequest": { - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any" - } - }, - "System.Net.Http.WebRequestHandler": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.Http.WinHttpHandler": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.0.4", - "4.3.0", - "4.3.1", - "4.3.2", - "4.3.3", - "4.4.0", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.1.3": "4.3.3", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.3.1": "4.5.1", - "4.0.3.2": "4.5.3", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Net.HttpListener": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.Mail": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.NameResolution": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Net.NetworkInformation": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Net.Ping": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Net.Primitives": { - "StableVersions": [ - "3.9.0", - "4.0.0", - "4.0.10", - "4.0.11", - "4.0.12", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "3.9.0.0", - "portable45-net45+win8+wp8+wpa81": "3.9.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "portable46-wp81+wpa81": "3.9.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "3.9.0.0": "3.9.0", - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Net.Quic": { - "InboxOn": { - "net6.0": "6.0.0.0" - } - }, - "System.Net.Requests": { - "StableVersions": [ - "3.9.0", - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "3.9.0.0", - "portable45-net45+win8+wp8+wpa81": "3.9.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "portable46-wp81+wpa81": "3.9.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "3.9.0.0": "3.9.0", - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Net.Security": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.2", - "4.3.0", - "4.3.1", - "4.3.2" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Net.ServicePoint": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.Sockets": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.1.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Net.Utilities": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Net.WebClient": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.0.1.0" - } - }, - "System.Net.WebHeaderCollection": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net46": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Net.WebProxy": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.0.1.0" - } - }, - "System.Net.WebSockets": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Net.WebSockets.Client": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.2", - "4.3.0", - "4.3.1", - "4.3.2" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Net.WebSockets.WebSocketProtocol": { - "StableVersions": [ - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.6.0", - "5.0.0" - ], - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.0.1": "4.5.2", - "4.0.0.2": "4.5.3", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.Numerics": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Numerics.Tensors": { - "StableVersions": [ - "0.1.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "0.1.0.0": "0.1.0", - "0.2.0.0": "0.2.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Numerics.Vectors": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.1.1", - "4.3.0", - "4.4.0", - "4.5.0" - ], - "BaselineVersion": "4.5.0", - "InboxOn": { - "netcoreapp2.0": "4.1.3.0", - "netcoreapp2.1": "4.1.4.0", - "netcoreapp3.0": "4.1.5.0", - "netcoreapp3.1": "4.1.6.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net46": "4.0.0.0", - "net461": "4.1.2.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.4.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.1.1", - "4.1.2.0": "4.3.0", - "4.1.3.0": "4.4.0", - "4.1.4.0": "4.5.0" - } - }, - "System.Numerics.Vectors.WindowsRuntime": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "uap10.0.16299": "4.0.4.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.4.0" - } - }, - "System.ObjectModel": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.12", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.12.0": "4.0.12", - "4.0.13.0": "4.3.0" - } - }, - "System.Observable": { - "InboxOn": { - "wp8": "2.0.5.0" - } - }, - "System.Printing": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Private.DataContractSerialization": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.1.0", - "4.1.1", - "4.1.2", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.1.2.0": "4.3.0" - } - }, - "System.Private.Runtime.InteropServices.JavaScript": { - "InboxOn": { - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - } - }, - "System.Private.Uri": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.3", - "4.0.4", - "4.0.5", - "4.3.0", - "4.3.1", - "4.3.2" - ], - "BaselineVersion": "4.3.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.3.0": "4.3.0" - } - }, - "System.Reflection": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Reflection.Context": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0", - "uap10.0.16299": "4.0.3.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.6.0" - } - }, - "System.Reflection.DispatchProxy": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.6.0", - "4.7.0", - "4.7.1" - ], - "BaselineVersion": "4.7.1", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp2.1": "4.0.4.0", - "netcoreapp3.0": "4.0.5.0", - "netcoreapp3.1": "4.0.6.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "netstandard2.1": "4.0.5.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.4.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.4.0", - "4.0.4.0": "4.5.0", - "4.0.5.0": "4.6.0", - "4.0.6.0": "4.7.0" - } - }, - "System.Reflection.Emit": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.6.0", - "4.7.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "netstandard2.1": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.6.0", - "4.7.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.0": "4.1.0.0", - "netcoreapp3.1": "4.1.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "netstandard2.1": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "wp8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.6.0", - "4.7.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.0": "4.1.0.0", - "netcoreapp3.1": "4.1.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "netstandard2.1": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "wp8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Reflection.Extensions": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Reflection.Metadata": { - "StableVersions": [ - "1.0.21", - "1.0.22", - "1.1.0", - "1.2.0", - "1.3.0", - "1.4.1", - "1.4.2", - "1.4.3", - "1.5.0", - "1.6.0", - "1.7.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "1.4.2.0", - "netcoreapp2.1": "1.4.3.0", - "netcoreapp3.0": "1.4.4.0", - "netcoreapp3.1": "1.4.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "1.4.3.0" - }, - "AssemblyVersionInPackageVersion": { - "1.0.22.0": "1.0.22", - "1.1.0.0": "1.1.0", - "1.2.0.0": "1.2.0", - "1.3.0.0": "1.3.0", - "1.4.1.0": "1.4.1", - "1.4.2.0": "1.5.0", - "1.4.3.0": "1.6.0", - "1.4.4.0": "1.7.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Reflection.Primitives": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Reflection.TypeExtensions": { - "StableVersions": [ - "4.0.0", - "4.1.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.6.0" - ], - "BaselineVersion": "4.6.0", - "InboxOn": { - "netcoreapp2.0": "4.1.2.0", - "netcoreapp2.1": "4.1.3.0", - "netcoreapp3.0": "4.1.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.3.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0", - "4.1.2.0": "4.4.0", - "4.1.3.0": "4.5.0", - "4.1.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Resources.Extensions": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Resources.Reader": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "uap10.0.16299": "4.1.1.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Resources.ReaderWriter": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Resources.ResourceManager": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Resources.Writer": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "uap10.0.16299": "4.1.1.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Runtime": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.20", - "4.1.0", - "4.1.1", - "4.1.2", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net451": "4.0.10.0", - "net46": "4.0.20.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.10.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.10.0", - "portable46-net451+win81": "4.0.10.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "win81": "4.0.10.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.10.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.20.0": "4.0.20", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Runtime.Caching": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0" - } - }, - "System.Runtime.CompilerServices.Unsafe": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.5.2", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp3.0": "4.0.5.0", - "netcoreapp3.1": "4.0.6.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.3.0": "4.4.0", - "4.0.4.0": "4.5.0", - "4.0.4.1": "4.5.2", - "4.0.5.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Runtime.CompilerServices.VisualC": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Runtime.DurableInstancing": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Runtime.Extensions": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.1.1", - "4.1.2", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Runtime.Handles": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net46": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Runtime.InteropServices": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.20", - "4.1.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net451": "4.0.10.0", - "net46": "4.0.20.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.10.0", - "portable46-win81+wpa81": "4.0.10.0", - "portable46-net451+win81": "4.0.10.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "win81": "4.0.10.0", - "wpa81": "4.0.10.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.20.0": "4.0.20", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0" - } - }, - "System.Runtime.InteropServices.WindowsRuntime": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Runtime.Intrinsics": { - "InboxOn": { - "netcoreapp3.0": "4.0.0.0", - "netcoreapp3.1": "4.0.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - } - }, - "System.Runtime.Loader": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.0": "4.1.0.0", - "netcoreapp3.1": "4.1.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Runtime.Numerics": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Runtime.Remoting": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Runtime.Serialization": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Runtime.Serialization.Formatters": { - "StableVersions": [ - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.1.0": "4.3.0" - } - }, - "System.Runtime.Serialization.Formatters.Soap": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Runtime.Serialization.Json": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.0.2", - "4.0.3", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.4.0", - "netcoreapp3.1": "4.0.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.4.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.0.2", - "4.0.3.0": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.1.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.1.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.1.1", - "4.1.2.0": "4.3.0" - } - }, - "System.Runtime.Serialization.Xml": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.1.0", - "4.1.1", - "4.1.2", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.3.0", - "netcoreapp2.1": "4.1.4.0", - "netcoreapp3.1": "4.1.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.1.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.4.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.1.1", - "4.1.2.0": "4.3.0" - } - }, - "System.Runtime.WindowsRuntime": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0", - "4.6.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0", - "net451": "4.0.10.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.10.0", - "portable46-wp81+wpa81": "4.0.0.0", - "uap10.0.16299": "4.0.14.0", - "win8": "4.0.0.0", - "win81": "4.0.10.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.10.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0", - "4.0.13.0": "4.4.0", - "4.0.14.0": "4.6.0" - } - }, - "System.Runtime.WindowsRuntime.UI.Xaml": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.6.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "uap10.0.16299": "4.0.4.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.0.3.0": "4.4.0", - "4.0.4.0": "4.6.0" - } - }, - "System.Security": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "System.Security.AccessControl": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.1.0.0": "4.4.0", - "4.1.1.0": "4.5.0", - "4.1.2.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.Security.Claims": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Security.Cryptography.Algorithms": { - "StableVersions": [ - "4.2.0", - "4.2.1", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.1", - "InboxOn": { - "netcoreapp2.0": "4.3.0.0", - "netcoreapp2.1": "4.3.1.0", - "netcoreapp3.1": "4.3.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "netstandard2.0": "4.2.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.3.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.2.0", - "4.1.0.0": "4.2.0", - "4.2.0.0": "4.2.0", - "4.2.1.0": "4.3.0" - } - }, - "System.Security.Cryptography.Cng": { - "StableVersions": [ - "4.2.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "4.6.1", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.3.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.2.0", - "4.1.0.0": "4.2.0", - "4.2.0.0": "4.2.0", - "4.2.1.0": "4.3.0", - "4.3.0.0": "4.4.0", - "4.3.1.0": "4.5.0", - "4.3.2.0": "4.6.0", - "4.3.2.1": "4.6.1", - "5.0.0.0": "5.0.0" - } - }, - "System.Security.Cryptography.Csp": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.3.1", - "4.4.0", - "4.5.0", - "4.5.1", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.1.0.0": "4.4.0", - "4.1.1.0": "4.5.0", - "4.1.1.1": "4.5.1", - "4.1.2.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.Security.Cryptography.Pkcs": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.5.2", - "4.6.0", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.3.1": "4.5.1", - "4.0.3.2": "4.5.2", - "4.0.4.0": "4.6.0", - "4.1.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Security.Cryptography.Primitives": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Security.Cryptography.X509Certificates": { - "StableVersions": [ - "4.1.0", - "4.1.1", - "4.1.2", - "4.3.0", - "4.3.1", - "4.3.2" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.1.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.1.0", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Security.Cryptography.Xml": { - "StableVersions": [ - "4.4.0", - "4.4.1", - "4.4.2", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Security.Permissions": { - "StableVersions": [ - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "4.7.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.4.0", - "4.0.1.0": "4.5.0", - "4.0.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Security.Principal": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Security.Principal.Windows": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.5.1", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "5.0.0", - "InboxOn": { - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.1.0.0": "4.4.0", - "4.1.1.0": "4.5.0", - "4.1.1.1": "4.5.1", - "4.1.2.0": "4.6.0", - "5.0.0.0": "5.0.0" - } - }, - "System.Security.SecureString": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.ServiceModel": { - "InboxOn": { - "net45": "4.0.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Activation": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.ServiceModel.Activities": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.ServiceModel.Channels": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.ServiceModel.Discovery": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.ServiceModel.Duplex": { - "InboxOn": { - "net45": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Http": { - "InboxOn": { - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Internals": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.NetTcp": { - "InboxOn": { - "net45": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Primitives": { - "InboxOn": { - "net45": "4.0.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Routing": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.ServiceModel.Security": { - "InboxOn": { - "net45": "4.0.0.0", - "portable46-win81+wp81": "3.9.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "3.9.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "3.9.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "3.9.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceModel.Syndication": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.ServiceModel.Web": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.ServiceProcess": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "System.ServiceProcess.ServiceController": { - "StableVersions": [ - "4.1.0", - "4.3.0", - "4.4.0", - "4.4.1", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0", - "4.2.0.0": "4.4.0", - "4.2.1.0": "4.5.0", - "4.2.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Speech": { - "BaselineVersion": "6.0.0", - "InboxOn": { - "net45": "4.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "6.0.0" - } - }, - "System.Text.Encoding": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Text.Encoding.CodePages": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.6.0", - "4.7.0", - "4.7.1", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp3.0": "4.1.2.0", - "netcoreapp3.1": "4.1.3.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0", - "4.1.0.0": "4.4.0", - "4.1.1.0": "4.5.0", - "4.1.2.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Text.Encoding.Extensions": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Text.Encodings.Web": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0", - "4.3.1", - "4.4.0", - "4.5.0", - "4.5.1", - "4.6.0", - "4.7.0", - "4.7.1", - "4.7.2", - "5.0.0", - "5.0.1" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp3.0": "4.0.4.0", - "netcoreapp3.1": "4.0.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.3.1": "4.5.1", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Text.Json": { - "StableVersions": [ - "4.6.0", - "4.7.0", - "4.7.1", - "4.7.2", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp3.0": "4.0.0.0", - "netcoreapp3.1": "4.0.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Text.RegularExpressions": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.1.0", - "4.1.1", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.1.0.0": "4.1.0", - "4.1.1.0": "4.3.0" - } - }, - "System.Threading": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Threading.AccessControl": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Threading.Channels": { - "StableVersions": [ - "4.5.0", - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp3.0": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.5.0", - "4.0.1.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Threading.Overlapped": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "uap10.0.16299": "4.1.1.0" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Threading.Tasks": { - "StableVersions": [ - "2.0.0", - "2.0.1", - "2.1.0", - "2.1.1", - "2.1.2", - "3.0.0", - "3.0.1", - "3.1.1", - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow": { - "StableVersions": [ - "4.5.24", - "4.5.25", - "4.6.0", - "4.7.0", - "4.8.0", - "4.9.0", - "4.10.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": { - "netcoreapp2.0": "4.6.2.0", - "netcoreapp2.1": "4.6.3.0", - "netcoreapp3.0": "4.6.4.0", - "netcoreapp3.1": "4.6.5.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.6.3.0" - }, - "AssemblyVersionInPackageVersion": { - "4.5.25.0": "4.5.25", - "4.6.0.0": "4.6.0", - "4.6.1.0": "4.7.0", - "4.6.2.0": "4.8.0", - "4.6.3.0": "4.9.0", - "4.6.4.0": "4.10.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Threading.Tasks.Extensions": { - "StableVersions": [ - "4.0.0", - "4.3.0", - "4.4.0", - "4.5.0", - "4.5.1", - "4.5.2", - "4.5.3", - "4.5.4" - ], - "BaselineVersion": "4.5.4", - "InboxOn": { - "netcoreapp2.0": "4.1.1.0", - "netcoreapp2.1": "4.3.0.0", - "netcoreapp3.1": "4.3.1.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.1.0.0": "4.3.0", - "4.1.1.0": "4.4.0", - "4.2.0.0": "4.5.0", - "4.2.0.1": "4.5.4", - "4.2.1.0": "4.6.0" - } - }, - "System.Threading.Tasks.Parallel": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.0.3.0", - "netcoreapp3.1": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "win8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Threading.Thread": { - "StableVersions": [ - "4.0.0", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.3.0" - } - }, - "System.Threading.ThreadPool": { - "StableVersions": [ - "4.0.10", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.10.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.3.0" - } - }, - "System.Threading.Timer": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net451": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win81": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Transactions": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Transactions.Local": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.0.1.0" - } - }, - "System.Utf8String.Experimental": { - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.ValueTuple": { - "StableVersions": [ - "4.3.0", - "4.3.1", - "4.4.0", - "4.5.0" - ], - "BaselineVersion": "4.5.0", - "InboxOn": { - "netcoreapp2.0": "4.0.2.0", - "netcoreapp2.1": "4.0.3.0", - "netcoreapp3.0": "4.0.4.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "netstandard2.0": "4.0.2.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.3.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.1.0": "4.3.0", - "4.0.2.0": "4.4.0", - "4.0.3.0": "4.5.0", - "4.0.4.0": "4.6.0" - } - }, - "System.Web": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "System.Web.Abstractions": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.ApplicationServices": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.DataVisualization": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.DataVisualization.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.DynamicData": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.DynamicData.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Entity": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Entity.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Extensions": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Extensions.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.HttpUtility": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "netcoreapp2.1": "4.0.1.0", - "netcoreapp3.1": "4.0.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "uap10.0.16299": "4.0.1.0" - } - }, - "System.Web.Mobile": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.RegularExpressions": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Routing": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Web.Services": { - "InboxOn": { - "net45": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Windows": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.6.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Windows.Controls.Ribbon": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Windows.Extensions": { - "StableVersions": [ - "4.6.0", - "5.0.0" - ], - "BaselineVersion": "6.0.0", - "InboxOn": {}, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.6.0", - "5.0.0.0": "5.0.0", - "6.0.0.0": "6.0.0" - } - }, - "System.Windows.Forms": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Windows.Forms.DataVisualization": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Windows.Forms.DataVisualization.Design": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Windows.Input.Manipulations": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Windows.Presentation": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Workflow.Activities": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Workflow.ComponentModel": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Workflow.Runtime": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.WorkflowServices": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Xaml": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "System.Xml": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Xml.Linq": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Xml.ReaderWriter": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.0.12", - "4.3.0", - "4.3.1" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.2.0.0", - "netcoreapp2.1": "4.2.1.0", - "netcoreapp3.1": "4.2.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "net461": "4.1.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.1.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.2.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.1.0.0": "4.0.11" - } - }, - "System.Xml.Serialization": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.0.0.0", - "win8": "4.0.0.0", - "wp8": "2.0.5.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "System.Xml.XDocument": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Xml.XmlDocument": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Xml.XmlSerializer": { - "StableVersions": [ - "4.0.0", - "4.0.10", - "4.0.11", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net45": "4.0.0.0", - "net46": "4.0.10.0", - "portable45-net45+win8+wpa81": "4.0.0.0", - "portable46-net451+win81+wpa81": "4.0.0.0", - "portable46-win81+wp81+wpa81": "4.0.0.0", - "portable45-net45+win8+wp8+wpa81": "4.0.0.0", - "portable46-win81+wp81": "4.0.0.0", - "portable46-win81+wpa81": "4.0.0.0", - "portable46-net451+win81": "4.0.0.0", - "portable45-net45+wp8": "4.0.0.0", - "portable45-net45+win8": "4.0.0.0", - "portable45-net45+win8+wp8": "4.0.0.0", - "portable46-wp81+wpa81": "4.0.0.0", - "netstandard2.0": "4.0.10.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "win8": "4.0.0.0", - "wp8": "4.0.0.0", - "wpa81": "4.0.0.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.10.0": "4.0.10", - "4.0.11.0": "4.0.11", - "4.0.12.0": "4.3.0" - } - }, - "System.Xml.XPath": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Xml.XPath.XDocument": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "netcoreapp2.0": "4.1.0.0", - "netcoreapp2.1": "4.1.1.0", - "netcoreapp3.1": "4.1.2.0", - "net5.0": "5.0.0.0", - "net6.0": "6.0.0.0", - "net461": "4.0.1.0", - "netstandard2.0": "4.0.1.0", - "monoandroid10": "Any", - "monotouch10": "Any", - "uap10.0.16299": "4.1.1.0", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument": { - "StableVersions": [ - "4.0.0", - "4.0.1", - "4.3.0" - ], - "BaselineVersion": "4.3.0", - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - }, - "AssemblyVersionInPackageVersion": { - "4.0.0.0": "4.0.0", - "4.0.1.0": "4.0.1", - "4.0.2.0": "4.3.0" - } - }, - "System.Xml.Xsl.Primitives": { - "InboxOn": { - "monoandroid10": "Any", - "monotouch10": "Any", - "xamarinios10": "Any", - "xamarinmac20": "Any", - "xamarintvos10": "Any", - "xamarinwatchos10": "Any" - } - }, - "UIAutomationClient": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "UIAutomationClientsideProviders": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "UIAutomationProvider": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "UIAutomationTypes": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "WindowsBase": { - "InboxOn": { - "netcoreapp2.0": "4.0.0.0", - "net45": "4.0.0.0", - "uap10.0.16299": "4.0.0.0" - } - }, - "WindowsFormsIntegration": { - "InboxOn": { - "net45": "4.0.0.0" - } - }, - "XamlBuildTask": { - "InboxOn": { - "net45": "4.0.0.0" - } - } - }, - "ModulesToPackages": { - "libSystem.IO.Ports.Native": "runtime.native.System.IO.Ports", - "sni.dll": "runtime.native.System.Data.SqlClient.sni" - }, - "MetaPackages": { - "NETStandard.Library": [ - "Microsoft.Win32.Primitives", - "System.AppContext", - "System.Collections", - "System.Collections.Concurrent", - "System.Console", - "System.Diagnostics.Debug", - "System.Diagnostics.Tools", - "System.Diagnostics.Tracing", - "System.Globalization", - "System.Globalization.Calendars", - "System.IO", - "System.IO.Compression", - "System.IO.Compression.ZipFile", - "System.IO.FileSystem", - "System.IO.FileSystem.Primitives", - "System.Linq", - "System.Linq.Expressions", - "System.Net.Http", - "System.Net.Primitives", - "System.Net.Sockets", - "System.ObjectModel", - "System.Reflection", - "System.Reflection.Extensions", - "System.Reflection.Primitives", - "System.Resources.ResourceManager", - "System.Runtime", - "System.Runtime.Extensions", - "System.Runtime.Handles", - "System.Runtime.InteropServices", - "System.Runtime.InteropServices.RuntimeInformation", - "System.Runtime.Numerics", - "System.Security.Cryptography.Algorithms", - "System.Security.Cryptography.Encoding", - "System.Security.Cryptography.Primitives", - "System.Security.Cryptography.X509Certificates", - "System.Text.Encoding", - "System.Text.Encoding.Extensions", - "System.Text.RegularExpressions", - "System.Threading", - "System.Threading.Tasks", - "System.Threading.Timer", - "System.Xml.ReaderWriter", - "System.Xml.XDocument" - ] - } -} \ No newline at end of file diff --git a/src/libraries/src.proj b/src/libraries/src.proj index 0faa26075e2d7d..56abaf5300dd10 100644 --- a/src/libraries/src.proj +++ b/src/libraries/src.proj @@ -5,20 +5,26 @@ - <_allSrc Include="$(MSBuildThisFileDirectory)*\src\*.csproj" - Exclude="@(ProjectExclusions)" /> - - <_allSrc Update="$(MSBuildThisFileDirectory)Microsoft.Windows.Compatibility\src\Microsoft.Windows.Compatibility.csproj" - AdditionalProperties="BuildProjectReferences=false" /> + <_allSrc Include="$(MSBuildThisFileDirectory)*\src\*.*proj" + Exclude="@(ProjectExclusions); + $(MSBuildThisFileDirectory)*\src\**\*.shproj" /> <_allSrc Remove="$(MSBuildThisFileDirectory)Microsoft.Windows.Compatibility\src\Microsoft.Windows.Compatibility.csproj" Condition="'$(BuildAllConfigurations)' != 'true'" /> + + Exclude="@(NetCoreAppLibrary->'%(Identity)\src\%(Identity).csproj'); + $(MSBuildThisFileDirectory)Microsoft.VisualBasic.Core\src\Microsoft.VisualBasic.Core.vbproj; + $(MSBuildThisFileDirectory)System.Runtime.CompilerServices.Unsafe\src\System.Runtime.CompilerServices.Unsafe.ilproj" /> + + + + + + + + + + From 610e1ac68f14e0526bc6dbaac5e7ff98c7e7d814 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Thu, 5 Aug 2021 22:07:13 +0200 Subject: [PATCH 2/5] Actually run packaging during the allconfigurations build --- eng/packaging.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/packaging.targets b/eng/packaging.targets index eaa5cb0b625a57..30d7ef75d98e0d 100644 --- a/eng/packaging.targets +++ b/eng/packaging.targets @@ -14,7 +14,7 @@ $(MSBuildThisFileDirectory)useSharedDesignerContext.txt IncludeAnalyzersInPackage;$(GenerateNuspecDependsOn) - true + true $(XmlDocFileRoot)1033\$(AssemblyName).xml true From 5dec3644dbfd4b1e5b28236be2ca8ad62f7ce130 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Thu, 5 Aug 2021 22:25:42 +0200 Subject: [PATCH 3/5] Update docs --- docs/coding-guidelines/libraries-packaging.md | 6 +++--- docs/project/library-servicing.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/coding-guidelines/libraries-packaging.md b/docs/coding-guidelines/libraries-packaging.md index a810163e35521c..dd773abc6932f3 100644 --- a/docs/coding-guidelines/libraries-packaging.md +++ b/docs/coding-guidelines/libraries-packaging.md @@ -2,11 +2,11 @@ Libraries can be packaged in one or more of the following ways: as part of the .NETCore shared framework, part of a transport package, or as a NuGet package. -## .NETCore Shared framework +## .NETCoreApp shared framework -To add a library to the .NETCore shared framework, that library's `AssemblyName` should be added to [NetCoreAppLibrary.props](../../src/libraries/NetCoreAppLibrary.props) +To add a library to the .NETCoreApp shared framework, that library's `AssemblyName` should be added to [NetCoreAppLibrary.props](../../src/libraries/NetCoreAppLibrary.props) -The library should have both a `ref` and `src` project. Its reference assembly will be included in the ref-pack for the Microsoft.NETCore.App shared framework, and its implementation assembly will be included in the runtime pack. +The library should have both a `ref` and `src` project. Its reference assembly will be included in the targeting pack (also called ref pack) for the Microsoft.NETCore.App shared framework, and its implementation assembly will be included in the runtime pack. Including a library in the shared framework only includes the best applicable TargetFramework build of that library: `$(NetCoreAppCurrent)` if it exists, but possibly `netstandard2.1` or another if that is best. If a library has builds for other frameworks those will only be shipped if the library also produces a [Nuget package](#nuget-package). diff --git a/docs/project/library-servicing.md b/docs/project/library-servicing.md index 1b3dd7263b0bb3..d90ac9f7e423ea 100644 --- a/docs/project/library-servicing.md +++ b/docs/project/library-servicing.md @@ -4,7 +4,7 @@ This document provides the steps necessary after modifying a library in a servic ## Check if a package is generated -If a library's source project sets `true` a package is generated. If the library's source project doesn't set `true`, the library is the part of the shared framework. If it is, then there is nothing that needs to be done. +If a library's source project sets `true` a package is generated. If the library's source project doesn't set `true`, the library likely is part of the shared framework (to check for that, look into the `NetCoreAppLibrary.props` file). If it is, then there is nothing that needs to be done here. ## Determine PackageVersion @@ -14,7 +14,7 @@ Note that it's possible that somebody else has already incremented the package v ## Determine AssemblyVersion -Each library has a property called `AssemblyVersion` which will be in either the library `.csproj` or in `Directory.Build.props`. For servicing events you will want to increment the revision by 1 (e.g `4.0.0.0` -> `4.0.0.1`) in the library's `Directory.Build.props` if the library ships in its own package and has an asset that is applicable to .NET Framework. To determine if it applies to .NET Framework you should check to see if there are any `netstandard` or `net4x` configurations in the ref and/or src project, if there are then it has assets that apply. +A library's assembly version is controlled by the property `AssemblyVersion`. If the property exists, it's either located in the library's source project or in its `Directory.Build.props` file. If it doesn't exist, it uses the [centrally defined version](https://github.com/dotnet/runtime/blob/1fb151f63dca644347a5c608d7ab17f7cb8e1ccb/eng/Versions.props#L14) and you want to add the property to the library's `Directory.Build.props` file. For servicing events you will want to increment the revision by 1 (e.g `4.0.0.0` -> `4.0.0.1`) if the library ships in its own package and has an asset that is applicable to .NET Framework. To determine if it applies to .NET Framework you should check to see if there are any `netstandard` or `net4x` target frameworks in the source project and if there are, it has assets that apply. The reason we need to increment the assembly version for things running on .NET Framework is because of the way binding works there. If there are two assemblies with the same assembly version the loader will essentially pick the first one it finds and use that version so applications don't have full control over using the later build with a particular fix included. This is worse if someone puts the older assembly in the GAC as the GAC will always win for matching assembly versions so an application couldn't load the newer one because it has the same assembly version. From a4a8b083e4b93b7a1f8b0a94a7d9798dec34aa65 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 6 Aug 2021 00:04:16 +0200 Subject: [PATCH 4/5] make runtime specific pkgs non packable --- .../src/Microsoft.Windows.Compatibility.csproj | 2 +- .../System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj | 6 ++---- .../pkg/runtime.native.System.IO.Ports.props | 3 ++- src/libraries/System.IO.Ports/src/System.IO.Ports.csproj | 5 +---- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/src/libraries/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj b/src/libraries/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj index 86afb922f869e5..ee16f0c79eba8d 100644 --- a/src/libraries/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj +++ b/src/libraries/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj @@ -2,9 +2,9 @@ $(NetCoreAppCurrent);netcoreapp3.1;netstandard2.1;netstandard2.0 - true false + true $(NoWarn);NU5128 This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard. diff --git a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj index cc1681189944f2..88832616a042e3 100644 --- a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj +++ b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj @@ -9,9 +9,7 @@ - - + + diff --git a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props index a9e2479086760e..4c8aedf3c7386f 100644 --- a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props +++ b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props @@ -2,7 +2,8 @@ netstandard2.0 true - true + + true true false diff --git a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj index 5dff5813145890..a1332c3f889847 100644 --- a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj +++ b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj @@ -6,8 +6,6 @@ annotations $(NetCoreAppCurrent)-windows;$(NetCoreAppCurrent)-Unix;$(NetCoreAppCurrent);netstandard2.0-windows;netstandard2.0-Unix;netstandard2.0;net461-windows true - - true Provides classes for controlling serial ports. Commonly Used Types: @@ -155,8 +153,7 @@ System.IO.Ports.SerialPort - - + From 7225599602592dc9d240e2f82ca2a48a9e50a069 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 6 Aug 2021 08:57:24 +0200 Subject: [PATCH 5/5] io.ports native pkg fixes --- .../System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj | 6 ++++-- .../pkg/runtime.native.System.IO.Ports.props | 2 -- src/libraries/System.IO.Ports/src/System.IO.Ports.csproj | 3 +++ 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj index 88832616a042e3..86043b1f0aa51a 100644 --- a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj +++ b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.proj @@ -9,7 +9,9 @@ - - + + diff --git a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props index 4c8aedf3c7386f..ac7ee8332a0c2a 100644 --- a/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props +++ b/src/libraries/System.IO.Ports/pkg/runtime.native.System.IO.Ports.props @@ -2,8 +2,6 @@ netstandard2.0 true - - true true false diff --git a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj index a1332c3f889847..8c8efc1d048dbd 100644 --- a/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj +++ b/src/libraries/System.IO.Ports/src/System.IO.Ports.csproj @@ -153,7 +153,10 @@ System.IO.Ports.SerialPort + + +