From c3989f8477bef6e918d6cfe351254ae4c80fc0d3 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 12 Jun 2018 15:29:54 -0700 Subject: [PATCH 01/40] Update to .NET Core App 2.0.9-servicing-26612-03 --- build/dependencies.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/dependencies.props b/build/dependencies.props index 2f7c7bc9d6..9be003b2a1 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -31,7 +31,7 @@ 5.2.0 1.0.11 1.1.8 - 2.0.8-servicing-26407-02 + 2.0.9-servicing-26612-03 1.0.1 15.3.0 3.0.1 From cafb1c3c90578fce3442bed663ca7bc6bb4244dd Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 12 Jun 2018 17:30:38 -0700 Subject: [PATCH 02/40] Update Identity and Kestrel submodules --- .gitmodules | 8 ++++---- modules/Identity | 2 +- modules/KestrelHttpServer | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitmodules b/.gitmodules index ed8ae26eba..e37eca3bf8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -88,8 +88,8 @@ branch = release/2.1 [submodule "modules/Identity"] path = modules/Identity - url = https://github.com/aspnet/Identity.git - branch = release/2.1 + url = https://github.com/aspnet/Identity-Private.git + branch = release/2.1-msrc [submodule "modules/IISIntegration"] path = modules/IISIntegration url = https://github.com/aspnet/IISIntegration.git @@ -104,8 +104,8 @@ branch = release/2.1 [submodule "modules/KestrelHttpServer"] path = modules/KestrelHttpServer - url = https://github.com/aspnet/KestrelHttpServer.git - branch = release/2.1 + url = https://github.com/aspnet/KestrelHttpServer-Private.git + branch = release/2.1-msrc [submodule "modules/Localization"] path = modules/Localization url = https://github.com/aspnet/Localization.git diff --git a/modules/Identity b/modules/Identity index 788e324115..2627ea572c 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 788e324115196d9fb1e15693266943a607644f87 +Subproject commit 2627ea572cca2932284b3577158ad4b4f247794f diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index 11ddd9174c..ff3f0e905d 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit 11ddd9174c7c2af231ad70cf3efad85012e2fd73 +Subproject commit ff3f0e905d7af6ad1152257611567befe1417cc9 From aa91b802f9cc2b4f2cf98a78065bdbe663cd2963 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Wed, 13 Jun 2018 12:22:20 -0700 Subject: [PATCH 03/40] Add script used to deploy blobs to Azure storage --- .gitignore | 2 + build/RuntimeStoreInstaller.targets | 6 +- scripts/UploadBlobs.ps1 | 142 ++++++++++++++++++++++++++++ scripts/common.psm1 | 5 +- 4 files changed, 153 insertions(+), 2 deletions(-) create mode 100644 scripts/UploadBlobs.ps1 diff --git a/.gitignore b/.gitignore index aa0331923d..20b8ed6e52 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ node_modules .deps global.json msbuild.ProjectImports.zip +.dotnet/ +.tools/ diff --git a/build/RuntimeStoreInstaller.targets b/build/RuntimeStoreInstaller.targets index eaece814e9..6c23daf81c 100644 --- a/build/RuntimeStoreInstaller.targets +++ b/build/RuntimeStoreInstaller.targets @@ -31,7 +31,11 @@ $(TimestampFreeRSArchivePrefix)linux-x64.patch.tar.gz - + + + + + diff --git a/scripts/UploadBlobs.ps1 b/scripts/UploadBlobs.ps1 new file mode 100644 index 0000000000..b60d4886ca --- /dev/null +++ b/scripts/UploadBlobs.ps1 @@ -0,0 +1,142 @@ +<# +.SYNOPSIS +Deploys a build to an Azure blob store + +.PARAMETER AccountName +The account name for the Azure account + +.PARAMETER AccountKey +The account key for the Azure account + +.PARAMETER BuildNumber +The build number of the current build + +.PARAMETER BaseFeedUrl +The base URI of the package feed (may be different than blobBaseUrl for private-only blobs) + +.PARAMETER ContainerName +The container name. Defaults to 'dotnet' + +.PARAMETER ArtifactsPath +The path to the build outputs +#> +[CmdletBinding(SupportsShouldProcess = $true)] +param( + [Parameter(Mandatory = $true)] + $AccountName, + [Parameter(Mandatory = $true)] + $AccountKey, + [Parameter(Mandatory = $true)] + $BuildNumber, + [Parameter(Mandatory = $true)] + $ArtifactsPath, + $BaseBlobFeedUrl, + $ContainerName = 'dotnet' +) + +$ErrorActionPreference = 'Stop' +Set-StrictMode -Version 1 + +Import-Module -Scope Local "$PSScriptRoot/common.psm1" + +if (!(Get-Command 'az' -ErrorAction Ignore)) { + Write-Error 'Missing required command: az. Please install the Azure CLI and ensure it is available on PATH.' +} + +$repoRoot = Resolve-Path "$PSScriptRoot/.." + +$sleetVersion = '2.3.25' +$sleet = "$repoRoot/.tools/sleet.$sleetVersion/tools/sleet.exe" + +if (-not (Test-Path $sleet)) { + mkdir "$repoRoot/.tools/sleet.$sleetVersion" -ErrorAction Ignore | Out-Null + $installScriptPath = "$repoRoot/.dotnet/dotnet-install.ps1" + Invoke-WebRequest -UseBasicParsing -OutFile "$repoRoot/.tools/sleet.$sleetVersion.zip" https://www.nuget.org/api/v2/package/Sleet/$sleetVersion + Expand-Archive "$repoRoot/.tools/sleet.$sleetVersion.zip" -DestinationPath "$repoRoot/.tools/sleet.$sleetVersion" +} + +[xml] $versionProps = Get-Content "$repoRoot/version.props" +$props = $versionProps.Project.PropertyGroup +$VersionPrefix = "$($props.AspNetCoreMajorVersion).$($props.AspNetCoreMinorVersion).$($props.AspNetCorePatchVersion)" + +$blobFolder = "$ContainerName/aspnetcore/store/$VersionPrefix-$BuildNumber" +$packagesFolder = "$blobFolder/packages/" + +$blobBaseUrl = "https://$AccountName.blob.core.windows.net/$blobFolder" +$packageBlobUrl = "https://$AccountName.blob.core.windows.net/$packagesFolder" + +if (-not $BaseBlobFeedUrl) { + $BaseBlobFeedUrl = "https://$AccountName.blob.core.windows.net/$packagesFolder" +} + +$packageGlobPath = "$ArtifactsPath/packages/**/*.nupkg" +$globs = ( + @{ + basePath = "$ArtifactsPath/lzma" + pattern = "*" + destination = $blobFolder + }, + @{ + basePath = "$ArtifactsPath/installers" + pattern = "*" + destination = $blobFolder + }) + +$sleetConfigObj = @{ + sources = @( + @{ + name = "feed" + type = "azure" + path = $packageBlobUrl + baseURI = $BaseBlobFeedUrl + container = $ContainerName + connectionString = "DefaultEndpointsProtocol=https;AccountName=$AccountName;AccountKey=$AccountKey" + }) +} + +$sleetConfig = "$repoRoot/.tools/sleet.json" +$sleetConfigObj | ConvertTo-Json | Set-Content -Path $sleetConfig -Encoding Ascii +if ($PSCmdlet.ShouldProcess("Initialize remote feed in $packageBlobUrl")) { + Invoke-Block { & $sleet init --config $sleetConfig --verbose } +} + +Get-ChildItem -Recurse $packageGlobPath ` + | split-path -parent ` + | select -Unique ` + | % { + if ($PSCmdlet.ShouldProcess("Push packages in $_ to $packageBlobUrl")) { + Invoke-Block { & $sleet push --verbose --config $sleetConfig --source feed --force $_ } + } +} + +[string[]] $otherArgs = @() + +if ($VerbosePreference) { + $otherArgs += '--verbose' +} + +if ($WhatIfPreference) { + $otherArgs += '--dryrun' +} + +$globs | ForEach-Object { + $pattern = $_.pattern + $basePath = $_.basePath + $destination = $_.destination + if (!(Get-ChildItem -Recurse "$basePath/$pattern" -ErrorAction Ignore)) { + Write-Warning "Expected files in $basePath/$pattern but found none" + } + + Invoke-Block { & az storage blob upload-batch ` + --account-name $AccountName ` + --account-key $AccountKey ` + --verbose ` + --pattern $pattern ` + --destination $destination.TrimEnd('/') ` + --source $basePath ` + --no-progress ` + @otherArgs + } +} + +Write-Host -f green "Done!" diff --git a/scripts/common.psm1 b/scripts/common.psm1 index b621d48193..a6f8e19e40 100644 --- a/scripts/common.psm1 +++ b/scripts/common.psm1 @@ -15,7 +15,10 @@ function Invoke-Block([scriptblock]$cmd) { # - $?: did the powershell script block throw an error # - $lastexitcode: did a windows command executed by the script block end in error if ((-not $?) -or ($lastexitcode -ne 0)) { - Write-Warning $error[0] + if ($error -ne $null) + { + Write-Warning $error[0] + } throw "Command failed to execute: $cmd" } } From 93f2e99d401cc4a9b3deeca1d569ee986c70e8cc Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 14 Jun 2018 09:34:07 -0700 Subject: [PATCH 04/40] Fix for uploading blobs to private Azure blob containers --- scripts/UploadBlobs.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/UploadBlobs.ps1 b/scripts/UploadBlobs.ps1 index b60d4886ca..be0bdab8d3 100644 --- a/scripts/UploadBlobs.ps1 +++ b/scripts/UploadBlobs.ps1 @@ -68,6 +68,9 @@ $packageBlobUrl = "https://$AccountName.blob.core.windows.net/$packagesFolder" if (-not $BaseBlobFeedUrl) { $BaseBlobFeedUrl = "https://$AccountName.blob.core.windows.net/$packagesFolder" } +else { + $BaseBlobFeedUrl = "$BaseBlobFeedUrl/$packagesFolder" +} $packageGlobPath = "$ArtifactsPath/packages/**/*.nupkg" $globs = ( From 5931c7fb9a8884adaf3087fb831caa103e0cfb86 Mon Sep 17 00:00:00 2001 From: John Luo Date: Mon, 18 Jun 2018 13:08:43 -0700 Subject: [PATCH 05/40] Remove trailing slashes when creating LZMAs --- build/tasks/CreateLzma.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/tasks/CreateLzma.cs b/build/tasks/CreateLzma.cs index 88366fa886..91a7e2045c 100644 --- a/build/tasks/CreateLzma.cs +++ b/build/tasks/CreateLzma.cs @@ -25,8 +25,9 @@ namespace RepoTasks { if (Directory.Exists(source)) { - Log.LogMessage(MessageImportance.High, $"Adding directory: {source}"); - archive.AddDirectory(source, progress); + var trimmedSource = source.TrimEnd(new []{ '\\', '/' }); + Log.LogMessage(MessageImportance.High, $"Adding directory: {trimmedSource}"); + archive.AddDirectory(trimmedSource, progress); } else { From a296fe4cdf029c8a7571cc25c7d01a8fdf90c48d Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 21 Jun 2018 15:52:34 -0700 Subject: [PATCH 06/40] Add retries for restores during LZMA generation --- build/PackageArchive.targets | 48 ++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index 2d283d2e01..ecf9c09784 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -44,6 +44,54 @@ + + + + $(MSBuildLastTaskResult) + + + + + + + $(MSBuildLastTaskResult) + + + + + + + $(MSBuildLastTaskResult) + + + + + + + $(MSBuildLastTaskResult) + + + From 2cd777f06183bf5639578ff3a4162cd3f576e989 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 22 Jun 2018 10:26:49 -0700 Subject: [PATCH 07/40] Bust MSBuild cache on retries --- build/PackageArchive.targets | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index ecf9c09784..80b3e2dd15 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -31,6 +31,8 @@ <_FallbackArchiveRestoreSources Include="$(RestoreSources)" /> + + <_FallbackArchiveRestoreSources Include="https://api.nuget.org/v3/index.json" /> <_FallbackArchiveRestoreSources Include="$(BuildDir)" Condition="Exists($(BuildDir))" /> <_FallbackArchiveRestoreSources Include="$(MetapackageRestoreSource)" Condition="Exists($(MetapackageRestoreSource))" /> @@ -59,7 +61,7 @@ Condition="'$(RestorePassed)' == 'false'" Projects="$(_WorkRoot)Archive.csproj" Targets="Restore" - Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> + Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true;_Target=Restore2" /> @@ -71,7 +73,7 @@ Condition="'$(RestorePassed)' == 'false'" Projects="$(_WorkRoot)Archive.csproj" Targets="Restore" - Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> + Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true;_Target=Restore3" /> @@ -83,7 +85,7 @@ Condition="'$(RestorePassed)' == 'false'" Projects="$(_WorkRoot)Archive.csproj" Targets="Restore" - Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> + Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true;_Target=Restore4" /> @@ -94,7 +96,7 @@ Condition="'$(RestorePassed)' == 'false'" Projects="$(_WorkRoot)Archive.csproj" Targets="Restore" - Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> + Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp21PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true;_Target=Restore5" /> From 1895502c4876384a10c73519ece033dd0722cf26 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 2 Jul 2018 16:45:20 -0700 Subject: [PATCH 08/40] Update the LZMA to include NETStandard.Library 2.0.3 --- build/PackageArchive.targets | 6 ++++++ build/dependencies.props | 2 +- .../templates/Archive/Archive.Library.csproj | 17 +++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 build/tools/templates/Archive/Archive.Library.csproj diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index 6cf6f3ad83..2c6c13298b 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -73,6 +73,12 @@ Targets="Restore" Properties="RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp20PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" /> + + + diff --git a/build/dependencies.props b/build/dependencies.props index 9be003b2a1..dd9c568763 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -49,7 +49,7 @@ 1.4.0 4.4.0 4.7.49 - 2.0.1 + 2.0.3 1.0.1 10.0.1 4.0.0 diff --git a/build/tools/templates/Archive/Archive.Library.csproj b/build/tools/templates/Archive/Archive.Library.csproj new file mode 100644 index 0000000000..20e1d88940 --- /dev/null +++ b/build/tools/templates/Archive/Archive.Library.csproj @@ -0,0 +1,17 @@ + + + + + + netstandard2.0 + false + true + true + $(RestoreSources);$(DotNetRestoreSources); + + + + + + + From cc0e0394acd1d13fb5769c3c8f8ec895893b39c4 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 2 Jul 2018 18:09:28 -0700 Subject: [PATCH 09/40] Add required infrastructure improvements to submodules to support NETStandard.Library 2.0.3 --- modules/Common | 2 +- modules/DependencyInjection | 2 +- modules/JsonPatch | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/Common b/modules/Common index 007f386436..02961cb7ab 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit 007f3864365947058b7ab95d605a44892b06eed9 +Subproject commit 02961cb7ab403d79eda23c28c5ddf9b37df9e845 diff --git a/modules/DependencyInjection b/modules/DependencyInjection index cd2269792e..9597260380 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit cd2269792e5ec2ced8a7fe475236fde836663aa1 +Subproject commit 959726038020685ca6bb646d6f99c1051ea70e8a diff --git a/modules/JsonPatch b/modules/JsonPatch index 8580d8beb5..a5253a577b 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit 8580d8beb5c9ca94e09455f2dac1d1587767478e +Subproject commit a5253a577b4cdf5daa1250f0b4d06b083d36679a From a114aec2ec2814d21983376a19e01ee63d6ac5f9 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Thu, 5 Jul 2018 16:17:46 -0700 Subject: [PATCH 10/40] Updating submodule(s) MetaPackages => 36ea388e9b09fa721f590e1cf915b8e437730192 [auto-updated: submodules] --- modules/MetaPackages | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/MetaPackages b/modules/MetaPackages index 68cecdbee0..36ea388e9b 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 68cecdbee0bb26256bf4c5fe334a41d4f38ae6af +Subproject commit 36ea388e9b09fa721f590e1cf915b8e437730192 From b68b1851c72a3a62e0399056784497ce01a22905 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 18:06:36 +0000 Subject: [PATCH 11/40] Updating submodule(s) Razor => e7db3f840b119e2fe08550d1e568b51dd0256eda [auto-updated: submodules] --- modules/Razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Razor b/modules/Razor index 1c9208ba11..e7db3f840b 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit 1c9208ba110a16eb98085406fd7db874657b642c +Subproject commit e7db3f840b119e2fe08550d1e568b51dd0256eda From bf03fee4bef537685e00fa5d23509eee51520f43 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 5 Jul 2018 18:46:37 -0700 Subject: [PATCH 12/40] Refactor LZMA generation to support Docker and Antares usage List explicitly as .csproj files the scenarios for which the offline package cache is important Produces new artifacts designed for various scenarios, such as: * Docker (where xml doc files are not needed) * Azure web apps (where 1.x SDKs must still be supported, but xml docs are not needed) --- Directory.Build.props | 4 + build/PackageArchive.targets | 138 +- build/PreviousArchiveManifest.props | 10081 ---------------- build/Publish.targets | 21 +- build/artifacts.props | 26 +- build/repo.props | 1 + build/repo.targets | 1 + build/tasks/AddArchiveReferences.cs | 151 - build/tasks/CreateLzma.cs | 33 +- build/tasks/ExtractLzma.cs | 25 - build/tasks/FilterLzmaContent.cs | 90 - build/tasks/GetDocXmlFiles.cs | 64 + build/tasks/RepoTasks.tasks | 5 +- build/tasks/UpdatePreviousArchiveManifest.cs | 50 - build/tasks/Utilities/ITaskItemExtensions.cs | 17 - .../templates/Archive/Archive.Library.csproj | 17 - .../Archive.CiServer.Patch.Compat.zipproj | 14 + .../ArchiveBaseline.2.1.1.txt | 6581 ++++++++++ .../ArchiveBaseline.2.1.2.txt | 0 .../Archive.CiServer.Patch.zipproj | 13 + .../ArchiveBaseline.2.1.1.txt | 6141 ++++++++++ .../ArchiveBaseline.2.1.2.txt | 0 .../Archive.CiServer/Archive.CiServer.zipproj | 14 + .../Archive.Lzma/Archive.Lzma.lzmaproj | 14 + src/PackageArchive/Archive.props | 11 + src/PackageArchive/Archive.targets | 97 + src/PackageArchive/Directory.Build.props | 13 + src/PackageArchive/Directory.Build.targets | 1 + .../Scenario.ClassLibrary.csproj | 11 + .../Scenario.ConsoleApp.csproj | 15 + .../Scenario.WebApp/Scenario.WebApp.csproj | 22 + .../ZipManifestGenerator/Program.cs | 80 + .../ZipManifestGenerator/README.md | 9 + .../ZipManifestGenerator.csproj | 12 + .../ZipManifestGenerator.sln | 34 + 35 files changed, 13231 insertions(+), 10575 deletions(-) delete mode 100644 build/PreviousArchiveManifest.props delete mode 100644 build/tasks/AddArchiveReferences.cs delete mode 100644 build/tasks/ExtractLzma.cs delete mode 100644 build/tasks/FilterLzmaContent.cs create mode 100644 build/tasks/GetDocXmlFiles.cs delete mode 100644 build/tasks/UpdatePreviousArchiveManifest.cs delete mode 100644 build/tasks/Utilities/ITaskItemExtensions.cs delete mode 100644 build/tools/templates/Archive/Archive.Library.csproj create mode 100644 src/PackageArchive/Archive.CiServer.Patch.Compat/Archive.CiServer.Patch.Compat.zipproj create mode 100644 src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.1.txt create mode 100644 src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.2.txt create mode 100644 src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj create mode 100644 src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.1.txt create mode 100644 src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.2.txt create mode 100644 src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj create mode 100644 src/PackageArchive/Archive.Lzma/Archive.Lzma.lzmaproj create mode 100644 src/PackageArchive/Archive.props create mode 100644 src/PackageArchive/Archive.targets create mode 100644 src/PackageArchive/Directory.Build.props create mode 100644 src/PackageArchive/Directory.Build.targets create mode 100644 src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj create mode 100644 src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj create mode 100644 src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj create mode 100644 src/PackageArchive/ZipManifestGenerator/Program.cs create mode 100644 src/PackageArchive/ZipManifestGenerator/README.md create mode 100644 src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.csproj create mode 100644 src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.sln diff --git a/Directory.Build.props b/Directory.Build.props index 758d1c575c..153d8f33f9 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -3,4 +3,8 @@ + + + $(MSBuildThisFileDirectory) + diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index 84b8f47c7b..c3360b6b4a 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -1,131 +1,31 @@ - - <_TemplatesDirectory>$(MSBuildThisFileDirectory)tools\templates\ - <_WorkRoot>$(RepositoryRoot).w\ - $(MSBuildThisFileDirectory)PreviousArchiveManifest.props - $(RepositoryRoot).deps\Signed\Packages\ - nuGetPackagesArchive-$(PackageVersion) - $(_WorkRoot)obj\$(LzmaOutputPackageName)\ - $(ArtifactsDir)lzma\ - $(FallbackOutputDir)$(LzmaOutputPackageName).lzma - $(FallbackOutputDir)$(LzmaOutputPackageName)-antares.zip - $(_WorkRoot)restoresources.$(LzmaOutputPackageName).props - - - - - - - - - - - - - + - <_FallbackArchiveRestoreSources Include="$(RestoreSources)" /> - <_FallbackArchiveRestoreSources Include="$(BuildDir)" Condition="Exists($(BuildDir))" /> - <_FallbackArchiveRestoreSources Include="$(MetapackageRestoreSource)" Condition="Exists($(MetapackageRestoreSource))" /> + - - - - - - - - - - - - - - - - - - - $(_WorkRoot)previous\ - $(RepositoryRoot).deps\nuGetPackagesArchive.previous.lzma + + DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath); + DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath); + OutputPath=$(ArtifactsDir)lzma\; + _BuildToolsAssembly=$(_BuildToolsAssembly) + - - + - - - + - - - - - - - - - - - - - - $(_WorkRoot)input\ - $(RepositoryRoot).deps\nuGetPackagesArchive.input.lzma - - - - - - - - - - - - - - - - - - - - - - + diff --git a/build/PreviousArchiveManifest.props b/build/PreviousArchiveManifest.props deleted file mode 100644 index ce616fe9e2..0000000000 --- a/build/PreviousArchiveManifest.props +++ /dev/null @@ -1,10081 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/build/Publish.targets b/build/Publish.targets index cc47d871c1..2c97b996eb 100644 --- a/build/Publish.targets +++ b/build/Publish.targets @@ -61,7 +61,6 @@ aspnetcore/Runtime/$(PackageVersion)/ aspnetcore/npm/ aspnetcore/Runtime/$(SharedFxCliBlobChannel)/ - nuGetPackagesArchive-$(PackageVersion).lzma aspnetcore-runtime-$(PackageVersion) aspnetcore-runtime-latest aspnetcore-runtime-internal-$(PackageVersion) @@ -75,9 +74,25 @@ ShipInstaller=dotnetcli + + + $(BlobBasePath)nuGetPackagesArchive-ci-server-$(PackageVersion).zip + ShipInstaller=dotnetcli + + + + $(BlobBasePath)nuGetPackagesArchive-ci-server-$(PackageVersion).patch.zip + ShipInstaller=dotnetcli + + + + $(BlobBasePath)nuGetPackagesArchive-ci-server-compat-$(PackageVersion).patch.zip + ShipInstaller=dotnetcli + + - - $(BlobBasePath)$(PackageArchiveFileName) + + $(BlobBasePath)nuGetPackagesArchive-$(PackageVersion).lzma ShipInstaller=dotnetcli diff --git a/build/artifacts.props b/build/artifacts.props index b24083f635..1082591c06 100644 --- a/build/artifacts.props +++ b/build/artifacts.props @@ -8,8 +8,6 @@ false false - - false diff --git a/build/tasks/UpdatePreviousArchiveManifest.cs b/build/tasks/UpdatePreviousArchiveManifest.cs deleted file mode 100644 index b10f0f32f4..0000000000 --- a/build/tasks/UpdatePreviousArchiveManifest.cs +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using System; -using System.Linq; -using System.Xml; -using Microsoft.Build.Framework; -using Microsoft.Build.Utilities; -using NuGet.Versioning; -using RepoTasks.Utilities; - -namespace RepoTasks -{ - public class UpdatePreviousArchiveManifest : Task - { - [Required] - public string OutputPath { get; set; } - - [Required] - public ITaskItem[] Contents { get; set; } - - public override bool Execute() - { - var xmlDoc = new XmlDocument(); - - // Project - var projectElement = xmlDoc.CreateElement("Project"); - - // Items - var itemGroupElement = xmlDoc.CreateElement("ItemGroup"); - - foreach (var content in Contents) - { - var contentElement = xmlDoc.CreateElement("PreviousLzmaContents"); - contentElement.SetAttribute("Include", $"{content.GetRecursiveDir()}{content.GetFileName()}{content.GetExtension()}"); - itemGroupElement.AppendChild(contentElement); - // Recursive will be lost during round tripping using a props file. To fix this, set the RecursiveDir to RelativeDir. - // This can only be done in a task as MSBuild prevents overwritting reserved metadata. - } - - projectElement.AppendChild(itemGroupElement); - - // Save updated file - xmlDoc.AppendChild(projectElement); - xmlDoc.Save(OutputPath); - - return true; - } - } -} diff --git a/build/tasks/Utilities/ITaskItemExtensions.cs b/build/tasks/Utilities/ITaskItemExtensions.cs deleted file mode 100644 index 1d7ba52e6e..0000000000 --- a/build/tasks/Utilities/ITaskItemExtensions.cs +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright (c) .NET Foundation. All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. - -using Microsoft.Build.Framework; - -namespace RepoTasks.Utilities -{ - public static class ITaskItemExtensions - { - public static string GetRecursiveDir(this ITaskItem item) - => item.GetMetadata("RecursiveDir"); - public static string GetFileName(this ITaskItem item) - => item.GetMetadata("Filename"); - public static string GetExtension(this ITaskItem item) - => item.GetMetadata("Extension"); - } -} diff --git a/build/tools/templates/Archive/Archive.Library.csproj b/build/tools/templates/Archive/Archive.Library.csproj deleted file mode 100644 index 20e1d88940..0000000000 --- a/build/tools/templates/Archive/Archive.Library.csproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - netstandard2.0 - false - true - true - $(RestoreSources);$(DotNetRestoreSources); - - - - - - - diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/Archive.CiServer.Patch.Compat.zipproj b/src/PackageArchive/Archive.CiServer.Patch.Compat/Archive.CiServer.Patch.Compat.zipproj new file mode 100644 index 0000000000..55592e1dfa --- /dev/null +++ b/src/PackageArchive/Archive.CiServer.Patch.Compat/Archive.CiServer.Patch.Compat.zipproj @@ -0,0 +1,14 @@ + + + + + + + nuGetPackagesArchive-ci-server-compat-$(PackageVersion).patch.zip + true + false + true + + + + diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.1.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.1.txt new file mode 100644 index 0000000000..502b30a472 --- /dev/null +++ b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.1.txt @@ -0,0 +1,6581 @@ +libuv\1.10.0\libuv.1.10.0.nupkg +libuv\1.10.0\libuv.1.10.0.nupkg.sha512 +libuv\1.10.0\libuv.nuspec +libuv\1.10.0\License.txt +libuv\1.10.0\runtimes\linux-arm\native\libuv.so +libuv\1.10.0\runtimes\linux-arm64\native\libuv.so +libuv\1.10.0\runtimes\linux-armel\native\libuv.so +libuv\1.10.0\runtimes\linux-x64\native\libuv.so +libuv\1.10.0\runtimes\osx\native\libuv.dylib +libuv\1.10.0\runtimes\win-arm\native\libuv.dll +libuv\1.10.0\runtimes\win-x64\native\libuv.dll +libuv\1.10.0\runtimes\win-x86\native\libuv.dll +messagepack\1.7.3.4\lib\net45\MessagePack.dll +messagepack\1.7.3.4\lib\net47\MessagePack.dll +messagepack\1.7.3.4\lib\netstandard1.6\MessagePack.dll +messagepack\1.7.3.4\lib\netstandard2.0\MessagePack.dll +messagepack\1.7.3.4\messagepack.1.7.3.4.nupkg +messagepack\1.7.3.4\messagepack.1.7.3.4.nupkg.sha512 +messagepack\1.7.3.4\messagepack.nuspec +microsoft.applicationinsights.aspnetcore\2.1.1\lib\net451\Microsoft.ApplicationInsights.AspNetCore.dll +microsoft.applicationinsights.aspnetcore\2.1.1\lib\netstandard1.6\Microsoft.ApplicationInsights.AspNetCore.dll +microsoft.applicationinsights.aspnetcore\2.1.1\microsoft.applicationinsights.aspnetcore.2.1.1.nupkg +microsoft.applicationinsights.aspnetcore\2.1.1\microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512 +microsoft.applicationinsights.aspnetcore\2.1.1\microsoft.applicationinsights.aspnetcore.nuspec +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.install.xdt +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.transform +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.uninstall.xdt +microsoft.applicationinsights.dependencycollector\2.4.1\lib\net40\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\lib\net45\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\lib\netstandard1.6\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\microsoft.applicationinsights.dependencycollector.2.4.1.nupkg +microsoft.applicationinsights.dependencycollector\2.4.1\microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512 +microsoft.applicationinsights.dependencycollector\2.4.1\microsoft.applicationinsights.dependencycollector.nuspec +microsoft.applicationinsights\2.4.0\lib\net40\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\net45\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\net46\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\netstandard1.3\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\portable-win81+wpa81\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\uap10.0\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\wp8\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\microsoft.applicationinsights.2.4.0.nupkg +microsoft.applicationinsights\2.4.0\microsoft.applicationinsights.2.4.0.nupkg.sha512 +microsoft.applicationinsights\2.4.0\microsoft.applicationinsights.nuspec +microsoft.aspnet.webapi.client\5.2.6\.signature.p7s +microsoft.aspnet.webapi.client\5.2.6\lib\net45\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\lib\netstandard2.0\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\lib\portable-wp8+netcore45+net45+wp81+wpa81\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\microsoft.aspnet.webapi.client.5.2.6.nupkg +microsoft.aspnet.webapi.client\5.2.6\microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512 +microsoft.aspnet.webapi.client\5.2.6\microsoft.aspnet.webapi.client.nuspec +microsoft.aspnetcore.all\2.1.1\.signature.p7s +microsoft.aspnetcore.all\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.All.props +microsoft.aspnetcore.all\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.All.targets +microsoft.aspnetcore.all\2.1.1\lib\netcoreapp2.1\_._ +microsoft.aspnetcore.all\2.1.1\microsoft.aspnetcore.all.2.1.1.nupkg +microsoft.aspnetcore.all\2.1.1\microsoft.aspnetcore.all.2.1.1.nupkg.sha512 +microsoft.aspnetcore.all\2.1.1\microsoft.aspnetcore.all.nuspec +microsoft.aspnetcore.antiforgery\2.1.1\.signature.p7s +microsoft.aspnetcore.antiforgery\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Antiforgery.dll +microsoft.aspnetcore.antiforgery\2.1.1\microsoft.aspnetcore.antiforgery.2.1.1.nupkg +microsoft.aspnetcore.antiforgery\2.1.1\microsoft.aspnetcore.antiforgery.2.1.1.nupkg.sha512 +microsoft.aspnetcore.antiforgery\2.1.1\microsoft.aspnetcore.antiforgery.nuspec +microsoft.aspnetcore.app\2.1.1\.signature.p7s +microsoft.aspnetcore.app\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.App.props +microsoft.aspnetcore.app\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.App.targets +microsoft.aspnetcore.app\2.1.1\lib\netcoreapp2.1\_._ +microsoft.aspnetcore.app\2.1.1\microsoft.aspnetcore.app.2.1.1.nupkg +microsoft.aspnetcore.app\2.1.1\microsoft.aspnetcore.app.2.1.1.nupkg.sha512 +microsoft.aspnetcore.app\2.1.1\microsoft.aspnetcore.app.nuspec +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.signature.p7s +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\net461\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\microsoft.aspnetcore.applicationinsights.hostingstartup.2.1.1.nupkg +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\microsoft.aspnetcore.applicationinsights.hostingstartup.2.1.1.nupkg.sha512 +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec +microsoft.aspnetcore.authentication.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Abstractions.dll +microsoft.aspnetcore.authentication.abstractions\2.1.1\microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg +microsoft.aspnetcore.authentication.abstractions\2.1.1\microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.abstractions\2.1.1\microsoft.aspnetcore.authentication.abstractions.nuspec +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.dll +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.Views.dll +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\microsoft.aspnetcore.authentication.azuread.ui.2.1.1.nupkg +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\microsoft.aspnetcore.authentication.azuread.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\microsoft.aspnetcore.authentication.azuread.ui.nuspec +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Views.dll +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\microsoft.aspnetcore.authentication.azureadb2c.ui.2.1.1.nupkg +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\microsoft.aspnetcore.authentication.azureadb2c.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\microsoft.aspnetcore.authentication.azureadb2c.ui.nuspec +microsoft.aspnetcore.authentication.cookies\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.cookies\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Cookies.dll +microsoft.aspnetcore.authentication.cookies\2.1.1\microsoft.aspnetcore.authentication.cookies.2.1.1.nupkg +microsoft.aspnetcore.authentication.cookies\2.1.1\microsoft.aspnetcore.authentication.cookies.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.cookies\2.1.1\microsoft.aspnetcore.authentication.cookies.nuspec +microsoft.aspnetcore.authentication.core\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Core.dll +microsoft.aspnetcore.authentication.core\2.1.1\microsoft.aspnetcore.authentication.core.2.1.1.nupkg +microsoft.aspnetcore.authentication.core\2.1.1\microsoft.aspnetcore.authentication.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.core\2.1.1\microsoft.aspnetcore.authentication.core.nuspec +microsoft.aspnetcore.authentication.facebook\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.facebook\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Facebook.dll +microsoft.aspnetcore.authentication.facebook\2.1.1\microsoft.aspnetcore.authentication.facebook.2.1.1.nupkg +microsoft.aspnetcore.authentication.facebook\2.1.1\microsoft.aspnetcore.authentication.facebook.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.facebook\2.1.1\microsoft.aspnetcore.authentication.facebook.nuspec +microsoft.aspnetcore.authentication.google\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.google\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Google.dll +microsoft.aspnetcore.authentication.google\2.1.1\microsoft.aspnetcore.authentication.google.2.1.1.nupkg +microsoft.aspnetcore.authentication.google\2.1.1\microsoft.aspnetcore.authentication.google.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.google\2.1.1\microsoft.aspnetcore.authentication.google.nuspec +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\microsoft.aspnetcore.authentication.jwtbearer.2.1.1.nupkg +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\microsoft.aspnetcore.authentication.jwtbearer.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\microsoft.aspnetcore.authentication.jwtbearer.nuspec +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\microsoft.aspnetcore.authentication.microsoftaccount.2.1.1.nupkg +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\microsoft.aspnetcore.authentication.microsoftaccount.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\microsoft.aspnetcore.authentication.microsoftaccount.nuspec +microsoft.aspnetcore.authentication.oauth\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.oauth\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OAuth.dll +microsoft.aspnetcore.authentication.oauth\2.1.1\microsoft.aspnetcore.authentication.oauth.2.1.1.nupkg +microsoft.aspnetcore.authentication.oauth\2.1.1\microsoft.aspnetcore.authentication.oauth.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.oauth\2.1.1\microsoft.aspnetcore.authentication.oauth.nuspec +microsoft.aspnetcore.authentication.openidconnect\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.openidconnect\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +microsoft.aspnetcore.authentication.openidconnect\2.1.1\microsoft.aspnetcore.authentication.openidconnect.2.1.1.nupkg +microsoft.aspnetcore.authentication.openidconnect\2.1.1\microsoft.aspnetcore.authentication.openidconnect.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.openidconnect\2.1.1\microsoft.aspnetcore.authentication.openidconnect.nuspec +microsoft.aspnetcore.authentication.twitter\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.twitter\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Twitter.dll +microsoft.aspnetcore.authentication.twitter\2.1.1\microsoft.aspnetcore.authentication.twitter.2.1.1.nupkg +microsoft.aspnetcore.authentication.twitter\2.1.1\microsoft.aspnetcore.authentication.twitter.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.twitter\2.1.1\microsoft.aspnetcore.authentication.twitter.nuspec +microsoft.aspnetcore.authentication.wsfederation\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.wsfederation\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.WsFederation.dll +microsoft.aspnetcore.authentication.wsfederation\2.1.1\microsoft.aspnetcore.authentication.wsfederation.2.1.1.nupkg +microsoft.aspnetcore.authentication.wsfederation\2.1.1\microsoft.aspnetcore.authentication.wsfederation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.wsfederation\2.1.1\microsoft.aspnetcore.authentication.wsfederation.nuspec +microsoft.aspnetcore.authentication\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.dll +microsoft.aspnetcore.authentication\2.1.1\microsoft.aspnetcore.authentication.2.1.1.nupkg +microsoft.aspnetcore.authentication\2.1.1\microsoft.aspnetcore.authentication.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication\2.1.1\microsoft.aspnetcore.authentication.nuspec +microsoft.aspnetcore.authorization.policy\2.1.1\.signature.p7s +microsoft.aspnetcore.authorization.policy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.Policy.dll +microsoft.aspnetcore.authorization.policy\2.1.1\microsoft.aspnetcore.authorization.policy.2.1.1.nupkg +microsoft.aspnetcore.authorization.policy\2.1.1\microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authorization.policy\2.1.1\microsoft.aspnetcore.authorization.policy.nuspec +microsoft.aspnetcore.authorization\2.1.1\.signature.p7s +microsoft.aspnetcore.authorization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.dll +microsoft.aspnetcore.authorization\2.1.1\microsoft.aspnetcore.authorization.2.1.1.nupkg +microsoft.aspnetcore.authorization\2.1.1\microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authorization\2.1.1\microsoft.aspnetcore.authorization.nuspec +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.signature.p7s +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\net461\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\microsoft.aspnetcore.azureappservices.hostingstartup.2.1.1.nupkg +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\microsoft.aspnetcore.azureappservices.hostingstartup.2.1.1.nupkg.sha512 +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\microsoft.aspnetcore.azureappservices.hostingstartup.nuspec +microsoft.aspnetcore.azureappservicesintegration\2.1.1\.signature.p7s +microsoft.aspnetcore.azureappservicesintegration\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.AzureAppServicesIntegration.dll +microsoft.aspnetcore.azureappservicesintegration\2.1.1\microsoft.aspnetcore.azureappservicesintegration.2.1.1.nupkg +microsoft.aspnetcore.azureappservicesintegration\2.1.1\microsoft.aspnetcore.azureappservicesintegration.2.1.1.nupkg.sha512 +microsoft.aspnetcore.azureappservicesintegration\2.1.1\microsoft.aspnetcore.azureappservicesintegration.nuspec +microsoft.aspnetcore.connections.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.connections.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Connections.Abstractions.dll +microsoft.aspnetcore.connections.abstractions\2.1.1\microsoft.aspnetcore.connections.abstractions.2.1.1.nupkg +microsoft.aspnetcore.connections.abstractions\2.1.1\microsoft.aspnetcore.connections.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.connections.abstractions\2.1.1\microsoft.aspnetcore.connections.abstractions.nuspec +microsoft.aspnetcore.cookiepolicy\2.1.1\.signature.p7s +microsoft.aspnetcore.cookiepolicy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.CookiePolicy.dll +microsoft.aspnetcore.cookiepolicy\2.1.1\microsoft.aspnetcore.cookiepolicy.2.1.1.nupkg +microsoft.aspnetcore.cookiepolicy\2.1.1\microsoft.aspnetcore.cookiepolicy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cookiepolicy\2.1.1\microsoft.aspnetcore.cookiepolicy.nuspec +microsoft.aspnetcore.cors\2.1.1\.signature.p7s +microsoft.aspnetcore.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cors.dll +microsoft.aspnetcore.cors\2.1.1\microsoft.aspnetcore.cors.2.1.1.nupkg +microsoft.aspnetcore.cors\2.1.1\microsoft.aspnetcore.cors.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cors\2.1.1\microsoft.aspnetcore.cors.nuspec +microsoft.aspnetcore.cryptography.internal\2.1.1\.signature.p7s +microsoft.aspnetcore.cryptography.internal\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.Internal.dll +microsoft.aspnetcore.cryptography.internal\2.1.1\microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg +microsoft.aspnetcore.cryptography.internal\2.1.1\microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cryptography.internal\2.1.1\microsoft.aspnetcore.cryptography.internal.nuspec +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.signature.p7s +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\microsoft.aspnetcore.cryptography.keyderivation.2.1.1.nupkg +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\microsoft.aspnetcore.cryptography.keyderivation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\microsoft.aspnetcore.cryptography.keyderivation.nuspec +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Abstractions.dll +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\microsoft.aspnetcore.dataprotection.abstractions.nuspec +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureKeyVault.dll +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\microsoft.aspnetcore.dataprotection.azurekeyvault.2.1.1.nupkg +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\microsoft.aspnetcore.dataprotection.azurekeyvault.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\microsoft.aspnetcore.dataprotection.azurekeyvault.nuspec +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureStorage.dll +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\microsoft.aspnetcore.dataprotection.azurestorage.2.1.1.nupkg +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\microsoft.aspnetcore.dataprotection.azurestorage.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\microsoft.aspnetcore.dataprotection.azurestorage.nuspec +microsoft.aspnetcore.dataprotection.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Extensions.dll +microsoft.aspnetcore.dataprotection.extensions\2.1.1\microsoft.aspnetcore.dataprotection.extensions.2.1.1.nupkg +microsoft.aspnetcore.dataprotection.extensions\2.1.1\microsoft.aspnetcore.dataprotection.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.extensions\2.1.1\microsoft.aspnetcore.dataprotection.extensions.nuspec +microsoft.aspnetcore.dataprotection\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.dll +microsoft.aspnetcore.dataprotection\2.1.1\microsoft.aspnetcore.dataprotection.2.1.1.nupkg +microsoft.aspnetcore.dataprotection\2.1.1\microsoft.aspnetcore.dataprotection.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection\2.1.1\microsoft.aspnetcore.dataprotection.nuspec +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\microsoft.aspnetcore.diagnostics.abstractions.nuspec +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.1.1.nupkg +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec +microsoft.aspnetcore.diagnostics\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.dll +microsoft.aspnetcore.diagnostics\2.1.1\microsoft.aspnetcore.diagnostics.2.1.1.nupkg +microsoft.aspnetcore.diagnostics\2.1.1\microsoft.aspnetcore.diagnostics.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics\2.1.1\microsoft.aspnetcore.diagnostics.nuspec +microsoft.aspnetcore.hostfiltering\2.1.1\.signature.p7s +microsoft.aspnetcore.hostfiltering\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HostFiltering.dll +microsoft.aspnetcore.hostfiltering\2.1.1\microsoft.aspnetcore.hostfiltering.2.1.1.nupkg +microsoft.aspnetcore.hostfiltering\2.1.1\microsoft.aspnetcore.hostfiltering.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hostfiltering\2.1.1\microsoft.aspnetcore.hostfiltering.nuspec +microsoft.aspnetcore.hosting.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Abstractions.dll +microsoft.aspnetcore.hosting.abstractions\2.1.1\microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg +microsoft.aspnetcore.hosting.abstractions\2.1.1\microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting.abstractions\2.1.1\microsoft.aspnetcore.hosting.abstractions.nuspec +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\microsoft.aspnetcore.hosting.server.abstractions.nuspec +microsoft.aspnetcore.hosting\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll +microsoft.aspnetcore.hosting\2.1.1\microsoft.aspnetcore.hosting.2.1.1.nupkg +microsoft.aspnetcore.hosting\2.1.1\microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting\2.1.1\microsoft.aspnetcore.hosting.nuspec +microsoft.aspnetcore.html.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.html.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Html.Abstractions.dll +microsoft.aspnetcore.html.abstractions\2.1.1\microsoft.aspnetcore.html.abstractions.2.1.1.nupkg +microsoft.aspnetcore.html.abstractions\2.1.1\microsoft.aspnetcore.html.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.html.abstractions\2.1.1\microsoft.aspnetcore.html.abstractions.nuspec +microsoft.aspnetcore.http.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.http.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll +microsoft.aspnetcore.http.abstractions\2.1.1\microsoft.aspnetcore.http.abstractions.2.1.1.nupkg +microsoft.aspnetcore.http.abstractions\2.1.1\microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.abstractions\2.1.1\microsoft.aspnetcore.http.abstractions.nuspec +microsoft.aspnetcore.http.connections.common\1.0.1\.signature.p7s +microsoft.aspnetcore.http.connections.common\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.Common.dll +microsoft.aspnetcore.http.connections.common\1.0.1\microsoft.aspnetcore.http.connections.common.1.0.1.nupkg +microsoft.aspnetcore.http.connections.common\1.0.1\microsoft.aspnetcore.http.connections.common.1.0.1.nupkg.sha512 +microsoft.aspnetcore.http.connections.common\1.0.1\microsoft.aspnetcore.http.connections.common.nuspec +microsoft.aspnetcore.http.connections\1.0.1\.signature.p7s +microsoft.aspnetcore.http.connections\1.0.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Http.Connections.dll +microsoft.aspnetcore.http.connections\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.dll +microsoft.aspnetcore.http.connections\1.0.1\microsoft.aspnetcore.http.connections.1.0.1.nupkg +microsoft.aspnetcore.http.connections\1.0.1\microsoft.aspnetcore.http.connections.1.0.1.nupkg.sha512 +microsoft.aspnetcore.http.connections\1.0.1\microsoft.aspnetcore.http.connections.nuspec +microsoft.aspnetcore.http.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.http.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll +microsoft.aspnetcore.http.extensions\2.1.1\microsoft.aspnetcore.http.extensions.2.1.1.nupkg +microsoft.aspnetcore.http.extensions\2.1.1\microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.extensions\2.1.1\microsoft.aspnetcore.http.extensions.nuspec +microsoft.aspnetcore.http.features\2.1.1\.signature.p7s +microsoft.aspnetcore.http.features\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll +microsoft.aspnetcore.http.features\2.1.1\microsoft.aspnetcore.http.features.2.1.1.nupkg +microsoft.aspnetcore.http.features\2.1.1\microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.features\2.1.1\microsoft.aspnetcore.http.features.nuspec +microsoft.aspnetcore.http\2.1.1\.signature.p7s +microsoft.aspnetcore.http\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.dll +microsoft.aspnetcore.http\2.1.1\microsoft.aspnetcore.http.2.1.1.nupkg +microsoft.aspnetcore.http\2.1.1\microsoft.aspnetcore.http.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http\2.1.1\microsoft.aspnetcore.http.nuspec +microsoft.aspnetcore.httpoverrides\2.1.1\.signature.p7s +microsoft.aspnetcore.httpoverrides\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HttpOverrides.dll +microsoft.aspnetcore.httpoverrides\2.1.1\microsoft.aspnetcore.httpoverrides.2.1.1.nupkg +microsoft.aspnetcore.httpoverrides\2.1.1\microsoft.aspnetcore.httpoverrides.2.1.1.nupkg.sha512 +microsoft.aspnetcore.httpoverrides\2.1.1\microsoft.aspnetcore.httpoverrides.nuspec +microsoft.aspnetcore.httpspolicy\2.1.1\.signature.p7s +microsoft.aspnetcore.httpspolicy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HttpsPolicy.dll +microsoft.aspnetcore.httpspolicy\2.1.1\microsoft.aspnetcore.httpspolicy.2.1.1.nupkg +microsoft.aspnetcore.httpspolicy\2.1.1\microsoft.aspnetcore.httpspolicy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.httpspolicy\2.1.1\microsoft.aspnetcore.httpspolicy.nuspec +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.signature.p7s +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\microsoft.aspnetcore.identity.entityframeworkcore.2.1.1.nupkg +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\microsoft.aspnetcore.identity.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\microsoft.aspnetcore.identity.entityframeworkcore.nuspec +microsoft.aspnetcore.identity.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.identity.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.dll +microsoft.aspnetcore.identity.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.dll +microsoft.aspnetcore.identity.ui\2.1.1\microsoft.aspnetcore.identity.ui.2.1.1.nupkg +microsoft.aspnetcore.identity.ui\2.1.1\microsoft.aspnetcore.identity.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity.ui\2.1.1\microsoft.aspnetcore.identity.ui.nuspec +microsoft.aspnetcore.identity.ui\2.1.1\THIRD-PARTY-NOTICES +microsoft.aspnetcore.identity\2.1.1\.signature.p7s +microsoft.aspnetcore.identity\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.dll +microsoft.aspnetcore.identity\2.1.1\microsoft.aspnetcore.identity.2.1.1.nupkg +microsoft.aspnetcore.identity\2.1.1\microsoft.aspnetcore.identity.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity\2.1.1\microsoft.aspnetcore.identity.nuspec +microsoft.aspnetcore.jsonpatch\2.1.1\.signature.p7s +microsoft.aspnetcore.jsonpatch\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.JsonPatch.dll +microsoft.aspnetcore.jsonpatch\2.1.1\microsoft.aspnetcore.jsonpatch.2.1.1.nupkg +microsoft.aspnetcore.jsonpatch\2.1.1\microsoft.aspnetcore.jsonpatch.2.1.1.nupkg.sha512 +microsoft.aspnetcore.jsonpatch\2.1.1\microsoft.aspnetcore.jsonpatch.nuspec +microsoft.aspnetcore.localization.routing\2.1.1\.signature.p7s +microsoft.aspnetcore.localization.routing\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Localization.Routing.dll +microsoft.aspnetcore.localization.routing\2.1.1\microsoft.aspnetcore.localization.routing.2.1.1.nupkg +microsoft.aspnetcore.localization.routing\2.1.1\microsoft.aspnetcore.localization.routing.2.1.1.nupkg.sha512 +microsoft.aspnetcore.localization.routing\2.1.1\microsoft.aspnetcore.localization.routing.nuspec +microsoft.aspnetcore.localization\2.1.1\.signature.p7s +microsoft.aspnetcore.localization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Localization.dll +microsoft.aspnetcore.localization\2.1.1\microsoft.aspnetcore.localization.2.1.1.nupkg +microsoft.aspnetcore.localization\2.1.1\microsoft.aspnetcore.localization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.localization\2.1.1\microsoft.aspnetcore.localization.nuspec +microsoft.aspnetcore.middlewareanalysis\2.1.1\.signature.p7s +microsoft.aspnetcore.middlewareanalysis\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.MiddlewareAnalysis.dll +microsoft.aspnetcore.middlewareanalysis\2.1.1\microsoft.aspnetcore.middlewareanalysis.2.1.1.nupkg +microsoft.aspnetcore.middlewareanalysis\2.1.1\microsoft.aspnetcore.middlewareanalysis.2.1.1.nupkg.sha512 +microsoft.aspnetcore.middlewareanalysis\2.1.1\microsoft.aspnetcore.middlewareanalysis.nuspec +microsoft.aspnetcore.mvc.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll +microsoft.aspnetcore.mvc.abstractions\2.1.1\microsoft.aspnetcore.mvc.abstractions.2.1.1.nupkg +microsoft.aspnetcore.mvc.abstractions\2.1.1\microsoft.aspnetcore.mvc.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.abstractions\2.1.1\microsoft.aspnetcore.mvc.abstractions.nuspec +microsoft.aspnetcore.mvc.analyzers\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.analyzers\2.1.1\analyzers\dotnet\cs\Microsoft.AspNetCore.Mvc.Analyzers.dll +microsoft.aspnetcore.mvc.analyzers\2.1.1\microsoft.aspnetcore.mvc.analyzers.2.1.1.nupkg +microsoft.aspnetcore.mvc.analyzers\2.1.1\microsoft.aspnetcore.mvc.analyzers.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.analyzers\2.1.1\microsoft.aspnetcore.mvc.analyzers.nuspec +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\microsoft.aspnetcore.mvc.apiexplorer.2.1.1.nupkg +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\microsoft.aspnetcore.mvc.apiexplorer.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\microsoft.aspnetcore.mvc.apiexplorer.nuspec +microsoft.aspnetcore.mvc.core\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll +microsoft.aspnetcore.mvc.core\2.1.1\microsoft.aspnetcore.mvc.core.2.1.1.nupkg +microsoft.aspnetcore.mvc.core\2.1.1\microsoft.aspnetcore.mvc.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.core\2.1.1\microsoft.aspnetcore.mvc.core.nuspec +microsoft.aspnetcore.mvc.cors\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Cors.dll +microsoft.aspnetcore.mvc.cors\2.1.1\microsoft.aspnetcore.mvc.cors.2.1.1.nupkg +microsoft.aspnetcore.mvc.cors\2.1.1\microsoft.aspnetcore.mvc.cors.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.cors\2.1.1\microsoft.aspnetcore.mvc.cors.nuspec +microsoft.aspnetcore.mvc.dataannotations\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.dataannotations\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +microsoft.aspnetcore.mvc.dataannotations\2.1.1\microsoft.aspnetcore.mvc.dataannotations.2.1.1.nupkg +microsoft.aspnetcore.mvc.dataannotations\2.1.1\microsoft.aspnetcore.mvc.dataannotations.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.dataannotations\2.1.1\microsoft.aspnetcore.mvc.dataannotations.nuspec +microsoft.aspnetcore.mvc.formatters.json\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.formatters.json\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +microsoft.aspnetcore.mvc.formatters.json\2.1.1\microsoft.aspnetcore.mvc.formatters.json.2.1.1.nupkg +microsoft.aspnetcore.mvc.formatters.json\2.1.1\microsoft.aspnetcore.mvc.formatters.json.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.formatters.json\2.1.1\microsoft.aspnetcore.mvc.formatters.json.nuspec +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\microsoft.aspnetcore.mvc.formatters.xml.2.1.1.nupkg +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\microsoft.aspnetcore.mvc.formatters.xml.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\microsoft.aspnetcore.mvc.formatters.xml.nuspec +microsoft.aspnetcore.mvc.localization\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.localization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Localization.dll +microsoft.aspnetcore.mvc.localization\2.1.1\microsoft.aspnetcore.mvc.localization.2.1.1.nupkg +microsoft.aspnetcore.mvc.localization\2.1.1\microsoft.aspnetcore.mvc.localization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.localization\2.1.1\microsoft.aspnetcore.mvc.localization.nuspec +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\lib\net46\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\microsoft.aspnetcore.mvc.razor.extensions.nuspec +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x64.exe +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\microsoft.aspnetcore.mvc.razor.viewcompilation.2.1.1.nupkg +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\microsoft.aspnetcore.mvc.razor.viewcompilation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec +microsoft.aspnetcore.mvc.razor\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.dll +microsoft.aspnetcore.mvc.razor\2.1.1\microsoft.aspnetcore.mvc.razor.2.1.1.nupkg +microsoft.aspnetcore.mvc.razor\2.1.1\microsoft.aspnetcore.mvc.razor.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor\2.1.1\microsoft.aspnetcore.mvc.razor.nuspec +microsoft.aspnetcore.mvc.razorpages\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razorpages\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.RazorPages.dll +microsoft.aspnetcore.mvc.razorpages\2.1.1\microsoft.aspnetcore.mvc.razorpages.2.1.1.nupkg +microsoft.aspnetcore.mvc.razorpages\2.1.1\microsoft.aspnetcore.mvc.razorpages.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razorpages\2.1.1\microsoft.aspnetcore.mvc.razorpages.nuspec +microsoft.aspnetcore.mvc.taghelpers\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.taghelpers\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.TagHelpers.dll +microsoft.aspnetcore.mvc.taghelpers\2.1.1\microsoft.aspnetcore.mvc.taghelpers.2.1.1.nupkg +microsoft.aspnetcore.mvc.taghelpers\2.1.1\microsoft.aspnetcore.mvc.taghelpers.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.taghelpers\2.1.1\microsoft.aspnetcore.mvc.taghelpers.nuspec +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\microsoft.aspnetcore.mvc.viewfeatures.2.1.1.nupkg +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\microsoft.aspnetcore.mvc.viewfeatures.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\microsoft.aspnetcore.mvc.viewfeatures.nuspec +microsoft.aspnetcore.mvc\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.dll +microsoft.aspnetcore.mvc\2.1.1\microsoft.aspnetcore.mvc.2.1.1.nupkg +microsoft.aspnetcore.mvc\2.1.1\microsoft.aspnetcore.mvc.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc\2.1.1\microsoft.aspnetcore.mvc.nuspec +microsoft.aspnetcore.nodeservices\2.1.1\.signature.p7s +microsoft.aspnetcore.nodeservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.NodeServices.dll +microsoft.aspnetcore.nodeservices\2.1.1\microsoft.aspnetcore.nodeservices.2.1.1.nupkg +microsoft.aspnetcore.nodeservices\2.1.1\microsoft.aspnetcore.nodeservices.2.1.1.nupkg.sha512 +microsoft.aspnetcore.nodeservices\2.1.1\microsoft.aspnetcore.nodeservices.nuspec +microsoft.aspnetcore.owin\2.1.1\.signature.p7s +microsoft.aspnetcore.owin\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Owin.dll +microsoft.aspnetcore.owin\2.1.1\microsoft.aspnetcore.owin.2.1.1.nupkg +microsoft.aspnetcore.owin\2.1.1\microsoft.aspnetcore.owin.2.1.1.nupkg.sha512 +microsoft.aspnetcore.owin\2.1.1\microsoft.aspnetcore.owin.nuspec +microsoft.aspnetcore.razor.design\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.design\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets +microsoft.aspnetcore.razor.design\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props +microsoft.aspnetcore.razor.design\2.1.1\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props +microsoft.aspnetcore.razor.design\2.1.1\microsoft.aspnetcore.razor.design.2.1.1.nupkg +microsoft.aspnetcore.razor.design\2.1.1\microsoft.aspnetcore.razor.design.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.design\2.1.1\microsoft.aspnetcore.razor.design.nuspec +microsoft.aspnetcore.razor.design\2.1.1\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll +microsoft.aspnetcore.razor.design\2.1.1\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.CSharp.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.Razor.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Newtonsoft.Json.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.deps.json +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.runtimeconfig.json +microsoft.aspnetcore.razor.language\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.language\2.1.1\lib\net46\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.language\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.language\2.1.1\microsoft.aspnetcore.razor.language.2.1.1.nupkg +microsoft.aspnetcore.razor.language\2.1.1\microsoft.aspnetcore.razor.language.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.language\2.1.1\microsoft.aspnetcore.razor.language.nuspec +microsoft.aspnetcore.razor.runtime\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.runtime\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Runtime.dll +microsoft.aspnetcore.razor.runtime\2.1.1\microsoft.aspnetcore.razor.runtime.2.1.1.nupkg +microsoft.aspnetcore.razor.runtime\2.1.1\microsoft.aspnetcore.razor.runtime.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.runtime\2.1.1\microsoft.aspnetcore.razor.runtime.nuspec +microsoft.aspnetcore.razor\2.1.1\.signature.p7s +microsoft.aspnetcore.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.dll +microsoft.aspnetcore.razor\2.1.1\microsoft.aspnetcore.razor.2.1.1.nupkg +microsoft.aspnetcore.razor\2.1.1\microsoft.aspnetcore.razor.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor\2.1.1\microsoft.aspnetcore.razor.nuspec +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\microsoft.aspnetcore.responsecaching.abstractions.nuspec +microsoft.aspnetcore.responsecaching\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecaching\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.dll +microsoft.aspnetcore.responsecaching\2.1.1\microsoft.aspnetcore.responsecaching.2.1.1.nupkg +microsoft.aspnetcore.responsecaching\2.1.1\microsoft.aspnetcore.responsecaching.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecaching\2.1.1\microsoft.aspnetcore.responsecaching.nuspec +microsoft.aspnetcore.responsecompression\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecompression\2.1.1\lib\net461\Microsoft.AspNetCore.ResponseCompression.dll +microsoft.aspnetcore.responsecompression\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCompression.dll +microsoft.aspnetcore.responsecompression\2.1.1\microsoft.aspnetcore.responsecompression.2.1.1.nupkg +microsoft.aspnetcore.responsecompression\2.1.1\microsoft.aspnetcore.responsecompression.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecompression\2.1.1\microsoft.aspnetcore.responsecompression.nuspec +microsoft.aspnetcore.rewrite\2.1.1\.signature.p7s +microsoft.aspnetcore.rewrite\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Rewrite.dll +microsoft.aspnetcore.rewrite\2.1.1\microsoft.aspnetcore.rewrite.2.1.1.nupkg +microsoft.aspnetcore.rewrite\2.1.1\microsoft.aspnetcore.rewrite.2.1.1.nupkg.sha512 +microsoft.aspnetcore.rewrite\2.1.1\microsoft.aspnetcore.rewrite.nuspec +microsoft.aspnetcore.routing.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.routing.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll +microsoft.aspnetcore.routing.abstractions\2.1.1\microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg +microsoft.aspnetcore.routing.abstractions\2.1.1\microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.routing.abstractions\2.1.1\microsoft.aspnetcore.routing.abstractions.nuspec +microsoft.aspnetcore.routing\2.1.1\.signature.p7s +microsoft.aspnetcore.routing\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.dll +microsoft.aspnetcore.routing\2.1.1\microsoft.aspnetcore.routing.2.1.1.nupkg +microsoft.aspnetcore.routing\2.1.1\microsoft.aspnetcore.routing.2.1.1.nupkg.sha512 +microsoft.aspnetcore.routing\2.1.1\microsoft.aspnetcore.routing.nuspec +microsoft.aspnetcore.server.httpsys\2.1.1\.signature.p7s +microsoft.aspnetcore.server.httpsys\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.HttpSys.dll +microsoft.aspnetcore.server.httpsys\2.1.1\microsoft.aspnetcore.server.httpsys.2.1.1.nupkg +microsoft.aspnetcore.server.httpsys\2.1.1\microsoft.aspnetcore.server.httpsys.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.httpsys\2.1.1\microsoft.aspnetcore.server.httpsys.nuspec +microsoft.aspnetcore.server.iisintegration\2.1.1\.signature.p7s +microsoft.aspnetcore.server.iisintegration\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.dll +microsoft.aspnetcore.server.iisintegration\2.1.1\microsoft.aspnetcore.server.iisintegration.2.1.1.nupkg +microsoft.aspnetcore.server.iisintegration\2.1.1\microsoft.aspnetcore.server.iisintegration.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.iisintegration\2.1.1\microsoft.aspnetcore.server.iisintegration.nuspec +microsoft.aspnetcore.server.kestrel.core\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.core\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Core.dll +microsoft.aspnetcore.server.kestrel.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Core.dll +microsoft.aspnetcore.server.kestrel.core\2.1.1\microsoft.aspnetcore.server.kestrel.core.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel.core\2.1.1\microsoft.aspnetcore.server.kestrel.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.core\2.1.1\microsoft.aspnetcore.server.kestrel.core.nuspec +microsoft.aspnetcore.server.kestrel.https\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.https\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Https.dll +microsoft.aspnetcore.server.kestrel.https\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll +microsoft.aspnetcore.server.kestrel.https\2.1.1\microsoft.aspnetcore.server.kestrel.https.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel.https\2.1.1\microsoft.aspnetcore.server.kestrel.https.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.https\2.1.1\microsoft.aspnetcore.server.kestrel.https.nuspec +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\microsoft.aspnetcore.server.kestrel.transport.libuv.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\microsoft.aspnetcore.server.kestrel.transport.libuv.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec +microsoft.aspnetcore.server.kestrel\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.dll +microsoft.aspnetcore.server.kestrel\2.1.1\microsoft.aspnetcore.server.kestrel.2.1.1.nupkg +microsoft.aspnetcore.server.kestrel\2.1.1\microsoft.aspnetcore.server.kestrel.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel\2.1.1\microsoft.aspnetcore.server.kestrel.nuspec +microsoft.aspnetcore.session\2.1.1\.signature.p7s +microsoft.aspnetcore.session\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Session.dll +microsoft.aspnetcore.session\2.1.1\microsoft.aspnetcore.session.2.1.1.nupkg +microsoft.aspnetcore.session\2.1.1\microsoft.aspnetcore.session.2.1.1.nupkg.sha512 +microsoft.aspnetcore.session\2.1.1\microsoft.aspnetcore.session.nuspec +microsoft.aspnetcore.signalr.common\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.common\1.0.1\lib\netcoreapp2.1\Microsoft.AspNetCore.SignalR.Common.dll +microsoft.aspnetcore.signalr.common\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Common.dll +microsoft.aspnetcore.signalr.common\1.0.1\microsoft.aspnetcore.signalr.common.1.0.1.nupkg +microsoft.aspnetcore.signalr.common\1.0.1\microsoft.aspnetcore.signalr.common.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.common\1.0.1\microsoft.aspnetcore.signalr.common.nuspec +microsoft.aspnetcore.signalr.core\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.core\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Core.dll +microsoft.aspnetcore.signalr.core\1.0.1\microsoft.aspnetcore.signalr.core.1.0.1.nupkg +microsoft.aspnetcore.signalr.core\1.0.1\microsoft.aspnetcore.signalr.core.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.core\1.0.1\microsoft.aspnetcore.signalr.core.nuspec +microsoft.aspnetcore.signalr.protocols.json\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.protocols.json\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +microsoft.aspnetcore.signalr.protocols.json\1.0.1\microsoft.aspnetcore.signalr.protocols.json.1.0.1.nupkg +microsoft.aspnetcore.signalr.protocols.json\1.0.1\microsoft.aspnetcore.signalr.protocols.json.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.protocols.json\1.0.1\microsoft.aspnetcore.signalr.protocols.json.nuspec +microsoft.aspnetcore.signalr.redis\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.redis\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Redis.dll +microsoft.aspnetcore.signalr.redis\1.0.1\microsoft.aspnetcore.signalr.redis.1.0.1.nupkg +microsoft.aspnetcore.signalr.redis\1.0.1\microsoft.aspnetcore.signalr.redis.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.redis\1.0.1\microsoft.aspnetcore.signalr.redis.nuspec +microsoft.aspnetcore.signalr\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.dll +microsoft.aspnetcore.signalr\1.0.1\microsoft.aspnetcore.signalr.1.0.1.nupkg +microsoft.aspnetcore.signalr\1.0.1\microsoft.aspnetcore.signalr.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr\1.0.1\microsoft.aspnetcore.signalr.nuspec +microsoft.aspnetcore.spaservices.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.spaservices.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.Extensions.dll +microsoft.aspnetcore.spaservices.extensions\2.1.1\microsoft.aspnetcore.spaservices.extensions.2.1.1.nupkg +microsoft.aspnetcore.spaservices.extensions\2.1.1\microsoft.aspnetcore.spaservices.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.spaservices.extensions\2.1.1\microsoft.aspnetcore.spaservices.extensions.nuspec +microsoft.aspnetcore.spaservices\2.1.1\.signature.p7s +microsoft.aspnetcore.spaservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.dll +microsoft.aspnetcore.spaservices\2.1.1\microsoft.aspnetcore.spaservices.2.1.1.nupkg +microsoft.aspnetcore.spaservices\2.1.1\microsoft.aspnetcore.spaservices.2.1.1.nupkg.sha512 +microsoft.aspnetcore.spaservices\2.1.1\microsoft.aspnetcore.spaservices.nuspec +microsoft.aspnetcore.staticfiles\2.1.1\.signature.p7s +microsoft.aspnetcore.staticfiles\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.StaticFiles.dll +microsoft.aspnetcore.staticfiles\2.1.1\microsoft.aspnetcore.staticfiles.2.1.1.nupkg +microsoft.aspnetcore.staticfiles\2.1.1\microsoft.aspnetcore.staticfiles.2.1.1.nupkg.sha512 +microsoft.aspnetcore.staticfiles\2.1.1\microsoft.aspnetcore.staticfiles.nuspec +microsoft.aspnetcore.websockets\2.1.1\.signature.p7s +microsoft.aspnetcore.websockets\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebSockets.dll +microsoft.aspnetcore.websockets\2.1.1\microsoft.aspnetcore.websockets.2.1.1.nupkg +microsoft.aspnetcore.websockets\2.1.1\microsoft.aspnetcore.websockets.2.1.1.nupkg.sha512 +microsoft.aspnetcore.websockets\2.1.1\microsoft.aspnetcore.websockets.nuspec +microsoft.aspnetcore.webutilities\2.1.1\.signature.p7s +microsoft.aspnetcore.webutilities\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll +microsoft.aspnetcore.webutilities\2.1.1\microsoft.aspnetcore.webutilities.2.1.1.nupkg +microsoft.aspnetcore.webutilities\2.1.1\microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512 +microsoft.aspnetcore.webutilities\2.1.1\microsoft.aspnetcore.webutilities.nuspec +microsoft.aspnetcore\2.1.1\.signature.p7s +microsoft.aspnetcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.dll +microsoft.aspnetcore\2.1.1\microsoft.aspnetcore.2.1.1.nupkg +microsoft.aspnetcore\2.1.1\microsoft.aspnetcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore\2.1.1\microsoft.aspnetcore.nuspec +microsoft.azure.keyvault.webkey\2.0.7\lib\net452\Microsoft.Azure.KeyVault.WebKey.dll +microsoft.azure.keyvault.webkey\2.0.7\lib\net452\Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +microsoft.azure.keyvault.webkey\2.0.7\lib\netstandard1.4\Microsoft.Azure.KeyVault.WebKey.dll +microsoft.azure.keyvault.webkey\2.0.7\lib\netstandard1.4\Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +microsoft.azure.keyvault.webkey\2.0.7\microsoft.azure.keyvault.webkey.2.0.7.nupkg +microsoft.azure.keyvault.webkey\2.0.7\microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512 +microsoft.azure.keyvault.webkey\2.0.7\microsoft.azure.keyvault.webkey.nuspec +microsoft.azure.keyvault\2.3.2\lib\net452\Microsoft.Azure.KeyVault.dll +microsoft.azure.keyvault\2.3.2\lib\net452\Microsoft.Azure.KeyVault.runtimeconfig.json +microsoft.azure.keyvault\2.3.2\lib\netstandard1.4\Microsoft.Azure.KeyVault.dll +microsoft.azure.keyvault\2.3.2\lib\netstandard1.4\Microsoft.Azure.KeyVault.runtimeconfig.json +microsoft.azure.keyvault\2.3.2\microsoft.azure.keyvault.2.3.2.nupkg +microsoft.azure.keyvault\2.3.2\microsoft.azure.keyvault.2.3.2.nupkg.sha512 +microsoft.azure.keyvault\2.3.2\microsoft.azure.keyvault.nuspec +microsoft.azure.services.appauthentication\1.0.1\build\Microsoft.Azure.Services.AppAuthentication.targets +microsoft.azure.services.appauthentication\1.0.1\lib\net452\Microsoft.Azure.Services.AppAuthentication.dll +microsoft.azure.services.appauthentication\1.0.1\lib\net452\Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json +microsoft.azure.services.appauthentication\1.0.1\lib\netstandard1.4\Microsoft.Azure.Services.AppAuthentication.dll +microsoft.azure.services.appauthentication\1.0.1\lib\netstandard1.4\Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json +microsoft.azure.services.appauthentication\1.0.1\microsoft.azure.services.appauthentication.1.0.1.nupkg +microsoft.azure.services.appauthentication\1.0.1\microsoft.azure.services.appauthentication.1.0.1.nupkg.sha512 +microsoft.azure.services.appauthentication\1.0.1\microsoft.azure.services.appauthentication.nuspec +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\vb\Microsoft.CodeAnalysis.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\vb\Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\microsoft.codeanalysis.analyzers.1.1.0.nupkg +microsoft.codeanalysis.analyzers\1.1.0\microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512 +microsoft.codeanalysis.analyzers\1.1.0\microsoft.codeanalysis.analyzers.nuspec +microsoft.codeanalysis.analyzers\1.1.0\ThirdPartyNotices.rtf +microsoft.codeanalysis.analyzers\1.1.0\tools\install.ps1 +microsoft.codeanalysis.analyzers\1.1.0\tools\uninstall.ps1 +microsoft.codeanalysis.common\2.8.0\.signature.p7s +microsoft.codeanalysis.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.dll +microsoft.codeanalysis.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.pdb +microsoft.codeanalysis.common\2.8.0\microsoft.codeanalysis.common.2.8.0.nupkg +microsoft.codeanalysis.common\2.8.0\microsoft.codeanalysis.common.2.8.0.nupkg.sha512 +microsoft.codeanalysis.common\2.8.0\microsoft.codeanalysis.common.nuspec +microsoft.codeanalysis.csharp.workspaces\2.8.0\.signature.p7s +microsoft.codeanalysis.csharp.workspaces\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +microsoft.codeanalysis.csharp.workspaces\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.pdb +microsoft.codeanalysis.csharp.workspaces\2.8.0\microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg +microsoft.codeanalysis.csharp.workspaces\2.8.0\microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512 +microsoft.codeanalysis.csharp.workspaces\2.8.0\microsoft.codeanalysis.csharp.workspaces.nuspec +microsoft.codeanalysis.csharp\2.8.0\.signature.p7s +microsoft.codeanalysis.csharp\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll +microsoft.codeanalysis.csharp\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.pdb +microsoft.codeanalysis.csharp\2.8.0\microsoft.codeanalysis.csharp.2.8.0.nupkg +microsoft.codeanalysis.csharp\2.8.0\microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512 +microsoft.codeanalysis.csharp\2.8.0\microsoft.codeanalysis.csharp.nuspec +microsoft.codeanalysis.razor\2.1.1\.signature.p7s +microsoft.codeanalysis.razor\2.1.1\lib\net46\Microsoft.CodeAnalysis.Razor.dll +microsoft.codeanalysis.razor\2.1.1\lib\netstandard2.0\Microsoft.CodeAnalysis.Razor.dll +microsoft.codeanalysis.razor\2.1.1\microsoft.codeanalysis.razor.2.1.1.nupkg +microsoft.codeanalysis.razor\2.1.1\microsoft.codeanalysis.razor.2.1.1.nupkg.sha512 +microsoft.codeanalysis.razor\2.1.1\microsoft.codeanalysis.razor.nuspec +microsoft.codeanalysis.workspaces.common\2.8.0\.signature.p7s +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.Desktop.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.Desktop.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\microsoft.codeanalysis.workspaces.common.2.8.0.nupkg +microsoft.codeanalysis.workspaces.common\2.8.0\microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512 +microsoft.codeanalysis.workspaces.common\2.8.0\microsoft.codeanalysis.workspaces.common.nuspec +microsoft.csharp\4.0.1\dotnet_library_license.txt +microsoft.csharp\4.0.1\lib\MonoAndroid10\_._ +microsoft.csharp\4.0.1\lib\MonoTouch10\_._ +microsoft.csharp\4.0.1\lib\net45\_._ +microsoft.csharp\4.0.1\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.0.1\lib\win8\_._ +microsoft.csharp\4.0.1\lib\wp80\_._ +microsoft.csharp\4.0.1\lib\wpa81\_._ +microsoft.csharp\4.0.1\lib\xamarinios10\_._ +microsoft.csharp\4.0.1\lib\xamarinmac20\_._ +microsoft.csharp\4.0.1\lib\xamarintvos10\_._ +microsoft.csharp\4.0.1\lib\xamarinwatchos10\_._ +microsoft.csharp\4.0.1\microsoft.csharp.4.0.1.nupkg +microsoft.csharp\4.0.1\microsoft.csharp.4.0.1.nupkg.sha512 +microsoft.csharp\4.0.1\microsoft.csharp.nuspec +microsoft.csharp\4.0.1\ref\MonoAndroid10\_._ +microsoft.csharp\4.0.1\ref\MonoTouch10\_._ +microsoft.csharp\4.0.1\ref\net45\_._ +microsoft.csharp\4.0.1\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.0.1\ref\win8\_._ +microsoft.csharp\4.0.1\ref\wp80\_._ +microsoft.csharp\4.0.1\ref\wpa81\_._ +microsoft.csharp\4.0.1\ref\xamarinios10\_._ +microsoft.csharp\4.0.1\ref\xamarinmac20\_._ +microsoft.csharp\4.0.1\ref\xamarintvos10\_._ +microsoft.csharp\4.0.1\ref\xamarinwatchos10\_._ +microsoft.csharp\4.0.1\ThirdPartyNotices.txt +microsoft.csharp\4.3.0\dotnet_library_license.txt +microsoft.csharp\4.3.0\lib\MonoAndroid10\_._ +microsoft.csharp\4.3.0\lib\MonoTouch10\_._ +microsoft.csharp\4.3.0\lib\net45\_._ +microsoft.csharp\4.3.0\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.3.0\lib\win8\_._ +microsoft.csharp\4.3.0\lib\wp80\_._ +microsoft.csharp\4.3.0\lib\wpa81\_._ +microsoft.csharp\4.3.0\lib\xamarinios10\_._ +microsoft.csharp\4.3.0\lib\xamarinmac20\_._ +microsoft.csharp\4.3.0\lib\xamarintvos10\_._ +microsoft.csharp\4.3.0\lib\xamarinwatchos10\_._ +microsoft.csharp\4.3.0\microsoft.csharp.4.3.0.nupkg +microsoft.csharp\4.3.0\microsoft.csharp.4.3.0.nupkg.sha512 +microsoft.csharp\4.3.0\microsoft.csharp.nuspec +microsoft.csharp\4.3.0\ref\MonoAndroid10\_._ +microsoft.csharp\4.3.0\ref\MonoTouch10\_._ +microsoft.csharp\4.3.0\ref\net45\_._ +microsoft.csharp\4.3.0\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.3.0\ref\win8\_._ +microsoft.csharp\4.3.0\ref\wp80\_._ +microsoft.csharp\4.3.0\ref\wpa81\_._ +microsoft.csharp\4.3.0\ref\xamarinios10\_._ +microsoft.csharp\4.3.0\ref\xamarinmac20\_._ +microsoft.csharp\4.3.0\ref\xamarintvos10\_._ +microsoft.csharp\4.3.0\ref\xamarinwatchos10\_._ +microsoft.csharp\4.3.0\ThirdPartyNotices.txt +microsoft.csharp\4.5.0\.signature.p7s +microsoft.csharp\4.5.0\lib\MonoAndroid10\_._ +microsoft.csharp\4.5.0\lib\MonoTouch10\_._ +microsoft.csharp\4.5.0\lib\net45\_._ +microsoft.csharp\4.5.0\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\netcoreapp2.0\_._ +microsoft.csharp\4.5.0\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\netstandard2.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.5.0\lib\uap10.0.16299\_._ +microsoft.csharp\4.5.0\lib\win8\_._ +microsoft.csharp\4.5.0\lib\wp80\_._ +microsoft.csharp\4.5.0\lib\wpa81\_._ +microsoft.csharp\4.5.0\lib\xamarinios10\_._ +microsoft.csharp\4.5.0\lib\xamarinmac20\_._ +microsoft.csharp\4.5.0\lib\xamarintvos10\_._ +microsoft.csharp\4.5.0\lib\xamarinwatchos10\_._ +microsoft.csharp\4.5.0\LICENSE.TXT +microsoft.csharp\4.5.0\microsoft.csharp.4.5.0.nupkg +microsoft.csharp\4.5.0\microsoft.csharp.4.5.0.nupkg.sha512 +microsoft.csharp\4.5.0\microsoft.csharp.nuspec +microsoft.csharp\4.5.0\ref\MonoAndroid10\_._ +microsoft.csharp\4.5.0\ref\MonoTouch10\_._ +microsoft.csharp\4.5.0\ref\net45\_._ +microsoft.csharp\4.5.0\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\netcoreapp2.0\_._ +microsoft.csharp\4.5.0\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\netstandard2.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.5.0\ref\uap10.0.16299\_._ +microsoft.csharp\4.5.0\ref\win8\_._ +microsoft.csharp\4.5.0\ref\wp80\_._ +microsoft.csharp\4.5.0\ref\wpa81\_._ +microsoft.csharp\4.5.0\ref\xamarinios10\_._ +microsoft.csharp\4.5.0\ref\xamarinmac20\_._ +microsoft.csharp\4.5.0\ref\xamarintvos10\_._ +microsoft.csharp\4.5.0\ref\xamarinwatchos10\_._ +microsoft.csharp\4.5.0\THIRD-PARTY-NOTICES.TXT +microsoft.csharp\4.5.0\useSharedDesignerContext.txt +microsoft.csharp\4.5.0\version.txt +microsoft.data.edm\5.8.2\lib\net40\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\net40\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\sl4\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\microsoft.data.edm.5.8.2.nupkg +microsoft.data.edm\5.8.2\microsoft.data.edm.5.8.2.nupkg.sha512 +microsoft.data.edm\5.8.2\microsoft.data.edm.nuspec +microsoft.data.odata\5.8.2\lib\net40\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\net40\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\sl4\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\microsoft.data.odata.5.8.2.nupkg +microsoft.data.odata\5.8.2\microsoft.data.odata.5.8.2.nupkg.sha512 +microsoft.data.odata\5.8.2\microsoft.data.odata.nuspec +microsoft.data.sqlite.core\2.1.0\.signature.p7s +microsoft.data.sqlite.core\2.1.0\lib\netstandard2.0\Microsoft.Data.Sqlite.dll +microsoft.data.sqlite.core\2.1.0\microsoft.data.sqlite.core.2.1.0.nupkg +microsoft.data.sqlite.core\2.1.0\microsoft.data.sqlite.core.2.1.0.nupkg.sha512 +microsoft.data.sqlite.core\2.1.0\microsoft.data.sqlite.core.nuspec +microsoft.data.sqlite\2.1.0\.signature.p7s +microsoft.data.sqlite\2.1.0\lib\netstandard2.0\_._ +microsoft.data.sqlite\2.1.0\microsoft.data.sqlite.2.1.0.nupkg +microsoft.data.sqlite\2.1.0\microsoft.data.sqlite.2.1.0.nupkg.sha512 +microsoft.data.sqlite\2.1.0\microsoft.data.sqlite.nuspec +microsoft.dotnet.platformabstractions\2.1.0\.signature.p7s +microsoft.dotnet.platformabstractions\2.1.0\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll +microsoft.dotnet.platformabstractions\2.1.0\lib\netstandard1.3\Microsoft.DotNet.PlatformAbstractions.dll +microsoft.dotnet.platformabstractions\2.1.0\LICENSE.TXT +microsoft.dotnet.platformabstractions\2.1.0\microsoft.dotnet.platformabstractions.2.1.0.nupkg +microsoft.dotnet.platformabstractions\2.1.0\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512 +microsoft.dotnet.platformabstractions\2.1.0\microsoft.dotnet.platformabstractions.nuspec +microsoft.dotnet.platformabstractions\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.entityframeworkcore.abstractions\2.1.1\.signature.p7s +microsoft.entityframeworkcore.abstractions\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll +microsoft.entityframeworkcore.abstractions\2.1.1\microsoft.entityframeworkcore.abstractions.2.1.1.nupkg +microsoft.entityframeworkcore.abstractions\2.1.1\microsoft.entityframeworkcore.abstractions.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.abstractions\2.1.1\microsoft.entityframeworkcore.abstractions.nuspec +microsoft.entityframeworkcore.analyzers\2.1.1\.signature.p7s +microsoft.entityframeworkcore.analyzers\2.1.1\analyzers\dotnet\cs\Microsoft.EntityFrameworkCore.Analyzers.dll +microsoft.entityframeworkcore.analyzers\2.1.1\microsoft.entityframeworkcore.analyzers.2.1.1.nupkg +microsoft.entityframeworkcore.analyzers\2.1.1\microsoft.entityframeworkcore.analyzers.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.analyzers\2.1.1\microsoft.entityframeworkcore.analyzers.nuspec +microsoft.entityframeworkcore.design\2.1.1\.signature.p7s +microsoft.entityframeworkcore.design\2.1.1\build\net461\Microsoft.EntityFrameworkCore.Design.props +microsoft.entityframeworkcore.design\2.1.1\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props +microsoft.entityframeworkcore.design\2.1.1\lib\net461\Microsoft.EntityFrameworkCore.Design.dll +microsoft.entityframeworkcore.design\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Design.dll +microsoft.entityframeworkcore.design\2.1.1\microsoft.entityframeworkcore.design.2.1.1.nupkg +microsoft.entityframeworkcore.design\2.1.1\microsoft.entityframeworkcore.design.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.design\2.1.1\microsoft.entityframeworkcore.design.nuspec +microsoft.entityframeworkcore.inmemory\2.1.1\.signature.p7s +microsoft.entityframeworkcore.inmemory\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll +microsoft.entityframeworkcore.inmemory\2.1.1\microsoft.entityframeworkcore.inmemory.2.1.1.nupkg +microsoft.entityframeworkcore.inmemory\2.1.1\microsoft.entityframeworkcore.inmemory.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.inmemory\2.1.1\microsoft.entityframeworkcore.inmemory.nuspec +microsoft.entityframeworkcore.relational\2.1.1\.signature.p7s +microsoft.entityframeworkcore.relational\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Relational.dll +microsoft.entityframeworkcore.relational\2.1.1\microsoft.entityframeworkcore.relational.2.1.1.nupkg +microsoft.entityframeworkcore.relational\2.1.1\microsoft.entityframeworkcore.relational.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.relational\2.1.1\microsoft.entityframeworkcore.relational.nuspec +microsoft.entityframeworkcore.sqlite.core\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlite.core\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Sqlite.dll +microsoft.entityframeworkcore.sqlite.core\2.1.1\microsoft.entityframeworkcore.sqlite.core.2.1.1.nupkg +microsoft.entityframeworkcore.sqlite.core\2.1.1\microsoft.entityframeworkcore.sqlite.core.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlite.core\2.1.1\microsoft.entityframeworkcore.sqlite.core.nuspec +microsoft.entityframeworkcore.sqlite\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlite\2.1.1\lib\netstandard2.0\_._ +microsoft.entityframeworkcore.sqlite\2.1.1\microsoft.entityframeworkcore.sqlite.2.1.1.nupkg +microsoft.entityframeworkcore.sqlite\2.1.1\microsoft.entityframeworkcore.sqlite.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlite\2.1.1\microsoft.entityframeworkcore.sqlite.nuspec +microsoft.entityframeworkcore.sqlserver\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.SqlServer.dll +microsoft.entityframeworkcore.sqlserver\2.1.1\microsoft.entityframeworkcore.sqlserver.2.1.1.nupkg +microsoft.entityframeworkcore.sqlserver\2.1.1\microsoft.entityframeworkcore.sqlserver.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlserver\2.1.1\microsoft.entityframeworkcore.sqlserver.nuspec +microsoft.entityframeworkcore.tools\2.1.1\.signature.p7s +microsoft.entityframeworkcore.tools\2.1.1\lib\netstandard2.0\_._ +microsoft.entityframeworkcore.tools\2.1.1\microsoft.entityframeworkcore.tools.2.1.1.nupkg +microsoft.entityframeworkcore.tools\2.1.1\microsoft.entityframeworkcore.tools.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.tools\2.1.1\microsoft.entityframeworkcore.tools.nuspec +microsoft.entityframeworkcore.tools\2.1.1\tools\about_EntityFrameworkCore.help.txt +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.PowerShell2.psd1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.PowerShell2.psm1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.psd1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.psm1 +microsoft.entityframeworkcore.tools\2.1.1\tools\init.ps1 +microsoft.entityframeworkcore.tools\2.1.1\tools\install.ps1 +microsoft.entityframeworkcore.tools\2.1.1\tools\net461\any\ef.exe +microsoft.entityframeworkcore.tools\2.1.1\tools\net461\win-x86\ef.exe +microsoft.entityframeworkcore.tools\2.1.1\tools\netcoreapp2.0\any\ef.dll +microsoft.entityframeworkcore.tools\2.1.1\tools\netcoreapp2.0\any\ef.runtimeconfig.json +microsoft.entityframeworkcore\2.1.1\.signature.p7s +microsoft.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll +microsoft.entityframeworkcore\2.1.1\microsoft.entityframeworkcore.2.1.1.nupkg +microsoft.entityframeworkcore\2.1.1\microsoft.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore\2.1.1\microsoft.entityframeworkcore.nuspec +microsoft.extensions.caching.abstractions\2.1.1\.signature.p7s +microsoft.extensions.caching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll +microsoft.extensions.caching.abstractions\2.1.1\microsoft.extensions.caching.abstractions.2.1.1.nupkg +microsoft.extensions.caching.abstractions\2.1.1\microsoft.extensions.caching.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.caching.abstractions\2.1.1\microsoft.extensions.caching.abstractions.nuspec +microsoft.extensions.caching.memory\2.1.1\.signature.p7s +microsoft.extensions.caching.memory\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll +microsoft.extensions.caching.memory\2.1.1\microsoft.extensions.caching.memory.2.1.1.nupkg +microsoft.extensions.caching.memory\2.1.1\microsoft.extensions.caching.memory.2.1.1.nupkg.sha512 +microsoft.extensions.caching.memory\2.1.1\microsoft.extensions.caching.memory.nuspec +microsoft.extensions.caching.redis\2.1.1\.signature.p7s +microsoft.extensions.caching.redis\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Redis.dll +microsoft.extensions.caching.redis\2.1.1\microsoft.extensions.caching.redis.2.1.1.nupkg +microsoft.extensions.caching.redis\2.1.1\microsoft.extensions.caching.redis.2.1.1.nupkg.sha512 +microsoft.extensions.caching.redis\2.1.1\microsoft.extensions.caching.redis.nuspec +microsoft.extensions.caching.sqlserver\2.1.1\.signature.p7s +microsoft.extensions.caching.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.SqlServer.dll +microsoft.extensions.caching.sqlserver\2.1.1\microsoft.extensions.caching.sqlserver.2.1.1.nupkg +microsoft.extensions.caching.sqlserver\2.1.1\microsoft.extensions.caching.sqlserver.2.1.1.nupkg.sha512 +microsoft.extensions.caching.sqlserver\2.1.1\microsoft.extensions.caching.sqlserver.nuspec +microsoft.extensions.configuration.abstractions\2.1.1\.signature.p7s +microsoft.extensions.configuration.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll +microsoft.extensions.configuration.abstractions\2.1.1\microsoft.extensions.configuration.abstractions.2.1.1.nupkg +microsoft.extensions.configuration.abstractions\2.1.1\microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.abstractions\2.1.1\microsoft.extensions.configuration.abstractions.nuspec +microsoft.extensions.configuration.azurekeyvault\2.1.1\.signature.p7s +microsoft.extensions.configuration.azurekeyvault\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.AzureKeyVault.dll +microsoft.extensions.configuration.azurekeyvault\2.1.1\microsoft.extensions.configuration.azurekeyvault.2.1.1.nupkg +microsoft.extensions.configuration.azurekeyvault\2.1.1\microsoft.extensions.configuration.azurekeyvault.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.azurekeyvault\2.1.1\microsoft.extensions.configuration.azurekeyvault.nuspec +microsoft.extensions.configuration.binder\2.1.1\.signature.p7s +microsoft.extensions.configuration.binder\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll +microsoft.extensions.configuration.binder\2.1.1\microsoft.extensions.configuration.binder.2.1.1.nupkg +microsoft.extensions.configuration.binder\2.1.1\microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.binder\2.1.1\microsoft.extensions.configuration.binder.nuspec +microsoft.extensions.configuration.commandline\2.1.1\.signature.p7s +microsoft.extensions.configuration.commandline\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll +microsoft.extensions.configuration.commandline\2.1.1\microsoft.extensions.configuration.commandline.2.1.1.nupkg +microsoft.extensions.configuration.commandline\2.1.1\microsoft.extensions.configuration.commandline.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.commandline\2.1.1\microsoft.extensions.configuration.commandline.nuspec +microsoft.extensions.configuration.environmentvariables\2.1.1\.signature.p7s +microsoft.extensions.configuration.environmentvariables\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +microsoft.extensions.configuration.environmentvariables\2.1.1\microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg +microsoft.extensions.configuration.environmentvariables\2.1.1\microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.environmentvariables\2.1.1\microsoft.extensions.configuration.environmentvariables.nuspec +microsoft.extensions.configuration.fileextensions\2.1.1\.signature.p7s +microsoft.extensions.configuration.fileextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll +microsoft.extensions.configuration.fileextensions\2.1.1\microsoft.extensions.configuration.fileextensions.2.1.1.nupkg +microsoft.extensions.configuration.fileextensions\2.1.1\microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.fileextensions\2.1.1\microsoft.extensions.configuration.fileextensions.nuspec +microsoft.extensions.configuration.ini\2.1.1\.signature.p7s +microsoft.extensions.configuration.ini\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Ini.dll +microsoft.extensions.configuration.ini\2.1.1\microsoft.extensions.configuration.ini.2.1.1.nupkg +microsoft.extensions.configuration.ini\2.1.1\microsoft.extensions.configuration.ini.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.ini\2.1.1\microsoft.extensions.configuration.ini.nuspec +microsoft.extensions.configuration.json\2.1.1\.signature.p7s +microsoft.extensions.configuration.json\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Json.dll +microsoft.extensions.configuration.json\2.1.1\microsoft.extensions.configuration.json.2.1.1.nupkg +microsoft.extensions.configuration.json\2.1.1\microsoft.extensions.configuration.json.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.json\2.1.1\microsoft.extensions.configuration.json.nuspec +microsoft.extensions.configuration.keyperfile\2.1.1\.signature.p7s +microsoft.extensions.configuration.keyperfile\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.KeyPerFile.dll +microsoft.extensions.configuration.keyperfile\2.1.1\microsoft.extensions.configuration.keyperfile.2.1.1.nupkg +microsoft.extensions.configuration.keyperfile\2.1.1\microsoft.extensions.configuration.keyperfile.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.keyperfile\2.1.1\microsoft.extensions.configuration.keyperfile.nuspec +microsoft.extensions.configuration.usersecrets\2.1.1\.signature.p7s +microsoft.extensions.configuration.usersecrets\2.1.1\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props +microsoft.extensions.configuration.usersecrets\2.1.1\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets +microsoft.extensions.configuration.usersecrets\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll +microsoft.extensions.configuration.usersecrets\2.1.1\microsoft.extensions.configuration.usersecrets.2.1.1.nupkg +microsoft.extensions.configuration.usersecrets\2.1.1\microsoft.extensions.configuration.usersecrets.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.usersecrets\2.1.1\microsoft.extensions.configuration.usersecrets.nuspec +microsoft.extensions.configuration.xml\2.1.1\.signature.p7s +microsoft.extensions.configuration.xml\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Xml.dll +microsoft.extensions.configuration.xml\2.1.1\microsoft.extensions.configuration.xml.2.1.1.nupkg +microsoft.extensions.configuration.xml\2.1.1\microsoft.extensions.configuration.xml.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.xml\2.1.1\microsoft.extensions.configuration.xml.nuspec +microsoft.extensions.configuration\2.1.1\.signature.p7s +microsoft.extensions.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll +microsoft.extensions.configuration\2.1.1\microsoft.extensions.configuration.2.1.1.nupkg +microsoft.extensions.configuration\2.1.1\microsoft.extensions.configuration.2.1.1.nupkg.sha512 +microsoft.extensions.configuration\2.1.1\microsoft.extensions.configuration.nuspec +microsoft.extensions.dependencyinjection.abstractions\2.1.1\.signature.p7s +microsoft.extensions.dependencyinjection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +microsoft.extensions.dependencyinjection.abstractions\2.1.1\microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg +microsoft.extensions.dependencyinjection.abstractions\2.1.1\microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.dependencyinjection.abstractions\2.1.1\microsoft.extensions.dependencyinjection.abstractions.nuspec +microsoft.extensions.dependencyinjection\2.1.1\.signature.p7s +microsoft.extensions.dependencyinjection\2.1.1\lib\net461\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\lib\netcoreapp2.0\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\microsoft.extensions.dependencyinjection.2.1.1.nupkg +microsoft.extensions.dependencyinjection\2.1.1\microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512 +microsoft.extensions.dependencyinjection\2.1.1\microsoft.extensions.dependencyinjection.nuspec +microsoft.extensions.dependencymodel\2.1.0\.signature.p7s +microsoft.extensions.dependencymodel\2.1.0\lib\net451\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\lib\netstandard1.3\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\lib\netstandard1.6\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\LICENSE.TXT +microsoft.extensions.dependencymodel\2.1.0\microsoft.extensions.dependencymodel.2.1.0.nupkg +microsoft.extensions.dependencymodel\2.1.0\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512 +microsoft.extensions.dependencymodel\2.1.0\microsoft.extensions.dependencymodel.nuspec +microsoft.extensions.dependencymodel\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.extensions.diagnosticadapter\2.1.0\.signature.p7s +microsoft.extensions.diagnosticadapter\2.1.0\lib\net461\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\lib\netcoreapp2.0\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\lib\netstandard2.0\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\microsoft.extensions.diagnosticadapter.2.1.0.nupkg +microsoft.extensions.diagnosticadapter\2.1.0\microsoft.extensions.diagnosticadapter.2.1.0.nupkg.sha512 +microsoft.extensions.diagnosticadapter\2.1.0\microsoft.extensions.diagnosticadapter.nuspec +microsoft.extensions.fileproviders.abstractions\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Abstractions.dll +microsoft.extensions.fileproviders.abstractions\2.1.1\microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg +microsoft.extensions.fileproviders.abstractions\2.1.1\microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.abstractions\2.1.1\microsoft.extensions.fileproviders.abstractions.nuspec +microsoft.extensions.fileproviders.composite\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.composite\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll +microsoft.extensions.fileproviders.composite\2.1.1\microsoft.extensions.fileproviders.composite.2.1.1.nupkg +microsoft.extensions.fileproviders.composite\2.1.1\microsoft.extensions.fileproviders.composite.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.composite\2.1.1\microsoft.extensions.fileproviders.composite.nuspec +microsoft.extensions.fileproviders.embedded\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.embedded\2.1.1\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.props +microsoft.extensions.fileproviders.embedded\2.1.1\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets +microsoft.extensions.fileproviders.embedded\2.1.1\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.props +microsoft.extensions.fileproviders.embedded\2.1.1\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.targets +microsoft.extensions.fileproviders.embedded\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.dll +microsoft.extensions.fileproviders.embedded\2.1.1\microsoft.extensions.fileproviders.embedded.2.1.1.nupkg +microsoft.extensions.fileproviders.embedded\2.1.1\microsoft.extensions.fileproviders.embedded.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.embedded\2.1.1\microsoft.extensions.fileproviders.embedded.nuspec +microsoft.extensions.fileproviders.embedded\2.1.1\tasks\net461\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll +microsoft.extensions.fileproviders.embedded\2.1.1\tasks\netstandard1.5\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll +microsoft.extensions.fileproviders.physical\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.physical\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Physical.dll +microsoft.extensions.fileproviders.physical\2.1.1\microsoft.extensions.fileproviders.physical.2.1.1.nupkg +microsoft.extensions.fileproviders.physical\2.1.1\microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.physical\2.1.1\microsoft.extensions.fileproviders.physical.nuspec +microsoft.extensions.filesystemglobbing\2.1.1\.signature.p7s +microsoft.extensions.filesystemglobbing\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileSystemGlobbing.dll +microsoft.extensions.filesystemglobbing\2.1.1\microsoft.extensions.filesystemglobbing.2.1.1.nupkg +microsoft.extensions.filesystemglobbing\2.1.1\microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512 +microsoft.extensions.filesystemglobbing\2.1.1\microsoft.extensions.filesystemglobbing.nuspec +microsoft.extensions.hosting.abstractions\2.1.1\.signature.p7s +microsoft.extensions.hosting.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.Abstractions.dll +microsoft.extensions.hosting.abstractions\2.1.1\microsoft.extensions.hosting.abstractions.2.1.1.nupkg +microsoft.extensions.hosting.abstractions\2.1.1\microsoft.extensions.hosting.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.hosting.abstractions\2.1.1\microsoft.extensions.hosting.abstractions.nuspec +microsoft.extensions.hosting\2.1.1\.signature.p7s +microsoft.extensions.hosting\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.dll +microsoft.extensions.hosting\2.1.1\microsoft.extensions.hosting.2.1.1.nupkg +microsoft.extensions.hosting\2.1.1\microsoft.extensions.hosting.2.1.1.nupkg.sha512 +microsoft.extensions.hosting\2.1.1\microsoft.extensions.hosting.nuspec +microsoft.extensions.http\2.1.1\.signature.p7s +microsoft.extensions.http\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Http.dll +microsoft.extensions.http\2.1.1\microsoft.extensions.http.2.1.1.nupkg +microsoft.extensions.http\2.1.1\microsoft.extensions.http.2.1.1.nupkg.sha512 +microsoft.extensions.http\2.1.1\microsoft.extensions.http.nuspec +microsoft.extensions.identity.core\2.1.1\.signature.p7s +microsoft.extensions.identity.core\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Core.dll +microsoft.extensions.identity.core\2.1.1\microsoft.extensions.identity.core.2.1.1.nupkg +microsoft.extensions.identity.core\2.1.1\microsoft.extensions.identity.core.2.1.1.nupkg.sha512 +microsoft.extensions.identity.core\2.1.1\microsoft.extensions.identity.core.nuspec +microsoft.extensions.identity.stores\2.1.1\.signature.p7s +microsoft.extensions.identity.stores\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll +microsoft.extensions.identity.stores\2.1.1\microsoft.extensions.identity.stores.2.1.1.nupkg +microsoft.extensions.identity.stores\2.1.1\microsoft.extensions.identity.stores.2.1.1.nupkg.sha512 +microsoft.extensions.identity.stores\2.1.1\microsoft.extensions.identity.stores.nuspec +microsoft.extensions.localization.abstractions\2.1.1\.signature.p7s +microsoft.extensions.localization.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.Abstractions.dll +microsoft.extensions.localization.abstractions\2.1.1\microsoft.extensions.localization.abstractions.2.1.1.nupkg +microsoft.extensions.localization.abstractions\2.1.1\microsoft.extensions.localization.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.localization.abstractions\2.1.1\microsoft.extensions.localization.abstractions.nuspec +microsoft.extensions.localization\2.1.1\.signature.p7s +microsoft.extensions.localization\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.dll +microsoft.extensions.localization\2.1.1\microsoft.extensions.localization.2.1.1.nupkg +microsoft.extensions.localization\2.1.1\microsoft.extensions.localization.2.1.1.nupkg.sha512 +microsoft.extensions.localization\2.1.1\microsoft.extensions.localization.nuspec +microsoft.extensions.logging.abstractions\2.1.1\.signature.p7s +microsoft.extensions.logging.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll +microsoft.extensions.logging.abstractions\2.1.1\microsoft.extensions.logging.abstractions.2.1.1.nupkg +microsoft.extensions.logging.abstractions\2.1.1\microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.logging.abstractions\2.1.1\microsoft.extensions.logging.abstractions.nuspec +microsoft.extensions.logging.azureappservices\2.1.1\.signature.p7s +microsoft.extensions.logging.azureappservices\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.AzureAppServices.dll +microsoft.extensions.logging.azureappservices\2.1.1\microsoft.extensions.logging.azureappservices.2.1.1.nupkg +microsoft.extensions.logging.azureappservices\2.1.1\microsoft.extensions.logging.azureappservices.2.1.1.nupkg.sha512 +microsoft.extensions.logging.azureappservices\2.1.1\microsoft.extensions.logging.azureappservices.nuspec +microsoft.extensions.logging.configuration\2.1.1\.signature.p7s +microsoft.extensions.logging.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll +microsoft.extensions.logging.configuration\2.1.1\microsoft.extensions.logging.configuration.2.1.1.nupkg +microsoft.extensions.logging.configuration\2.1.1\microsoft.extensions.logging.configuration.2.1.1.nupkg.sha512 +microsoft.extensions.logging.configuration\2.1.1\microsoft.extensions.logging.configuration.nuspec +microsoft.extensions.logging.console\2.1.1\.signature.p7s +microsoft.extensions.logging.console\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Console.dll +microsoft.extensions.logging.console\2.1.1\microsoft.extensions.logging.console.2.1.1.nupkg +microsoft.extensions.logging.console\2.1.1\microsoft.extensions.logging.console.2.1.1.nupkg.sha512 +microsoft.extensions.logging.console\2.1.1\microsoft.extensions.logging.console.nuspec +microsoft.extensions.logging.debug\2.1.1\.signature.p7s +microsoft.extensions.logging.debug\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Debug.dll +microsoft.extensions.logging.debug\2.1.1\microsoft.extensions.logging.debug.2.1.1.nupkg +microsoft.extensions.logging.debug\2.1.1\microsoft.extensions.logging.debug.2.1.1.nupkg.sha512 +microsoft.extensions.logging.debug\2.1.1\microsoft.extensions.logging.debug.nuspec +microsoft.extensions.logging.eventsource\2.1.1\.signature.p7s +microsoft.extensions.logging.eventsource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.EventSource.dll +microsoft.extensions.logging.eventsource\2.1.1\microsoft.extensions.logging.eventsource.2.1.1.nupkg +microsoft.extensions.logging.eventsource\2.1.1\microsoft.extensions.logging.eventsource.2.1.1.nupkg.sha512 +microsoft.extensions.logging.eventsource\2.1.1\microsoft.extensions.logging.eventsource.nuspec +microsoft.extensions.logging.tracesource\2.1.1\.signature.p7s +microsoft.extensions.logging.tracesource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.TraceSource.dll +microsoft.extensions.logging.tracesource\2.1.1\microsoft.extensions.logging.tracesource.2.1.1.nupkg +microsoft.extensions.logging.tracesource\2.1.1\microsoft.extensions.logging.tracesource.2.1.1.nupkg.sha512 +microsoft.extensions.logging.tracesource\2.1.1\microsoft.extensions.logging.tracesource.nuspec +microsoft.extensions.logging\2.1.1\.signature.p7s +microsoft.extensions.logging\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.dll +microsoft.extensions.logging\2.1.1\microsoft.extensions.logging.2.1.1.nupkg +microsoft.extensions.logging\2.1.1\microsoft.extensions.logging.2.1.1.nupkg.sha512 +microsoft.extensions.logging\2.1.1\microsoft.extensions.logging.nuspec +microsoft.extensions.objectpool\2.1.1\.signature.p7s +microsoft.extensions.objectpool\2.1.1\lib\netstandard2.0\Microsoft.Extensions.ObjectPool.dll +microsoft.extensions.objectpool\2.1.1\microsoft.extensions.objectpool.2.1.1.nupkg +microsoft.extensions.objectpool\2.1.1\microsoft.extensions.objectpool.2.1.1.nupkg.sha512 +microsoft.extensions.objectpool\2.1.1\microsoft.extensions.objectpool.nuspec +microsoft.extensions.options.configurationextensions\2.1.1\.signature.p7s +microsoft.extensions.options.configurationextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +microsoft.extensions.options.configurationextensions\2.1.1\microsoft.extensions.options.configurationextensions.2.1.1.nupkg +microsoft.extensions.options.configurationextensions\2.1.1\microsoft.extensions.options.configurationextensions.2.1.1.nupkg.sha512 +microsoft.extensions.options.configurationextensions\2.1.1\microsoft.extensions.options.configurationextensions.nuspec +microsoft.extensions.options\2.1.1\.signature.p7s +microsoft.extensions.options\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.dll +microsoft.extensions.options\2.1.1\microsoft.extensions.options.2.1.1.nupkg +microsoft.extensions.options\2.1.1\microsoft.extensions.options.2.1.1.nupkg.sha512 +microsoft.extensions.options\2.1.1\microsoft.extensions.options.nuspec +microsoft.extensions.platformabstractions\1.1.0\lib\net451\Microsoft.Extensions.PlatformAbstractions.dll +microsoft.extensions.platformabstractions\1.1.0\lib\netstandard1.3\Microsoft.Extensions.PlatformAbstractions.dll +microsoft.extensions.platformabstractions\1.1.0\microsoft.extensions.platformabstractions.1.1.0.nupkg +microsoft.extensions.platformabstractions\1.1.0\microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512 +microsoft.extensions.platformabstractions\1.1.0\microsoft.extensions.platformabstractions.nuspec +microsoft.extensions.primitives\2.1.1\.signature.p7s +microsoft.extensions.primitives\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll +microsoft.extensions.primitives\2.1.1\microsoft.extensions.primitives.2.1.1.nupkg +microsoft.extensions.primitives\2.1.1\microsoft.extensions.primitives.2.1.1.nupkg.sha512 +microsoft.extensions.primitives\2.1.1\microsoft.extensions.primitives.nuspec +microsoft.extensions.webencoders\2.1.1\.signature.p7s +microsoft.extensions.webencoders\2.1.1\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll +microsoft.extensions.webencoders\2.1.1\microsoft.extensions.webencoders.2.1.1.nupkg +microsoft.extensions.webencoders\2.1.1\microsoft.extensions.webencoders.2.1.1.nupkg.sha512 +microsoft.extensions.webencoders\2.1.1\microsoft.extensions.webencoders.nuspec +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\MonoAndroid10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\MonoAndroid10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\microsoft.identitymodel.clients.activedirectory.3.14.2.nupkg +microsoft.identitymodel.clients.activedirectory\3.14.2\microsoft.identitymodel.clients.activedirectory.3.14.2.nupkg.sha512 +microsoft.identitymodel.clients.activedirectory\3.14.2\microsoft.identitymodel.clients.activedirectory.nuspec +microsoft.identitymodel.logging\5.2.0\lib\net45\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\lib\net451\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\microsoft.identitymodel.logging.5.2.0.nupkg +microsoft.identitymodel.logging\5.2.0\microsoft.identitymodel.logging.5.2.0.nupkg.sha512 +microsoft.identitymodel.logging\5.2.0\microsoft.identitymodel.logging.nuspec +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\microsoft.identitymodel.protocols.openidconnect.5.2.0.nupkg +microsoft.identitymodel.protocols.openidconnect\5.2.0\microsoft.identitymodel.protocols.openidconnect.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols.openidconnect\5.2.0\microsoft.identitymodel.protocols.openidconnect.nuspec +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\microsoft.identitymodel.protocols.wsfederation.5.2.0.nupkg +microsoft.identitymodel.protocols.wsfederation\5.2.0\microsoft.identitymodel.protocols.wsfederation.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols.wsfederation\5.2.0\microsoft.identitymodel.protocols.wsfederation.nuspec +microsoft.identitymodel.protocols\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\microsoft.identitymodel.protocols.5.2.0.nupkg +microsoft.identitymodel.protocols\5.2.0\microsoft.identitymodel.protocols.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols\5.2.0\microsoft.identitymodel.protocols.nuspec +microsoft.identitymodel.tokens.saml\5.2.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\microsoft.identitymodel.tokens.saml.5.2.0.nupkg +microsoft.identitymodel.tokens.saml\5.2.0\microsoft.identitymodel.tokens.saml.5.2.0.nupkg.sha512 +microsoft.identitymodel.tokens.saml\5.2.0\microsoft.identitymodel.tokens.saml.nuspec +microsoft.identitymodel.tokens\5.2.0\lib\net45\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\lib\net451\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\microsoft.identitymodel.tokens.5.2.0.nupkg +microsoft.identitymodel.tokens\5.2.0\microsoft.identitymodel.tokens.5.2.0.nupkg.sha512 +microsoft.identitymodel.tokens\5.2.0\microsoft.identitymodel.tokens.nuspec +microsoft.identitymodel.xml\5.2.0\lib\net45\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\lib\net451\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\microsoft.identitymodel.xml.5.2.0.nupkg +microsoft.identitymodel.xml\5.2.0\microsoft.identitymodel.xml.5.2.0.nupkg.sha512 +microsoft.identitymodel.xml\5.2.0\microsoft.identitymodel.xml.nuspec +microsoft.net.http.headers\2.1.1\.signature.p7s +microsoft.net.http.headers\2.1.1\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll +microsoft.net.http.headers\2.1.1\microsoft.net.http.headers.2.1.1.nupkg +microsoft.net.http.headers\2.1.1\microsoft.net.http.headers.2.1.1.nupkg.sha512 +microsoft.net.http.headers\2.1.1\microsoft.net.http.headers.nuspec +microsoft.netcore.app\2.1.1\.signature.p7s +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.props +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.targets +microsoft.netcore.app\2.1.1\LICENSE.TXT +microsoft.netcore.app\2.1.1\microsoft.netcore.app.2.1.1.nupkg +microsoft.netcore.app\2.1.1\microsoft.netcore.app.2.1.1.nupkg.sha512 +microsoft.netcore.app\2.1.1\microsoft.netcore.app.nuspec +microsoft.netcore.app\2.1.1\Microsoft.NETCore.App.versions.txt +microsoft.netcore.app\2.1.1\ref\netcoreapp\_._ +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.CSharp.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.VisualBasic.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\mscorlib.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\netstandard.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.AppContext.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Buffers.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Concurrent.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Immutable.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.NonGeneric.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Specialized.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Configuration.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Console.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Core.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Data.Common.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Data.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Debug.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Process.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Tools.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Drawing.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Drawing.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Dynamic.Runtime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.Calendars.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Pipes.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Expressions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Parallel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Queryable.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Memory.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Http.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.HttpListener.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Mail.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.NameResolution.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.NetworkInformation.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Ping.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Requests.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Security.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.ServicePoint.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Sockets.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebClient.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebProxy.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebSockets.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Numerics.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Numerics.Vectors.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ObjectModel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Metadata.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.Reader.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.ResourceManager.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.Writer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Handles.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Loader.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Numerics.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Claims.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Principal.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.SecureString.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ServiceModel.Web.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ServiceProcess.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.Encoding.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.RegularExpressions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Overlapped.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Thread.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.ThreadPool.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Timer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Transactions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Transactions.Local.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ValueTuple.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Web.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Web.HttpUtility.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Windows.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.Linq.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.Serialization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XmlDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XPath.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\WindowsBase.dll +microsoft.netcore.app\2.1.1\runtime.json +microsoft.netcore.app\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnetapphost\2.1.1\.signature.p7s +microsoft.netcore.dotnetapphost\2.1.1\LICENSE.TXT +microsoft.netcore.dotnetapphost\2.1.1\microsoft.netcore.dotnetapphost.2.1.1.nupkg +microsoft.netcore.dotnetapphost\2.1.1\microsoft.netcore.dotnetapphost.2.1.1.nupkg.sha512 +microsoft.netcore.dotnetapphost\2.1.1\microsoft.netcore.dotnetapphost.nuspec +microsoft.netcore.dotnetapphost\2.1.1\runtime.json +microsoft.netcore.dotnetapphost\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnethostpolicy\2.1.1\.signature.p7s +microsoft.netcore.dotnethostpolicy\2.1.1\LICENSE.TXT +microsoft.netcore.dotnethostpolicy\2.1.1\microsoft.netcore.dotnethostpolicy.2.1.1.nupkg +microsoft.netcore.dotnethostpolicy\2.1.1\microsoft.netcore.dotnethostpolicy.2.1.1.nupkg.sha512 +microsoft.netcore.dotnethostpolicy\2.1.1\microsoft.netcore.dotnethostpolicy.nuspec +microsoft.netcore.dotnethostpolicy\2.1.1\runtime.json +microsoft.netcore.dotnethostpolicy\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnethostresolver\2.1.1\.signature.p7s +microsoft.netcore.dotnethostresolver\2.1.1\LICENSE.TXT +microsoft.netcore.dotnethostresolver\2.1.1\microsoft.netcore.dotnethostresolver.2.1.1.nupkg +microsoft.netcore.dotnethostresolver\2.1.1\microsoft.netcore.dotnethostresolver.2.1.1.nupkg.sha512 +microsoft.netcore.dotnethostresolver\2.1.1\microsoft.netcore.dotnethostresolver.nuspec +microsoft.netcore.dotnethostresolver\2.1.1\runtime.json +microsoft.netcore.dotnethostresolver\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\1.0.1\dotnet_library_license.txt +microsoft.netcore.platforms\1.0.1\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.0.1\microsoft.netcore.platforms.1.0.1.nupkg +microsoft.netcore.platforms\1.0.1\microsoft.netcore.platforms.1.0.1.nupkg.sha512 +microsoft.netcore.platforms\1.0.1\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.0.1\runtime.json +microsoft.netcore.platforms\1.0.1\ThirdPartyNotices.txt +microsoft.netcore.platforms\1.0.2\dotnet_library_license.txt +microsoft.netcore.platforms\1.0.2\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.0.2\microsoft.netcore.platforms.1.0.2.nupkg +microsoft.netcore.platforms\1.0.2\microsoft.netcore.platforms.1.0.2.nupkg.sha512 +microsoft.netcore.platforms\1.0.2\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.0.2\runtime.json +microsoft.netcore.platforms\1.0.2\ThirdPartyNotices.txt +microsoft.netcore.platforms\1.1.0\dotnet_library_license.txt +microsoft.netcore.platforms\1.1.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.1.0\microsoft.netcore.platforms.1.1.0.nupkg +microsoft.netcore.platforms\1.1.0\microsoft.netcore.platforms.1.1.0.nupkg.sha512 +microsoft.netcore.platforms\1.1.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.1.0\runtime.json +microsoft.netcore.platforms\1.1.0\ThirdPartyNotices.txt +microsoft.netcore.platforms\2.0.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\2.0.0\LICENSE.TXT +microsoft.netcore.platforms\2.0.0\microsoft.netcore.platforms.2.0.0.nupkg +microsoft.netcore.platforms\2.0.0\microsoft.netcore.platforms.2.0.0.nupkg.sha512 +microsoft.netcore.platforms\2.0.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\2.0.0\runtime.json +microsoft.netcore.platforms\2.0.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\2.0.0\useSharedDesignerContext.txt +microsoft.netcore.platforms\2.0.0\version.txt +microsoft.netcore.platforms\2.1.0\.signature.p7s +microsoft.netcore.platforms\2.1.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\2.1.0\LICENSE.TXT +microsoft.netcore.platforms\2.1.0\microsoft.netcore.platforms.2.1.0.nupkg +microsoft.netcore.platforms\2.1.0\microsoft.netcore.platforms.2.1.0.nupkg.sha512 +microsoft.netcore.platforms\2.1.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\2.1.0\runtime.json +microsoft.netcore.platforms\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\2.1.0\useSharedDesignerContext.txt +microsoft.netcore.platforms\2.1.0\version.txt +microsoft.netcore.targets\1.0.1\dotnet_library_license.txt +microsoft.netcore.targets\1.0.1\lib\netstandard1.0\_._ +microsoft.netcore.targets\1.0.1\microsoft.netcore.targets.1.0.1.nupkg +microsoft.netcore.targets\1.0.1\microsoft.netcore.targets.1.0.1.nupkg.sha512 +microsoft.netcore.targets\1.0.1\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\1.0.1\runtime.json +microsoft.netcore.targets\1.0.1\ThirdPartyNotices.txt +microsoft.netcore.targets\1.1.0\dotnet_library_license.txt +microsoft.netcore.targets\1.1.0\lib\netstandard1.0\_._ +microsoft.netcore.targets\1.1.0\microsoft.netcore.targets.1.1.0.nupkg +microsoft.netcore.targets\1.1.0\microsoft.netcore.targets.1.1.0.nupkg.sha512 +microsoft.netcore.targets\1.1.0\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\1.1.0\runtime.json +microsoft.netcore.targets\1.1.0\ThirdPartyNotices.txt +microsoft.netcore.targets\2.0.0\lib\netstandard1.0\_._ +microsoft.netcore.targets\2.0.0\LICENSE.TXT +microsoft.netcore.targets\2.0.0\microsoft.netcore.targets.2.0.0.nupkg +microsoft.netcore.targets\2.0.0\microsoft.netcore.targets.2.0.0.nupkg.sha512 +microsoft.netcore.targets\2.0.0\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\2.0.0\runtime.json +microsoft.netcore.targets\2.0.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.targets\2.0.0\useSharedDesignerContext.txt +microsoft.netcore.targets\2.0.0\version.txt +microsoft.rest.clientruntime.azure\3.3.7\lib\net452\Microsoft.Rest.ClientRuntime.Azure.dll +microsoft.rest.clientruntime.azure\3.3.7\lib\net452\Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +microsoft.rest.clientruntime.azure\3.3.7\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.Azure.dll +microsoft.rest.clientruntime.azure\3.3.7\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +microsoft.rest.clientruntime.azure\3.3.7\microsoft.rest.clientruntime.azure.3.3.7.nupkg +microsoft.rest.clientruntime.azure\3.3.7\microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512 +microsoft.rest.clientruntime.azure\3.3.7\microsoft.rest.clientruntime.azure.nuspec +microsoft.rest.clientruntime\2.3.8\lib\net452\Microsoft.Rest.ClientRuntime.dll +microsoft.rest.clientruntime\2.3.8\lib\net452\Microsoft.Rest.ClientRuntime.runtimeconfig.json +microsoft.rest.clientruntime\2.3.8\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.dll +microsoft.rest.clientruntime\2.3.8\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.runtimeconfig.json +microsoft.rest.clientruntime\2.3.8\microsoft.rest.clientruntime.2.3.8.nupkg +microsoft.rest.clientruntime\2.3.8\microsoft.rest.clientruntime.2.3.8.nupkg.sha512 +microsoft.rest.clientruntime\2.3.8\microsoft.rest.clientruntime.nuspec +microsoft.visualstudio.web.browserlink\2.1.1\.signature.p7s +microsoft.visualstudio.web.browserlink\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.BrowserLink.dll +microsoft.visualstudio.web.browserlink\2.1.1\microsoft.visualstudio.web.browserlink.2.1.1.nupkg +microsoft.visualstudio.web.browserlink\2.1.1\microsoft.visualstudio.web.browserlink.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.browserlink\2.1.1\microsoft.visualstudio.web.browserlink.nuspec +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\microsoft.visualstudio.web.codegeneration.contracts.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\microsoft.visualstudio.web.codegeneration.contracts.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\microsoft.visualstudio.web.codegeneration.contracts.nuspec +microsoft.visualstudio.web.codegeneration.core\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.core\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +microsoft.visualstudio.web.codegeneration.core\2.1.1\microsoft.visualstudio.web.codegeneration.core.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.core\2.1.1\microsoft.visualstudio.web.codegeneration.core.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.core\2.1.1\microsoft.visualstudio.web.codegeneration.core.nuspec +microsoft.visualstudio.web.codegeneration.design\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll +microsoft.visualstudio.web.codegeneration.design\2.1.1\microsoft.visualstudio.web.codegeneration.design.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.design\2.1.1\microsoft.visualstudio.web.codegeneration.design.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.design\2.1.1\microsoft.visualstudio.web.codegeneration.design.nuspec +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\Templates\DbContext\NewLocalDbContext.cshtml +microsoft.visualstudio.web.codegeneration.templating\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.templating\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +microsoft.visualstudio.web.codegeneration.templating\2.1.1\microsoft.visualstudio.web.codegeneration.templating.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.templating\2.1.1\microsoft.visualstudio.web.codegeneration.templating.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.templating\2.1.1\microsoft.visualstudio.web.codegeneration.templating.nuspec +microsoft.visualstudio.web.codegeneration.utils\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.utils\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +microsoft.visualstudio.web.codegeneration.utils\2.1.1\microsoft.visualstudio.web.codegeneration.utils.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration.utils\2.1.1\microsoft.visualstudio.web.codegeneration.utils.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.utils\2.1.1\microsoft.visualstudio.web.codegeneration.utils.nuspec +microsoft.visualstudio.web.codegeneration\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll +microsoft.visualstudio.web.codegeneration\2.1.1\microsoft.visualstudio.web.codegeneration.2.1.1.nupkg +microsoft.visualstudio.web.codegeneration\2.1.1\microsoft.visualstudio.web.codegeneration.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration\2.1.1\microsoft.visualstudio.web.codegeneration.nuspec +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\area.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\controller.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\identity.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\razorpage.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\view.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\lib\netstandard2.0\identitygeneratorfilesconfig.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\microsoft.visualstudio.web.codegenerators.mvc.2.1.1.nupkg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\microsoft.visualstudio.web.codegenerators.mvc.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\microsoft.visualstudio.web.codegenerators.mvc.nuspec +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiControllerWithActions.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiControllerWithContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiEmptyController.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ControllerWithActions.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\EmptyController.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\MvcControllerWithContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\_LoginPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Data\ApplicationDbContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Data\ApplicationUser.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\IdentityHostingStartup.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ViewStart.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Lockout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Login.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Login.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Logout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Register.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Register.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Error.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Error.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\ScaffoldingReadme.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._CookieConsentPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._ViewStart.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\css\site.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\css\site.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\favicon.ico +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner1.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner2.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner3.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\js\site.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\js\site.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2 +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\LICENSE +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\MvcLayout\_Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\MvcLayout\Error.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Create.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\CreatePageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Delete.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\DeletePageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Details.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\DetailsPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Edit.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\EditPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Empty.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\EmptyPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\List.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\ListPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Startup\ReadMe.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Startup\Startup.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Create.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Delete.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Details.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Edit.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Empty.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\List.cshtml +microsoft.win32.primitives\4.0.1\dotnet_library_license.txt +microsoft.win32.primitives\4.0.1\lib\MonoAndroid10\_._ +microsoft.win32.primitives\4.0.1\lib\MonoTouch10\_._ +microsoft.win32.primitives\4.0.1\lib\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\lib\xamarinios10\_._ +microsoft.win32.primitives\4.0.1\lib\xamarinmac20\_._ +microsoft.win32.primitives\4.0.1\lib\xamarintvos10\_._ +microsoft.win32.primitives\4.0.1\lib\xamarinwatchos10\_._ +microsoft.win32.primitives\4.0.1\microsoft.win32.primitives.4.0.1.nupkg +microsoft.win32.primitives\4.0.1\microsoft.win32.primitives.4.0.1.nupkg.sha512 +microsoft.win32.primitives\4.0.1\microsoft.win32.primitives.nuspec +microsoft.win32.primitives\4.0.1\ref\MonoAndroid10\_._ +microsoft.win32.primitives\4.0.1\ref\MonoTouch10\_._ +microsoft.win32.primitives\4.0.1\ref\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\ref\netstandard1.3\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\ref\xamarinios10\_._ +microsoft.win32.primitives\4.0.1\ref\xamarinmac20\_._ +microsoft.win32.primitives\4.0.1\ref\xamarintvos10\_._ +microsoft.win32.primitives\4.0.1\ref\xamarinwatchos10\_._ +microsoft.win32.primitives\4.0.1\ThirdPartyNotices.txt +microsoft.win32.primitives\4.3.0\dotnet_library_license.txt +microsoft.win32.primitives\4.3.0\lib\MonoAndroid10\_._ +microsoft.win32.primitives\4.3.0\lib\MonoTouch10\_._ +microsoft.win32.primitives\4.3.0\lib\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\lib\xamarinios10\_._ +microsoft.win32.primitives\4.3.0\lib\xamarinmac20\_._ +microsoft.win32.primitives\4.3.0\lib\xamarintvos10\_._ +microsoft.win32.primitives\4.3.0\lib\xamarinwatchos10\_._ +microsoft.win32.primitives\4.3.0\microsoft.win32.primitives.4.3.0.nupkg +microsoft.win32.primitives\4.3.0\microsoft.win32.primitives.4.3.0.nupkg.sha512 +microsoft.win32.primitives\4.3.0\microsoft.win32.primitives.nuspec +microsoft.win32.primitives\4.3.0\ref\MonoAndroid10\_._ +microsoft.win32.primitives\4.3.0\ref\MonoTouch10\_._ +microsoft.win32.primitives\4.3.0\ref\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\ref\netstandard1.3\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\ref\xamarinios10\_._ +microsoft.win32.primitives\4.3.0\ref\xamarinmac20\_._ +microsoft.win32.primitives\4.3.0\ref\xamarintvos10\_._ +microsoft.win32.primitives\4.3.0\ref\xamarinwatchos10\_._ +microsoft.win32.primitives\4.3.0\ThirdPartyNotices.txt +microsoft.win32.registry\4.3.0\dotnet_library_license.txt +microsoft.win32.registry\4.3.0\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\microsoft.win32.registry.4.3.0.nupkg +microsoft.win32.registry\4.3.0\microsoft.win32.registry.4.3.0.nupkg.sha512 +microsoft.win32.registry\4.3.0\microsoft.win32.registry.nuspec +microsoft.win32.registry\4.3.0\ref\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\ref\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\unix\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\win\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\win\lib\netcore50\_._ +microsoft.win32.registry\4.3.0\runtimes\win\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\ThirdPartyNotices.txt +microsoft.win32.registry\4.5.0\.signature.p7s +microsoft.win32.registry\4.5.0\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\LICENSE.TXT +microsoft.win32.registry\4.5.0\microsoft.win32.registry.4.5.0.nupkg +microsoft.win32.registry\4.5.0\microsoft.win32.registry.4.5.0.nupkg.sha512 +microsoft.win32.registry\4.5.0\microsoft.win32.registry.nuspec +microsoft.win32.registry\4.5.0\ref\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\unix\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\THIRD-PARTY-NOTICES.TXT +microsoft.win32.registry\4.5.0\useSharedDesignerContext.txt +microsoft.win32.registry\4.5.0\version.txt +netstandard.library\1.6.0\dotnet_library_license.txt +netstandard.library\1.6.0\netstandard.library.1.6.0.nupkg +netstandard.library\1.6.0\netstandard.library.1.6.0.nupkg.sha512 +netstandard.library\1.6.0\netstandard.library.nuspec +netstandard.library\1.6.0\ThirdPartyNotices.txt +netstandard.library\1.6.1\dotnet_library_license.txt +netstandard.library\1.6.1\netstandard.library.1.6.1.nupkg +netstandard.library\1.6.1\netstandard.library.1.6.1.nupkg.sha512 +netstandard.library\1.6.1\netstandard.library.nuspec +netstandard.library\1.6.1\ThirdPartyNotices.txt +netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets +netstandard.library\2.0.3\build\netstandard2.0\ref\Microsoft.Win32.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\mscorlib.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\netstandard.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.AppContext.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.Concurrent.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.NonGeneric.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.Specialized.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.Composition.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.EventBasedAsync.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.TypeConverter.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Console.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Core.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Data.Common.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Data.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Contracts.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Debug.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.FileVersionInfo.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Process.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.StackTrace.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.TextWriterTraceListener.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Tools.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.TraceSource.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Tracing.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Drawing.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Drawing.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Dynamic.Runtime.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.Calendars.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.FileSystem.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.ZipFile.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.DriveInfo.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.Watcher.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.IsolatedStorage.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.MemoryMappedFiles.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Pipes.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.UnmanagedMemoryStream.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Expressions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Parallel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Queryable.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Http.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.NameResolution.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.NetworkInformation.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Ping.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Requests.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Security.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Sockets.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebHeaderCollection.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebSockets.Client.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebSockets.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Numerics.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ObjectModel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.Reader.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.ResourceManager.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.Writer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.CompilerServices.VisualC.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Handles.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.InteropServices.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Numerics.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Formatters.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Json.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Xml.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Claims.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Algorithms.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Csp.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Encoding.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.X509Certificates.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Principal.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.SecureString.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ServiceModel.Web.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.Encoding.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.Encoding.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.RegularExpressions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Overlapped.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Tasks.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Tasks.Parallel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Thread.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.ThreadPool.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Timer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Transactions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ValueTuple.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Web.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Windows.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.Linq.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.ReaderWriter.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.Serialization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XDocument.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XmlDocument.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XmlSerializer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XPath.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XPath.XDocument.dll +netstandard.library\2.0.3\lib\netstandard1.0\_._ +netstandard.library\2.0.3\LICENSE.TXT +netstandard.library\2.0.3\netstandard.library.2.0.3.nupkg +netstandard.library\2.0.3\netstandard.library.2.0.3.nupkg.sha512 +netstandard.library\2.0.3\netstandard.library.nuspec +netstandard.library\2.0.3\THIRD-PARTY-NOTICES.TXT +newtonsoft.json.bson\1.0.1\lib\net45\Newtonsoft.Json.Bson.dll +newtonsoft.json.bson\1.0.1\lib\netstandard1.3\Newtonsoft.Json.Bson.dll +newtonsoft.json.bson\1.0.1\newtonsoft.json.bson.1.0.1.nupkg +newtonsoft.json.bson\1.0.1\newtonsoft.json.bson.1.0.1.nupkg.sha512 +newtonsoft.json.bson\1.0.1\newtonsoft.json.bson.nuspec +newtonsoft.json\10.0.1\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\netstandard1.3\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\newtonsoft.json.10.0.1.nupkg +newtonsoft.json\10.0.1\newtonsoft.json.10.0.1.nupkg.sha512 +newtonsoft.json\10.0.1\newtonsoft.json.nuspec +newtonsoft.json\10.0.1\tools\install.ps1 +newtonsoft.json\11.0.2\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard1.3\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\LICENSE.md +newtonsoft.json\11.0.2\newtonsoft.json.11.0.2.nupkg +newtonsoft.json\11.0.2\newtonsoft.json.11.0.2.nupkg.sha512 +newtonsoft.json\11.0.2\newtonsoft.json.nuspec +newtonsoft.json\9.0.1\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\newtonsoft.json.9.0.1.nupkg +newtonsoft.json\9.0.1\newtonsoft.json.9.0.1.nupkg.sha512 +newtonsoft.json\9.0.1\newtonsoft.json.nuspec +newtonsoft.json\9.0.1\tools\install.ps1 +nuget.frameworks\4.7.0\.signature.p7s +nuget.frameworks\4.7.0\lib\net40\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\lib\net46\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\lib\netstandard1.6\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\nuget.frameworks.4.7.0.nupkg +nuget.frameworks\4.7.0\nuget.frameworks.4.7.0.nupkg.sha512 +nuget.frameworks\4.7.0\nuget.frameworks.nuspec +remotion.linq\2.2.0\lib\net35\Remotion.Linq.dll +remotion.linq\2.2.0\lib\net40\Remotion.Linq.dll +remotion.linq\2.2.0\lib\net45\Remotion.Linq.dll +remotion.linq\2.2.0\lib\netstandard1.0\Remotion.Linq.dll +remotion.linq\2.2.0\lib\portable-net45+win+wpa81+wp80\Remotion.Linq.dll +remotion.linq\2.2.0\remotion.linq.2.2.0.nupkg +remotion.linq\2.2.0\remotion.linq.2.2.0.nupkg.sha512 +remotion.linq\2.2.0\remotion.linq.nuspec +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\debian.8-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\fedora.23-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\fedora.24-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.native.system.data.sqlclient.sni\4.4.0\LICENSE.TXT +runtime.native.system.data.sqlclient.sni\4.4.0\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +runtime.native.system.data.sqlclient.sni\4.4.0\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.native.system.data.sqlclient.sni\4.4.0\runtime.native.system.data.sqlclient.sni.nuspec +runtime.native.system.data.sqlclient.sni\4.4.0\THIRD-PARTY-NOTICES.TXT +runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.native.system.io.compression\4.1.0\dotnet_library_license.txt +runtime.native.system.io.compression\4.1.0\lib\netstandard1.0\_._ +runtime.native.system.io.compression\4.1.0\runtime.native.system.io.compression.4.1.0.nupkg +runtime.native.system.io.compression\4.1.0\runtime.native.system.io.compression.4.1.0.nupkg.sha512 +runtime.native.system.io.compression\4.1.0\runtime.native.system.io.compression.nuspec +runtime.native.system.io.compression\4.1.0\ThirdPartyNotices.txt +runtime.native.system.io.compression\4.3.0\dotnet_library_license.txt +runtime.native.system.io.compression\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.io.compression\4.3.0\runtime.native.system.io.compression.4.3.0.nupkg +runtime.native.system.io.compression\4.3.0\runtime.native.system.io.compression.4.3.0.nupkg.sha512 +runtime.native.system.io.compression\4.3.0\runtime.native.system.io.compression.nuspec +runtime.native.system.io.compression\4.3.0\ThirdPartyNotices.txt +runtime.native.system.net.http\4.0.1\dotnet_library_license.txt +runtime.native.system.net.http\4.0.1\lib\netstandard1.0\_._ +runtime.native.system.net.http\4.0.1\runtime.native.system.net.http.4.0.1.nupkg +runtime.native.system.net.http\4.0.1\runtime.native.system.net.http.4.0.1.nupkg.sha512 +runtime.native.system.net.http\4.0.1\runtime.native.system.net.http.nuspec +runtime.native.system.net.http\4.0.1\ThirdPartyNotices.txt +runtime.native.system.net.http\4.3.0\dotnet_library_license.txt +runtime.native.system.net.http\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.net.http\4.3.0\runtime.native.system.net.http.4.3.0.nupkg +runtime.native.system.net.http\4.3.0\runtime.native.system.net.http.4.3.0.nupkg.sha512 +runtime.native.system.net.http\4.3.0\runtime.native.system.net.http.nuspec +runtime.native.system.net.http\4.3.0\ThirdPartyNotices.txt +runtime.native.system.net.security\4.3.0\dotnet_library_license.txt +runtime.native.system.net.security\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.net.security\4.3.0\runtime.native.system.net.security.4.3.0.nupkg +runtime.native.system.net.security\4.3.0\runtime.native.system.net.security.4.3.0.nupkg.sha512 +runtime.native.system.net.security\4.3.0\runtime.native.system.net.security.nuspec +runtime.native.system.net.security\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography.apple\4.3.0\dotnet_library_license.txt +runtime.native.system.security.cryptography.apple\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography.apple\4.3.0\runtime.native.system.security.cryptography.apple.4.3.0.nupkg +runtime.native.system.security.cryptography.apple\4.3.0\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +runtime.native.system.security.cryptography.apple\4.3.0\runtime.native.system.security.cryptography.apple.nuspec +runtime.native.system.security.cryptography.apple\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.native.system.security.cryptography.openssl\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography.openssl\4.3.0\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.native.system.security.cryptography.openssl\4.3.0\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.native.system.security.cryptography.openssl\4.3.0\runtime.native.system.security.cryptography.openssl.nuspec +runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography\4.0.0\dotnet_library_license.txt +runtime.native.system.security.cryptography\4.0.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography\4.0.0\runtime.native.system.security.cryptography.4.0.0.nupkg +runtime.native.system.security.cryptography\4.0.0\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512 +runtime.native.system.security.cryptography\4.0.0\runtime.native.system.security.cryptography.nuspec +runtime.native.system.security.cryptography\4.0.0\ThirdPartyNotices.txt +runtime.native.system\4.0.0\dotnet_library_license.txt +runtime.native.system\4.0.0\lib\netstandard1.0\_._ +runtime.native.system\4.0.0\runtime.native.system.4.0.0.nupkg +runtime.native.system\4.0.0\runtime.native.system.4.0.0.nupkg.sha512 +runtime.native.system\4.0.0\runtime.native.system.nuspec +runtime.native.system\4.0.0\ThirdPartyNotices.txt +runtime.native.system\4.3.0\dotnet_library_license.txt +runtime.native.system\4.3.0\lib\netstandard1.0\_._ +runtime.native.system\4.3.0\runtime.native.system.4.3.0.nupkg +runtime.native.system\4.3.0\runtime.native.system.4.3.0.nupkg.sha512 +runtime.native.system\4.3.0\runtime.native.system.nuspec +runtime.native.system\4.3.0\ThirdPartyNotices.txt +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\opensuse.13.2-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\opensuse.42.1-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\dotnet_library_license.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtimes\osx.10.10-x64\native\System.Security.Cryptography.Native.Apple.dylib +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\ThirdPartyNotices.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\osx.10.10-x64\native\System.Security.Cryptography.Native.OpenSsl.dylib +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\rhel.7-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.14.04-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.16.04-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.16.10-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-arm64\native\sni.dll +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-x64\native\sni.dll +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-x86\native\sni.dll +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +sqlitepclraw.bundle_green\1.1.11\build\wp8\SQLitePCLRaw.bundle_green.targets +sqlitepclraw.bundle_green\1.1.11\build\wp80\arm\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\arm\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\x86\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\x86\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\MonoAndroid\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\MonoAndroid\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net35\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net35\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net40\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net40\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net45\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net45\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\netcoreapp\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\netcoreapp\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\netstandard1.1\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\netstandard1.1\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\uap10.0\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\uap10.0\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\win8\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\win8\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\win81\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\win81\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\wp8\_._ +sqlitepclraw.bundle_green\1.1.11\lib\wpa81\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\wpa81\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\sqlitepclraw.bundle_green.1.1.11.nupkg +sqlitepclraw.bundle_green\1.1.11\sqlitepclraw.bundle_green.1.1.11.nupkg.sha512 +sqlitepclraw.bundle_green\1.1.11\sqlitepclraw.bundle_green.nuspec +sqlitepclraw.core\1.1.11\lib\MonoAndroid\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net35\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net40\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net45\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\netstandard1.0\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\netstandard1.1\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\uap10.0\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\win8\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\win81\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\wpa81\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\sqlitepclraw.core.1.1.11.nupkg +sqlitepclraw.core\1.1.11\sqlitepclraw.core.1.1.11.nupkg.sha512 +sqlitepclraw.core\1.1.11\sqlitepclraw.core.nuspec +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\alpine-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-arm\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-arm64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-armel\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-musl-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-x86\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\sqlitepclraw.lib.e_sqlite3.linux.1.1.11.nupkg +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\sqlitepclraw.lib.e_sqlite3.linux.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\sqlitepclraw.lib.e_sqlite3.linux.nuspec +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\build\Xamarin.Mac20\SQLitePCLRaw.lib.e_sqlite3.osx.targets +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\Xamarin.Mac20\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\runtimes\osx-x64\native\libe_sqlite3.dylib +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\sqlitepclraw.lib.e_sqlite3.osx.1.1.11.nupkg +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\sqlitepclraw.lib.e_sqlite3.osx.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\sqlitepclraw.lib.e_sqlite3.osx.nuspec +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win-x64\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win-x86\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win8-arm\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.11.nupkg +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\lib\netstandard1.1\SQLitePCLRaw.provider.e_sqlite3.dll +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.11.nupkg +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.11.nupkg.sha512 +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec +stackexchange.redis.strongname\1.2.4\lib\net45\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\lib\net46\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\lib\netstandard1.5\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\stackexchange.redis.strongname.1.2.4.nupkg +stackexchange.redis.strongname\1.2.4\stackexchange.redis.strongname.1.2.4.nupkg.sha512 +stackexchange.redis.strongname\1.2.4\stackexchange.redis.strongname.nuspec +system.appcontext\4.1.0\dotnet_library_license.txt +system.appcontext\4.1.0\lib\MonoAndroid10\_._ +system.appcontext\4.1.0\lib\MonoTouch10\_._ +system.appcontext\4.1.0\lib\net46\System.AppContext.dll +system.appcontext\4.1.0\lib\net463\System.AppContext.dll +system.appcontext\4.1.0\lib\netcore50\System.AppContext.dll +system.appcontext\4.1.0\lib\netstandard1.6\System.AppContext.dll +system.appcontext\4.1.0\lib\xamarinios10\_._ +system.appcontext\4.1.0\lib\xamarinmac20\_._ +system.appcontext\4.1.0\lib\xamarintvos10\_._ +system.appcontext\4.1.0\lib\xamarinwatchos10\_._ +system.appcontext\4.1.0\ref\MonoAndroid10\_._ +system.appcontext\4.1.0\ref\MonoTouch10\_._ +system.appcontext\4.1.0\ref\net46\System.AppContext.dll +system.appcontext\4.1.0\ref\net463\System.AppContext.dll +system.appcontext\4.1.0\ref\netstandard\_._ +system.appcontext\4.1.0\ref\netstandard1.3\System.AppContext.dll +system.appcontext\4.1.0\ref\netstandard1.6\System.AppContext.dll +system.appcontext\4.1.0\ref\xamarinios10\_._ +system.appcontext\4.1.0\ref\xamarinmac20\_._ +system.appcontext\4.1.0\ref\xamarintvos10\_._ +system.appcontext\4.1.0\ref\xamarinwatchos10\_._ +system.appcontext\4.1.0\runtimes\aot\lib\netcore50\System.AppContext.dll +system.appcontext\4.1.0\system.appcontext.4.1.0.nupkg +system.appcontext\4.1.0\system.appcontext.4.1.0.nupkg.sha512 +system.appcontext\4.1.0\system.appcontext.nuspec +system.appcontext\4.1.0\ThirdPartyNotices.txt +system.appcontext\4.3.0\dotnet_library_license.txt +system.appcontext\4.3.0\lib\MonoAndroid10\_._ +system.appcontext\4.3.0\lib\MonoTouch10\_._ +system.appcontext\4.3.0\lib\net46\System.AppContext.dll +system.appcontext\4.3.0\lib\net463\System.AppContext.dll +system.appcontext\4.3.0\lib\netcore50\System.AppContext.dll +system.appcontext\4.3.0\lib\netstandard1.6\System.AppContext.dll +system.appcontext\4.3.0\lib\xamarinios10\_._ +system.appcontext\4.3.0\lib\xamarinmac20\_._ +system.appcontext\4.3.0\lib\xamarintvos10\_._ +system.appcontext\4.3.0\lib\xamarinwatchos10\_._ +system.appcontext\4.3.0\ref\MonoAndroid10\_._ +system.appcontext\4.3.0\ref\MonoTouch10\_._ +system.appcontext\4.3.0\ref\net46\System.AppContext.dll +system.appcontext\4.3.0\ref\net463\System.AppContext.dll +system.appcontext\4.3.0\ref\netstandard\_._ +system.appcontext\4.3.0\ref\netstandard1.3\System.AppContext.dll +system.appcontext\4.3.0\ref\netstandard1.6\System.AppContext.dll +system.appcontext\4.3.0\ref\xamarinios10\_._ +system.appcontext\4.3.0\ref\xamarinmac20\_._ +system.appcontext\4.3.0\ref\xamarintvos10\_._ +system.appcontext\4.3.0\ref\xamarinwatchos10\_._ +system.appcontext\4.3.0\runtimes\aot\lib\netcore50\System.AppContext.dll +system.appcontext\4.3.0\system.appcontext.4.3.0.nupkg +system.appcontext\4.3.0\system.appcontext.4.3.0.nupkg.sha512 +system.appcontext\4.3.0\system.appcontext.nuspec +system.appcontext\4.3.0\ThirdPartyNotices.txt +system.buffers\4.0.0\dotnet_library_license.txt +system.buffers\4.0.0\lib\netstandard1.1\.xml +system.buffers\4.0.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.0.0\system.buffers.4.0.0.nupkg +system.buffers\4.0.0\system.buffers.4.0.0.nupkg.sha512 +system.buffers\4.0.0\system.buffers.nuspec +system.buffers\4.0.0\ThirdPartyNotices.txt +system.buffers\4.3.0\dotnet_library_license.txt +system.buffers\4.3.0\lib\netstandard1.1\.xml +system.buffers\4.3.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.3.0\system.buffers.4.3.0.nupkg +system.buffers\4.3.0\system.buffers.4.3.0.nupkg.sha512 +system.buffers\4.3.0\system.buffers.nuspec +system.buffers\4.3.0\ThirdPartyNotices.txt +system.buffers\4.5.0\.signature.p7s +system.buffers\4.5.0\lib\netcoreapp2.0\_._ +system.buffers\4.5.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.5.0\lib\netstandard2.0\System.Buffers.dll +system.buffers\4.5.0\lib\uap10.0.16299\_._ +system.buffers\4.5.0\LICENSE.TXT +system.buffers\4.5.0\ref\net45\System.Buffers.dll +system.buffers\4.5.0\ref\netcoreapp2.0\_._ +system.buffers\4.5.0\ref\netstandard1.1\System.Buffers.dll +system.buffers\4.5.0\ref\netstandard2.0\System.Buffers.dll +system.buffers\4.5.0\ref\uap10.0.16299\_._ +system.buffers\4.5.0\system.buffers.4.5.0.nupkg +system.buffers\4.5.0\system.buffers.4.5.0.nupkg.sha512 +system.buffers\4.5.0\system.buffers.nuspec +system.buffers\4.5.0\THIRD-PARTY-NOTICES.TXT +system.buffers\4.5.0\useSharedDesignerContext.txt +system.buffers\4.5.0\version.txt +system.collections.concurrent\4.0.12\dotnet_library_license.txt +system.collections.concurrent\4.0.12\lib\MonoAndroid10\_._ +system.collections.concurrent\4.0.12\lib\MonoTouch10\_._ +system.collections.concurrent\4.0.12\lib\net45\_._ +system.collections.concurrent\4.0.12\lib\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\lib\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\lib\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.0.12\lib\win8\_._ +system.collections.concurrent\4.0.12\lib\wpa81\_._ +system.collections.concurrent\4.0.12\lib\xamarinios10\_._ +system.collections.concurrent\4.0.12\lib\xamarinmac20\_._ +system.collections.concurrent\4.0.12\lib\xamarintvos10\_._ +system.collections.concurrent\4.0.12\lib\xamarinwatchos10\_._ +system.collections.concurrent\4.0.12\ref\MonoAndroid10\_._ +system.collections.concurrent\4.0.12\ref\MonoTouch10\_._ +system.collections.concurrent\4.0.12\ref\net45\_._ +system.collections.concurrent\4.0.12\ref\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\netstandard1.1\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.0.12\ref\win8\_._ +system.collections.concurrent\4.0.12\ref\wpa81\_._ +system.collections.concurrent\4.0.12\ref\xamarinios10\_._ +system.collections.concurrent\4.0.12\ref\xamarinmac20\_._ +system.collections.concurrent\4.0.12\ref\xamarintvos10\_._ +system.collections.concurrent\4.0.12\ref\xamarinwatchos10\_._ +system.collections.concurrent\4.0.12\system.collections.concurrent.4.0.12.nupkg +system.collections.concurrent\4.0.12\system.collections.concurrent.4.0.12.nupkg.sha512 +system.collections.concurrent\4.0.12\system.collections.concurrent.nuspec +system.collections.concurrent\4.0.12\ThirdPartyNotices.txt +system.collections.concurrent\4.3.0\dotnet_library_license.txt +system.collections.concurrent\4.3.0\lib\MonoAndroid10\_._ +system.collections.concurrent\4.3.0\lib\MonoTouch10\_._ +system.collections.concurrent\4.3.0\lib\net45\_._ +system.collections.concurrent\4.3.0\lib\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\lib\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.3.0\lib\win8\_._ +system.collections.concurrent\4.3.0\lib\wpa81\_._ +system.collections.concurrent\4.3.0\lib\xamarinios10\_._ +system.collections.concurrent\4.3.0\lib\xamarinmac20\_._ +system.collections.concurrent\4.3.0\lib\xamarintvos10\_._ +system.collections.concurrent\4.3.0\lib\xamarinwatchos10\_._ +system.collections.concurrent\4.3.0\ref\MonoAndroid10\_._ +system.collections.concurrent\4.3.0\ref\MonoTouch10\_._ +system.collections.concurrent\4.3.0\ref\net45\_._ +system.collections.concurrent\4.3.0\ref\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\netstandard1.1\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.3.0\ref\win8\_._ +system.collections.concurrent\4.3.0\ref\wpa81\_._ +system.collections.concurrent\4.3.0\ref\xamarinios10\_._ +system.collections.concurrent\4.3.0\ref\xamarinmac20\_._ +system.collections.concurrent\4.3.0\ref\xamarintvos10\_._ +system.collections.concurrent\4.3.0\ref\xamarinwatchos10\_._ +system.collections.concurrent\4.3.0\system.collections.concurrent.4.3.0.nupkg +system.collections.concurrent\4.3.0\system.collections.concurrent.4.3.0.nupkg.sha512 +system.collections.concurrent\4.3.0\system.collections.concurrent.nuspec +system.collections.concurrent\4.3.0\ThirdPartyNotices.txt +system.collections.immutable\1.3.0\dotnet_library_license.txt +system.collections.immutable\1.3.0\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.3.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.3.0\system.collections.immutable.1.3.0.nupkg +system.collections.immutable\1.3.0\system.collections.immutable.1.3.0.nupkg.sha512 +system.collections.immutable\1.3.0\system.collections.immutable.nuspec +system.collections.immutable\1.3.0\ThirdPartyNotices.txt +system.collections.immutable\1.3.1\dotnet_library_license.txt +system.collections.immutable\1.3.1\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.3.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.3.1\system.collections.immutable.1.3.1.nupkg +system.collections.immutable\1.3.1\system.collections.immutable.1.3.1.nupkg.sha512 +system.collections.immutable\1.3.1\system.collections.immutable.nuspec +system.collections.immutable\1.3.1\ThirdPartyNotices.txt +system.collections.immutable\1.5.0\.signature.p7s +system.collections.immutable\1.5.0\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\netstandard1.3\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\LICENSE.TXT +system.collections.immutable\1.5.0\system.collections.immutable.1.5.0.nupkg +system.collections.immutable\1.5.0\system.collections.immutable.1.5.0.nupkg.sha512 +system.collections.immutable\1.5.0\system.collections.immutable.nuspec +system.collections.immutable\1.5.0\THIRD-PARTY-NOTICES.TXT +system.collections.immutable\1.5.0\useSharedDesignerContext.txt +system.collections.immutable\1.5.0\version.txt +system.collections.nongeneric\4.3.0\dotnet_library_license.txt +system.collections.nongeneric\4.3.0\lib\MonoAndroid10\_._ +system.collections.nongeneric\4.3.0\lib\MonoTouch10\_._ +system.collections.nongeneric\4.3.0\lib\net46\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\lib\netstandard1.3\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\lib\xamarinios10\_._ +system.collections.nongeneric\4.3.0\lib\xamarinmac20\_._ +system.collections.nongeneric\4.3.0\lib\xamarintvos10\_._ +system.collections.nongeneric\4.3.0\lib\xamarinwatchos10\_._ +system.collections.nongeneric\4.3.0\ref\MonoAndroid10\_._ +system.collections.nongeneric\4.3.0\ref\MonoTouch10\_._ +system.collections.nongeneric\4.3.0\ref\net46\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\ref\netstandard1.3\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\ref\xamarinios10\_._ +system.collections.nongeneric\4.3.0\ref\xamarinmac20\_._ +system.collections.nongeneric\4.3.0\ref\xamarintvos10\_._ +system.collections.nongeneric\4.3.0\ref\xamarinwatchos10\_._ +system.collections.nongeneric\4.3.0\system.collections.nongeneric.4.3.0.nupkg +system.collections.nongeneric\4.3.0\system.collections.nongeneric.4.3.0.nupkg.sha512 +system.collections.nongeneric\4.3.0\system.collections.nongeneric.nuspec +system.collections.nongeneric\4.3.0\ThirdPartyNotices.txt +system.collections.specialized\4.3.0\dotnet_library_license.txt +system.collections.specialized\4.3.0\lib\MonoAndroid10\_._ +system.collections.specialized\4.3.0\lib\MonoTouch10\_._ +system.collections.specialized\4.3.0\lib\net46\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\lib\netstandard1.3\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\lib\xamarinios10\_._ +system.collections.specialized\4.3.0\lib\xamarinmac20\_._ +system.collections.specialized\4.3.0\lib\xamarintvos10\_._ +system.collections.specialized\4.3.0\lib\xamarinwatchos10\_._ +system.collections.specialized\4.3.0\ref\MonoAndroid10\_._ +system.collections.specialized\4.3.0\ref\MonoTouch10\_._ +system.collections.specialized\4.3.0\ref\net46\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\ref\netstandard1.3\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\ref\xamarinios10\_._ +system.collections.specialized\4.3.0\ref\xamarinmac20\_._ +system.collections.specialized\4.3.0\ref\xamarintvos10\_._ +system.collections.specialized\4.3.0\ref\xamarinwatchos10\_._ +system.collections.specialized\4.3.0\system.collections.specialized.4.3.0.nupkg +system.collections.specialized\4.3.0\system.collections.specialized.4.3.0.nupkg.sha512 +system.collections.specialized\4.3.0\system.collections.specialized.nuspec +system.collections.specialized\4.3.0\ThirdPartyNotices.txt +system.collections\4.0.11\dotnet_library_license.txt +system.collections\4.0.11\lib\MonoAndroid10\_._ +system.collections\4.0.11\lib\MonoTouch10\_._ +system.collections\4.0.11\lib\net45\_._ +system.collections\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.0.11\lib\win8\_._ +system.collections\4.0.11\lib\wp80\_._ +system.collections\4.0.11\lib\wpa81\_._ +system.collections\4.0.11\lib\xamarinios10\_._ +system.collections\4.0.11\lib\xamarinmac20\_._ +system.collections\4.0.11\lib\xamarintvos10\_._ +system.collections\4.0.11\lib\xamarinwatchos10\_._ +system.collections\4.0.11\ref\MonoAndroid10\_._ +system.collections\4.0.11\ref\MonoTouch10\_._ +system.collections\4.0.11\ref\net45\_._ +system.collections\4.0.11\ref\netcore50\System.Collections.dll +system.collections\4.0.11\ref\netstandard1.0\System.Collections.dll +system.collections\4.0.11\ref\netstandard1.3\System.Collections.dll +system.collections\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.0.11\ref\win8\_._ +system.collections\4.0.11\ref\wp80\_._ +system.collections\4.0.11\ref\wpa81\_._ +system.collections\4.0.11\ref\xamarinios10\_._ +system.collections\4.0.11\ref\xamarinmac20\_._ +system.collections\4.0.11\ref\xamarintvos10\_._ +system.collections\4.0.11\ref\xamarinwatchos10\_._ +system.collections\4.0.11\system.collections.4.0.11.nupkg +system.collections\4.0.11\system.collections.4.0.11.nupkg.sha512 +system.collections\4.0.11\system.collections.nuspec +system.collections\4.0.11\ThirdPartyNotices.txt +system.collections\4.3.0\dotnet_library_license.txt +system.collections\4.3.0\lib\MonoAndroid10\_._ +system.collections\4.3.0\lib\MonoTouch10\_._ +system.collections\4.3.0\lib\net45\_._ +system.collections\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.3.0\lib\win8\_._ +system.collections\4.3.0\lib\wp80\_._ +system.collections\4.3.0\lib\wpa81\_._ +system.collections\4.3.0\lib\xamarinios10\_._ +system.collections\4.3.0\lib\xamarinmac20\_._ +system.collections\4.3.0\lib\xamarintvos10\_._ +system.collections\4.3.0\lib\xamarinwatchos10\_._ +system.collections\4.3.0\ref\MonoAndroid10\_._ +system.collections\4.3.0\ref\MonoTouch10\_._ +system.collections\4.3.0\ref\net45\_._ +system.collections\4.3.0\ref\netcore50\System.Collections.dll +system.collections\4.3.0\ref\netstandard1.0\System.Collections.dll +system.collections\4.3.0\ref\netstandard1.3\System.Collections.dll +system.collections\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.3.0\ref\win8\_._ +system.collections\4.3.0\ref\wp80\_._ +system.collections\4.3.0\ref\wpa81\_._ +system.collections\4.3.0\ref\xamarinios10\_._ +system.collections\4.3.0\ref\xamarinmac20\_._ +system.collections\4.3.0\ref\xamarintvos10\_._ +system.collections\4.3.0\ref\xamarinwatchos10\_._ +system.collections\4.3.0\system.collections.4.3.0.nupkg +system.collections\4.3.0\system.collections.4.3.0.nupkg.sha512 +system.collections\4.3.0\system.collections.nuspec +system.collections\4.3.0\ThirdPartyNotices.txt +system.componentmodel.annotations\4.5.0\.signature.p7s +system.componentmodel.annotations\4.5.0\lib\MonoAndroid10\_._ +system.componentmodel.annotations\4.5.0\lib\MonoTouch10\_._ +system.componentmodel.annotations\4.5.0\lib\net45\_._ +system.componentmodel.annotations\4.5.0\lib\net461\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netcore50\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netcoreapp2.0\_._ +system.componentmodel.annotations\4.5.0\lib\netstandard1.4\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netstandard2.0\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\portable-net45+win8\_._ +system.componentmodel.annotations\4.5.0\lib\uap10.0.16299\_._ +system.componentmodel.annotations\4.5.0\lib\win8\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinios10\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinmac20\_._ +system.componentmodel.annotations\4.5.0\lib\xamarintvos10\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinwatchos10\_._ +system.componentmodel.annotations\4.5.0\LICENSE.TXT +system.componentmodel.annotations\4.5.0\ref\MonoAndroid10\_._ +system.componentmodel.annotations\4.5.0\ref\MonoTouch10\_._ +system.componentmodel.annotations\4.5.0\ref\net45\_._ +system.componentmodel.annotations\4.5.0\ref\net461\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netcore50\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netcoreapp2.0\_._ +system.componentmodel.annotations\4.5.0\ref\netstandard1.1\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard1.3\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard1.4\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard2.0\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\portable-net45+win8\_._ +system.componentmodel.annotations\4.5.0\ref\uap10.0.16299\_._ +system.componentmodel.annotations\4.5.0\ref\win8\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinios10\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinmac20\_._ +system.componentmodel.annotations\4.5.0\ref\xamarintvos10\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinwatchos10\_._ +system.componentmodel.annotations\4.5.0\system.componentmodel.annotations.4.5.0.nupkg +system.componentmodel.annotations\4.5.0\system.componentmodel.annotations.4.5.0.nupkg.sha512 +system.componentmodel.annotations\4.5.0\system.componentmodel.annotations.nuspec +system.componentmodel.annotations\4.5.0\THIRD-PARTY-NOTICES.TXT +system.componentmodel.annotations\4.5.0\useSharedDesignerContext.txt +system.componentmodel.annotations\4.5.0\version.txt +system.componentmodel.primitives\4.3.0\dotnet_library_license.txt +system.componentmodel.primitives\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel.primitives\4.3.0\lib\MonoTouch10\_._ +system.componentmodel.primitives\4.3.0\lib\net45\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\lib\netstandard1.0\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\lib\xamarinios10\_._ +system.componentmodel.primitives\4.3.0\lib\xamarinmac20\_._ +system.componentmodel.primitives\4.3.0\lib\xamarintvos10\_._ +system.componentmodel.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel.primitives\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel.primitives\4.3.0\ref\MonoTouch10\_._ +system.componentmodel.primitives\4.3.0\ref\net45\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\ref\netstandard1.0\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\ref\xamarinios10\_._ +system.componentmodel.primitives\4.3.0\ref\xamarinmac20\_._ +system.componentmodel.primitives\4.3.0\ref\xamarintvos10\_._ +system.componentmodel.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel.primitives\4.3.0\system.componentmodel.primitives.4.3.0.nupkg +system.componentmodel.primitives\4.3.0\system.componentmodel.primitives.4.3.0.nupkg.sha512 +system.componentmodel.primitives\4.3.0\system.componentmodel.primitives.nuspec +system.componentmodel.primitives\4.3.0\ThirdPartyNotices.txt +system.componentmodel.typeconverter\4.3.0\dotnet_library_license.txt +system.componentmodel.typeconverter\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel.typeconverter\4.3.0\lib\MonoTouch10\_._ +system.componentmodel.typeconverter\4.3.0\lib\net45\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\net462\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\xamarinios10\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarinmac20\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarintvos10\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel.typeconverter\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel.typeconverter\4.3.0\ref\MonoTouch10\_._ +system.componentmodel.typeconverter\4.3.0\ref\net45\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\net462\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\netstandard1.0\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\xamarinios10\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarinmac20\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarintvos10\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel.typeconverter\4.3.0\system.componentmodel.typeconverter.4.3.0.nupkg +system.componentmodel.typeconverter\4.3.0\system.componentmodel.typeconverter.4.3.0.nupkg.sha512 +system.componentmodel.typeconverter\4.3.0\system.componentmodel.typeconverter.nuspec +system.componentmodel.typeconverter\4.3.0\ThirdPartyNotices.txt +system.componentmodel\4.3.0\dotnet_library_license.txt +system.componentmodel\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel\4.3.0\lib\MonoTouch10\_._ +system.componentmodel\4.3.0\lib\net45\_._ +system.componentmodel\4.3.0\lib\netcore50\System.ComponentModel.dll +system.componentmodel\4.3.0\lib\netstandard1.3\System.ComponentModel.dll +system.componentmodel\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.componentmodel\4.3.0\lib\win8\_._ +system.componentmodel\4.3.0\lib\wp80\_._ +system.componentmodel\4.3.0\lib\wpa81\_._ +system.componentmodel\4.3.0\lib\xamarinios10\_._ +system.componentmodel\4.3.0\lib\xamarinmac20\_._ +system.componentmodel\4.3.0\lib\xamarintvos10\_._ +system.componentmodel\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel\4.3.0\ref\MonoTouch10\_._ +system.componentmodel\4.3.0\ref\net45\_._ +system.componentmodel\4.3.0\ref\netcore50\System.ComponentModel.dll +system.componentmodel\4.3.0\ref\netstandard1.0\System.ComponentModel.dll +system.componentmodel\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.componentmodel\4.3.0\ref\win8\_._ +system.componentmodel\4.3.0\ref\wp80\_._ +system.componentmodel\4.3.0\ref\wpa81\_._ +system.componentmodel\4.3.0\ref\xamarinios10\_._ +system.componentmodel\4.3.0\ref\xamarinmac20\_._ +system.componentmodel\4.3.0\ref\xamarintvos10\_._ +system.componentmodel\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel\4.3.0\system.componentmodel.4.3.0.nupkg +system.componentmodel\4.3.0\system.componentmodel.4.3.0.nupkg.sha512 +system.componentmodel\4.3.0\system.componentmodel.nuspec +system.componentmodel\4.3.0\ThirdPartyNotices.txt +system.composition.attributedmodel\1.0.31\dotnet_library_license.txt +system.composition.attributedmodel\1.0.31\lib\netstandard1.0\System.Composition.AttributedModel.dll +system.composition.attributedmodel\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll +system.composition.attributedmodel\1.0.31\system.composition.attributedmodel.1.0.31.nupkg +system.composition.attributedmodel\1.0.31\system.composition.attributedmodel.1.0.31.nupkg.sha512 +system.composition.attributedmodel\1.0.31\system.composition.attributedmodel.nuspec +system.composition.attributedmodel\1.0.31\ThirdPartyNotices.txt +system.composition.convention\1.0.31\dotnet_library_license.txt +system.composition.convention\1.0.31\lib\netstandard1.0\System.Composition.Convention.dll +system.composition.convention\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll +system.composition.convention\1.0.31\system.composition.convention.1.0.31.nupkg +system.composition.convention\1.0.31\system.composition.convention.1.0.31.nupkg.sha512 +system.composition.convention\1.0.31\system.composition.convention.nuspec +system.composition.convention\1.0.31\ThirdPartyNotices.txt +system.composition.hosting\1.0.31\dotnet_library_license.txt +system.composition.hosting\1.0.31\lib\netstandard1.0\System.Composition.Hosting.dll +system.composition.hosting\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll +system.composition.hosting\1.0.31\system.composition.hosting.1.0.31.nupkg +system.composition.hosting\1.0.31\system.composition.hosting.1.0.31.nupkg.sha512 +system.composition.hosting\1.0.31\system.composition.hosting.nuspec +system.composition.hosting\1.0.31\ThirdPartyNotices.txt +system.composition.runtime\1.0.31\dotnet_library_license.txt +system.composition.runtime\1.0.31\lib\netstandard1.0\System.Composition.Runtime.dll +system.composition.runtime\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll +system.composition.runtime\1.0.31\system.composition.runtime.1.0.31.nupkg +system.composition.runtime\1.0.31\system.composition.runtime.1.0.31.nupkg.sha512 +system.composition.runtime\1.0.31\system.composition.runtime.nuspec +system.composition.runtime\1.0.31\ThirdPartyNotices.txt +system.composition.typedparts\1.0.31\dotnet_library_license.txt +system.composition.typedparts\1.0.31\lib\netstandard1.0\System.Composition.TypedParts.dll +system.composition.typedparts\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll +system.composition.typedparts\1.0.31\system.composition.typedparts.1.0.31.nupkg +system.composition.typedparts\1.0.31\system.composition.typedparts.1.0.31.nupkg.sha512 +system.composition.typedparts\1.0.31\system.composition.typedparts.nuspec +system.composition.typedparts\1.0.31\ThirdPartyNotices.txt +system.composition\1.0.31\dotnet_library_license.txt +system.composition\1.0.31\system.composition.1.0.31.nupkg +system.composition\1.0.31\system.composition.1.0.31.nupkg.sha512 +system.composition\1.0.31\system.composition.nuspec +system.composition\1.0.31\ThirdPartyNotices.txt +system.console\4.0.0\dotnet_library_license.txt +system.console\4.0.0\lib\MonoAndroid10\_._ +system.console\4.0.0\lib\MonoTouch10\_._ +system.console\4.0.0\lib\net46\System.Console.dll +system.console\4.0.0\lib\xamarinios10\_._ +system.console\4.0.0\lib\xamarinmac20\_._ +system.console\4.0.0\lib\xamarintvos10\_._ +system.console\4.0.0\lib\xamarinwatchos10\_._ +system.console\4.0.0\ref\MonoAndroid10\_._ +system.console\4.0.0\ref\MonoTouch10\_._ +system.console\4.0.0\ref\net46\System.Console.dll +system.console\4.0.0\ref\netstandard1.3\System.Console.dll +system.console\4.0.0\ref\xamarinios10\_._ +system.console\4.0.0\ref\xamarinmac20\_._ +system.console\4.0.0\ref\xamarintvos10\_._ +system.console\4.0.0\ref\xamarinwatchos10\_._ +system.console\4.0.0\system.console.4.0.0.nupkg +system.console\4.0.0\system.console.4.0.0.nupkg.sha512 +system.console\4.0.0\system.console.nuspec +system.console\4.0.0\ThirdPartyNotices.txt +system.console\4.3.0\dotnet_library_license.txt +system.console\4.3.0\lib\MonoAndroid10\_._ +system.console\4.3.0\lib\MonoTouch10\_._ +system.console\4.3.0\lib\net46\System.Console.dll +system.console\4.3.0\lib\xamarinios10\_._ +system.console\4.3.0\lib\xamarinmac20\_._ +system.console\4.3.0\lib\xamarintvos10\_._ +system.console\4.3.0\lib\xamarinwatchos10\_._ +system.console\4.3.0\ref\MonoAndroid10\_._ +system.console\4.3.0\ref\MonoTouch10\_._ +system.console\4.3.0\ref\net46\System.Console.dll +system.console\4.3.0\ref\netstandard1.3\System.Console.dll +system.console\4.3.0\ref\xamarinios10\_._ +system.console\4.3.0\ref\xamarinmac20\_._ +system.console\4.3.0\ref\xamarintvos10\_._ +system.console\4.3.0\ref\xamarinwatchos10\_._ +system.console\4.3.0\system.console.4.3.0.nupkg +system.console\4.3.0\system.console.4.3.0.nupkg.sha512 +system.console\4.3.0\system.console.nuspec +system.console\4.3.0\ThirdPartyNotices.txt +system.data.sqlclient\4.5.1\.signature.p7s +system.data.sqlclient\4.5.1\lib\MonoAndroid10\_._ +system.data.sqlclient\4.5.1\lib\MonoTouch10\_._ +system.data.sqlclient\4.5.1\lib\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard1.2\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\xamarinios10\_._ +system.data.sqlclient\4.5.1\lib\xamarinmac20\_._ +system.data.sqlclient\4.5.1\lib\xamarintvos10\_._ +system.data.sqlclient\4.5.1\lib\xamarinwatchos10\_._ +system.data.sqlclient\4.5.1\LICENSE.TXT +system.data.sqlclient\4.5.1\ref\MonoAndroid10\_._ +system.data.sqlclient\4.5.1\ref\MonoTouch10\_._ +system.data.sqlclient\4.5.1\ref\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard1.2\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\xamarinios10\_._ +system.data.sqlclient\4.5.1\ref\xamarinmac20\_._ +system.data.sqlclient\4.5.1\ref\xamarintvos10\_._ +system.data.sqlclient\4.5.1\ref\xamarinwatchos10\_._ +system.data.sqlclient\4.5.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\unix\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\uap10.0.16299\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\system.data.sqlclient.4.5.1.nupkg +system.data.sqlclient\4.5.1\system.data.sqlclient.4.5.1.nupkg.sha512 +system.data.sqlclient\4.5.1\system.data.sqlclient.nuspec +system.data.sqlclient\4.5.1\THIRD-PARTY-NOTICES.TXT +system.data.sqlclient\4.5.1\useSharedDesignerContext.txt +system.data.sqlclient\4.5.1\version.txt +system.diagnostics.contracts\4.3.0\dotnet_library_license.txt +system.diagnostics.contracts\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.contracts\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.contracts\4.3.0\lib\net45\_._ +system.diagnostics.contracts\4.3.0\lib\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\lib\netstandard1.0\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.contracts\4.3.0\lib\win8\_._ +system.diagnostics.contracts\4.3.0\lib\wp80\_._ +system.diagnostics.contracts\4.3.0\lib\wpa81\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinios10\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.contracts\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.contracts\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.contracts\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.contracts\4.3.0\ref\net45\_._ +system.diagnostics.contracts\4.3.0\ref\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\ref\netstandard1.0\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.contracts\4.3.0\ref\win8\_._ +system.diagnostics.contracts\4.3.0\ref\wp80\_._ +system.diagnostics.contracts\4.3.0\ref\wpa81\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinios10\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.contracts\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.contracts\4.3.0\runtimes\aot\lib\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\system.diagnostics.contracts.4.3.0.nupkg +system.diagnostics.contracts\4.3.0\system.diagnostics.contracts.4.3.0.nupkg.sha512 +system.diagnostics.contracts\4.3.0\system.diagnostics.contracts.nuspec +system.diagnostics.contracts\4.3.0\ThirdPartyNotices.txt +system.diagnostics.debug\4.0.11\dotnet_library_license.txt +system.diagnostics.debug\4.0.11\lib\MonoAndroid10\_._ +system.diagnostics.debug\4.0.11\lib\MonoTouch10\_._ +system.diagnostics.debug\4.0.11\lib\net45\_._ +system.diagnostics.debug\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.0.11\lib\win8\_._ +system.diagnostics.debug\4.0.11\lib\wp80\_._ +system.diagnostics.debug\4.0.11\lib\wpa81\_._ +system.diagnostics.debug\4.0.11\lib\xamarinios10\_._ +system.diagnostics.debug\4.0.11\lib\xamarinmac20\_._ +system.diagnostics.debug\4.0.11\lib\xamarintvos10\_._ +system.diagnostics.debug\4.0.11\lib\xamarinwatchos10\_._ +system.diagnostics.debug\4.0.11\ref\MonoAndroid10\_._ +system.diagnostics.debug\4.0.11\ref\MonoTouch10\_._ +system.diagnostics.debug\4.0.11\ref\net45\_._ +system.diagnostics.debug\4.0.11\ref\netcore50\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\netstandard1.0\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\netstandard1.3\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.0.11\ref\win8\_._ +system.diagnostics.debug\4.0.11\ref\wp80\_._ +system.diagnostics.debug\4.0.11\ref\wpa81\_._ +system.diagnostics.debug\4.0.11\ref\xamarinios10\_._ +system.diagnostics.debug\4.0.11\ref\xamarinmac20\_._ +system.diagnostics.debug\4.0.11\ref\xamarintvos10\_._ +system.diagnostics.debug\4.0.11\ref\xamarinwatchos10\_._ +system.diagnostics.debug\4.0.11\system.diagnostics.debug.4.0.11.nupkg +system.diagnostics.debug\4.0.11\system.diagnostics.debug.4.0.11.nupkg.sha512 +system.diagnostics.debug\4.0.11\system.diagnostics.debug.nuspec +system.diagnostics.debug\4.0.11\ThirdPartyNotices.txt +system.diagnostics.debug\4.3.0\dotnet_library_license.txt +system.diagnostics.debug\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.debug\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.debug\4.3.0\lib\net45\_._ +system.diagnostics.debug\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.3.0\lib\win8\_._ +system.diagnostics.debug\4.3.0\lib\wp80\_._ +system.diagnostics.debug\4.3.0\lib\wpa81\_._ +system.diagnostics.debug\4.3.0\lib\xamarinios10\_._ +system.diagnostics.debug\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.debug\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.debug\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.debug\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.debug\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.debug\4.3.0\ref\net45\_._ +system.diagnostics.debug\4.3.0\ref\netcore50\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\netstandard1.0\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\netstandard1.3\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.3.0\ref\win8\_._ +system.diagnostics.debug\4.3.0\ref\wp80\_._ +system.diagnostics.debug\4.3.0\ref\wpa81\_._ +system.diagnostics.debug\4.3.0\ref\xamarinios10\_._ +system.diagnostics.debug\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.debug\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.debug\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.debug\4.3.0\system.diagnostics.debug.4.3.0.nupkg +system.diagnostics.debug\4.3.0\system.diagnostics.debug.4.3.0.nupkg.sha512 +system.diagnostics.debug\4.3.0\system.diagnostics.debug.nuspec +system.diagnostics.debug\4.3.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.0.0\dotnet_library_license.txt +system.diagnostics.diagnosticsource\4.0.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\system.diagnostics.diagnosticsource.4.0.0.nupkg +system.diagnostics.diagnosticsource\4.0.0\system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.0.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.0.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.3.0\dotnet_library_license.txt +system.diagnostics.diagnosticsource\4.3.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\system.diagnostics.diagnosticsource.4.3.0.nupkg +system.diagnostics.diagnosticsource\4.3.0\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.3.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.3.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.4.0\lib\net45\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\netcoreapp2.0\_._ +system.diagnostics.diagnosticsource\4.4.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\LICENSE.TXT +system.diagnostics.diagnosticsource\4.4.0\ref\netcoreapp2.0\_._ +system.diagnostics.diagnosticsource\4.4.0\system.diagnostics.diagnosticsource.4.4.0.nupkg +system.diagnostics.diagnosticsource\4.4.0\system.diagnostics.diagnosticsource.4.4.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.4.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.4.0\THIRD-PARTY-NOTICES.TXT +system.diagnostics.diagnosticsource\4.4.0\useSharedDesignerContext.txt +system.diagnostics.diagnosticsource\4.4.0\version.txt +system.diagnostics.diagnosticsource\4.5.0\.signature.p7s +system.diagnostics.diagnosticsource\4.5.0\lib\net45\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\LICENSE.TXT +system.diagnostics.diagnosticsource\4.5.0\system.diagnostics.diagnosticsource.4.5.0.nupkg +system.diagnostics.diagnosticsource\4.5.0\system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.5.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.5.0\THIRD-PARTY-NOTICES.TXT +system.diagnostics.diagnosticsource\4.5.0\useSharedDesignerContext.txt +system.diagnostics.diagnosticsource\4.5.0\version.txt +system.diagnostics.fileversioninfo\4.3.0\dotnet_library_license.txt +system.diagnostics.fileversioninfo\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinios10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\ref\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinios10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.fileversioninfo\4.3.0\runtimes\unix\lib\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\netcore50\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\system.diagnostics.fileversioninfo.4.3.0.nupkg +system.diagnostics.fileversioninfo\4.3.0\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512 +system.diagnostics.fileversioninfo\4.3.0\system.diagnostics.fileversioninfo.nuspec +system.diagnostics.fileversioninfo\4.3.0\ThirdPartyNotices.txt +system.diagnostics.process\4.3.0\dotnet_library_license.txt +system.diagnostics.process\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.process\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.process\4.3.0\lib\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\lib\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\lib\xamarinios10\_._ +system.diagnostics.process\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.process\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.process\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.process\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.process\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.process\4.3.0\ref\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\netstandard1.3\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\xamarinios10\_._ +system.diagnostics.process\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.process\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.process\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.process\4.3.0\runtimes\linux\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\osx\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win7\lib\netcore50\_._ +system.diagnostics.process\4.3.0\system.diagnostics.process.4.3.0.nupkg +system.diagnostics.process\4.3.0\system.diagnostics.process.4.3.0.nupkg.sha512 +system.diagnostics.process\4.3.0\system.diagnostics.process.nuspec +system.diagnostics.process\4.3.0\ThirdPartyNotices.txt +system.diagnostics.stacktrace\4.3.0\dotnet_library_license.txt +system.diagnostics.stacktrace\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.stacktrace\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.stacktrace\4.3.0\lib\net46\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\lib\netstandard1.3\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\lib\xamarinios10\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.stacktrace\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.stacktrace\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.stacktrace\4.3.0\ref\net46\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\ref\netstandard1.3\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\ref\xamarinios10\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.stacktrace\4.3.0\runtimes\aot\lib\netcore50\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\system.diagnostics.stacktrace.4.3.0.nupkg +system.diagnostics.stacktrace\4.3.0\system.diagnostics.stacktrace.4.3.0.nupkg.sha512 +system.diagnostics.stacktrace\4.3.0\system.diagnostics.stacktrace.nuspec +system.diagnostics.stacktrace\4.3.0\ThirdPartyNotices.txt +system.diagnostics.tools\4.0.1\dotnet_library_license.txt +system.diagnostics.tools\4.0.1\lib\MonoAndroid10\_._ +system.diagnostics.tools\4.0.1\lib\MonoTouch10\_._ +system.diagnostics.tools\4.0.1\lib\net45\_._ +system.diagnostics.tools\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.0.1\lib\win8\_._ +system.diagnostics.tools\4.0.1\lib\wp80\_._ +system.diagnostics.tools\4.0.1\lib\wpa81\_._ +system.diagnostics.tools\4.0.1\lib\xamarinios10\_._ +system.diagnostics.tools\4.0.1\lib\xamarinmac20\_._ +system.diagnostics.tools\4.0.1\lib\xamarintvos10\_._ +system.diagnostics.tools\4.0.1\lib\xamarinwatchos10\_._ +system.diagnostics.tools\4.0.1\ref\MonoAndroid10\_._ +system.diagnostics.tools\4.0.1\ref\MonoTouch10\_._ +system.diagnostics.tools\4.0.1\ref\net45\_._ +system.diagnostics.tools\4.0.1\ref\netcore50\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.0.1\ref\netstandard1.0\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.0.1\ref\win8\_._ +system.diagnostics.tools\4.0.1\ref\wp80\_._ +system.diagnostics.tools\4.0.1\ref\wpa81\_._ +system.diagnostics.tools\4.0.1\ref\xamarinios10\_._ +system.diagnostics.tools\4.0.1\ref\xamarinmac20\_._ +system.diagnostics.tools\4.0.1\ref\xamarintvos10\_._ +system.diagnostics.tools\4.0.1\ref\xamarinwatchos10\_._ +system.diagnostics.tools\4.0.1\system.diagnostics.tools.4.0.1.nupkg +system.diagnostics.tools\4.0.1\system.diagnostics.tools.4.0.1.nupkg.sha512 +system.diagnostics.tools\4.0.1\system.diagnostics.tools.nuspec +system.diagnostics.tools\4.0.1\ThirdPartyNotices.txt +system.diagnostics.tools\4.3.0\dotnet_library_license.txt +system.diagnostics.tools\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.tools\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.tools\4.3.0\lib\net45\_._ +system.diagnostics.tools\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.3.0\lib\win8\_._ +system.diagnostics.tools\4.3.0\lib\wp80\_._ +system.diagnostics.tools\4.3.0\lib\wpa81\_._ +system.diagnostics.tools\4.3.0\lib\xamarinios10\_._ +system.diagnostics.tools\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.tools\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.tools\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.tools\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.tools\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.tools\4.3.0\ref\net45\_._ +system.diagnostics.tools\4.3.0\ref\netcore50\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.3.0\ref\netstandard1.0\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.3.0\ref\win8\_._ +system.diagnostics.tools\4.3.0\ref\wp80\_._ +system.diagnostics.tools\4.3.0\ref\wpa81\_._ +system.diagnostics.tools\4.3.0\ref\xamarinios10\_._ +system.diagnostics.tools\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.tools\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.tools\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.tools\4.3.0\system.diagnostics.tools.4.3.0.nupkg +system.diagnostics.tools\4.3.0\system.diagnostics.tools.4.3.0.nupkg.sha512 +system.diagnostics.tools\4.3.0\system.diagnostics.tools.nuspec +system.diagnostics.tools\4.3.0\ThirdPartyNotices.txt +system.diagnostics.tracing\4.1.0\dotnet_library_license.txt +system.diagnostics.tracing\4.1.0\lib\MonoAndroid10\_._ +system.diagnostics.tracing\4.1.0\lib\MonoTouch10\_._ +system.diagnostics.tracing\4.1.0\lib\net45\_._ +system.diagnostics.tracing\4.1.0\lib\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.1.0\lib\win8\_._ +system.diagnostics.tracing\4.1.0\lib\wpa81\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinios10\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinmac20\_._ +system.diagnostics.tracing\4.1.0\lib\xamarintvos10\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinwatchos10\_._ +system.diagnostics.tracing\4.1.0\ref\MonoAndroid10\_._ +system.diagnostics.tracing\4.1.0\ref\MonoTouch10\_._ +system.diagnostics.tracing\4.1.0\ref\net45\_._ +system.diagnostics.tracing\4.1.0\ref\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netcore50\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.1\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.2\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.3\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.5\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.1.0\ref\win8\_._ +system.diagnostics.tracing\4.1.0\ref\wpa81\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinios10\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinmac20\_._ +system.diagnostics.tracing\4.1.0\ref\xamarintvos10\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinwatchos10\_._ +system.diagnostics.tracing\4.1.0\system.diagnostics.tracing.4.1.0.nupkg +system.diagnostics.tracing\4.1.0\system.diagnostics.tracing.4.1.0.nupkg.sha512 +system.diagnostics.tracing\4.1.0\system.diagnostics.tracing.nuspec +system.diagnostics.tracing\4.1.0\ThirdPartyNotices.txt +system.diagnostics.tracing\4.3.0\dotnet_library_license.txt +system.diagnostics.tracing\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.tracing\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.tracing\4.3.0\lib\net45\_._ +system.diagnostics.tracing\4.3.0\lib\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.3.0\lib\win8\_._ +system.diagnostics.tracing\4.3.0\lib\wpa81\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinios10\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.tracing\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.tracing\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.tracing\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.tracing\4.3.0\ref\net45\_._ +system.diagnostics.tracing\4.3.0\ref\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netcore50\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.1\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.2\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.3\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.5\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.3.0\ref\win8\_._ +system.diagnostics.tracing\4.3.0\ref\wpa81\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinios10\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.tracing\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.tracing\4.3.0\system.diagnostics.tracing.4.3.0.nupkg +system.diagnostics.tracing\4.3.0\system.diagnostics.tracing.4.3.0.nupkg.sha512 +system.diagnostics.tracing\4.3.0\system.diagnostics.tracing.nuspec +system.diagnostics.tracing\4.3.0\ThirdPartyNotices.txt +system.dynamic.runtime\4.0.11\dotnet_library_license.txt +system.dynamic.runtime\4.0.11\lib\MonoAndroid10\_._ +system.dynamic.runtime\4.0.11\lib\MonoTouch10\_._ +system.dynamic.runtime\4.0.11\lib\net45\_._ +system.dynamic.runtime\4.0.11\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\lib\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.0.11\lib\win8\_._ +system.dynamic.runtime\4.0.11\lib\wp80\_._ +system.dynamic.runtime\4.0.11\lib\wpa81\_._ +system.dynamic.runtime\4.0.11\lib\xamarinios10\_._ +system.dynamic.runtime\4.0.11\lib\xamarinmac20\_._ +system.dynamic.runtime\4.0.11\lib\xamarintvos10\_._ +system.dynamic.runtime\4.0.11\lib\xamarinwatchos10\_._ +system.dynamic.runtime\4.0.11\ref\MonoAndroid10\_._ +system.dynamic.runtime\4.0.11\ref\MonoTouch10\_._ +system.dynamic.runtime\4.0.11\ref\net45\_._ +system.dynamic.runtime\4.0.11\ref\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\netstandard1.0\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.0.11\ref\win8\_._ +system.dynamic.runtime\4.0.11\ref\wp80\_._ +system.dynamic.runtime\4.0.11\ref\wpa81\_._ +system.dynamic.runtime\4.0.11\ref\xamarinios10\_._ +system.dynamic.runtime\4.0.11\ref\xamarinmac20\_._ +system.dynamic.runtime\4.0.11\ref\xamarintvos10\_._ +system.dynamic.runtime\4.0.11\ref\xamarinwatchos10\_._ +system.dynamic.runtime\4.0.11\runtimes\aot\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\system.dynamic.runtime.4.0.11.nupkg +system.dynamic.runtime\4.0.11\system.dynamic.runtime.4.0.11.nupkg.sha512 +system.dynamic.runtime\4.0.11\system.dynamic.runtime.nuspec +system.dynamic.runtime\4.0.11\ThirdPartyNotices.txt +system.dynamic.runtime\4.3.0\dotnet_library_license.txt +system.dynamic.runtime\4.3.0\lib\MonoAndroid10\_._ +system.dynamic.runtime\4.3.0\lib\MonoTouch10\_._ +system.dynamic.runtime\4.3.0\lib\net45\_._ +system.dynamic.runtime\4.3.0\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\lib\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.3.0\lib\win8\_._ +system.dynamic.runtime\4.3.0\lib\wp80\_._ +system.dynamic.runtime\4.3.0\lib\wpa81\_._ +system.dynamic.runtime\4.3.0\lib\xamarinios10\_._ +system.dynamic.runtime\4.3.0\lib\xamarinmac20\_._ +system.dynamic.runtime\4.3.0\lib\xamarintvos10\_._ +system.dynamic.runtime\4.3.0\lib\xamarinwatchos10\_._ +system.dynamic.runtime\4.3.0\ref\MonoAndroid10\_._ +system.dynamic.runtime\4.3.0\ref\MonoTouch10\_._ +system.dynamic.runtime\4.3.0\ref\net45\_._ +system.dynamic.runtime\4.3.0\ref\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\netstandard1.0\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.3.0\ref\win8\_._ +system.dynamic.runtime\4.3.0\ref\wp80\_._ +system.dynamic.runtime\4.3.0\ref\wpa81\_._ +system.dynamic.runtime\4.3.0\ref\xamarinios10\_._ +system.dynamic.runtime\4.3.0\ref\xamarinmac20\_._ +system.dynamic.runtime\4.3.0\ref\xamarintvos10\_._ +system.dynamic.runtime\4.3.0\ref\xamarinwatchos10\_._ +system.dynamic.runtime\4.3.0\runtimes\aot\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\system.dynamic.runtime.4.3.0.nupkg +system.dynamic.runtime\4.3.0\system.dynamic.runtime.4.3.0.nupkg.sha512 +system.dynamic.runtime\4.3.0\system.dynamic.runtime.nuspec +system.dynamic.runtime\4.3.0\ThirdPartyNotices.txt +system.globalization.calendars\4.0.1\dotnet_library_license.txt +system.globalization.calendars\4.0.1\lib\MonoAndroid10\_._ +system.globalization.calendars\4.0.1\lib\MonoTouch10\_._ +system.globalization.calendars\4.0.1\lib\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\lib\xamarinios10\_._ +system.globalization.calendars\4.0.1\lib\xamarinmac20\_._ +system.globalization.calendars\4.0.1\lib\xamarintvos10\_._ +system.globalization.calendars\4.0.1\lib\xamarinwatchos10\_._ +system.globalization.calendars\4.0.1\ref\MonoAndroid10\_._ +system.globalization.calendars\4.0.1\ref\MonoTouch10\_._ +system.globalization.calendars\4.0.1\ref\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\ref\netstandard1.3\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\ref\xamarinios10\_._ +system.globalization.calendars\4.0.1\ref\xamarinmac20\_._ +system.globalization.calendars\4.0.1\ref\xamarintvos10\_._ +system.globalization.calendars\4.0.1\ref\xamarinwatchos10\_._ +system.globalization.calendars\4.0.1\system.globalization.calendars.4.0.1.nupkg +system.globalization.calendars\4.0.1\system.globalization.calendars.4.0.1.nupkg.sha512 +system.globalization.calendars\4.0.1\system.globalization.calendars.nuspec +system.globalization.calendars\4.0.1\ThirdPartyNotices.txt +system.globalization.calendars\4.3.0\dotnet_library_license.txt +system.globalization.calendars\4.3.0\lib\MonoAndroid10\_._ +system.globalization.calendars\4.3.0\lib\MonoTouch10\_._ +system.globalization.calendars\4.3.0\lib\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\lib\xamarinios10\_._ +system.globalization.calendars\4.3.0\lib\xamarinmac20\_._ +system.globalization.calendars\4.3.0\lib\xamarintvos10\_._ +system.globalization.calendars\4.3.0\lib\xamarinwatchos10\_._ +system.globalization.calendars\4.3.0\ref\MonoAndroid10\_._ +system.globalization.calendars\4.3.0\ref\MonoTouch10\_._ +system.globalization.calendars\4.3.0\ref\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\ref\netstandard1.3\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\ref\xamarinios10\_._ +system.globalization.calendars\4.3.0\ref\xamarinmac20\_._ +system.globalization.calendars\4.3.0\ref\xamarintvos10\_._ +system.globalization.calendars\4.3.0\ref\xamarinwatchos10\_._ +system.globalization.calendars\4.3.0\system.globalization.calendars.4.3.0.nupkg +system.globalization.calendars\4.3.0\system.globalization.calendars.4.3.0.nupkg.sha512 +system.globalization.calendars\4.3.0\system.globalization.calendars.nuspec +system.globalization.calendars\4.3.0\ThirdPartyNotices.txt +system.globalization.extensions\4.0.1\dotnet_library_license.txt +system.globalization.extensions\4.0.1\lib\MonoAndroid10\_._ +system.globalization.extensions\4.0.1\lib\MonoTouch10\_._ +system.globalization.extensions\4.0.1\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\lib\xamarinios10\_._ +system.globalization.extensions\4.0.1\lib\xamarinmac20\_._ +system.globalization.extensions\4.0.1\lib\xamarintvos10\_._ +system.globalization.extensions\4.0.1\lib\xamarinwatchos10\_._ +system.globalization.extensions\4.0.1\ref\MonoAndroid10\_._ +system.globalization.extensions\4.0.1\ref\MonoTouch10\_._ +system.globalization.extensions\4.0.1\ref\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\ref\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\ref\xamarinios10\_._ +system.globalization.extensions\4.0.1\ref\xamarinmac20\_._ +system.globalization.extensions\4.0.1\ref\xamarintvos10\_._ +system.globalization.extensions\4.0.1\ref\xamarinwatchos10\_._ +system.globalization.extensions\4.0.1\runtimes\unix\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\runtimes\win\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\runtimes\win\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\system.globalization.extensions.4.0.1.nupkg +system.globalization.extensions\4.0.1\system.globalization.extensions.4.0.1.nupkg.sha512 +system.globalization.extensions\4.0.1\system.globalization.extensions.nuspec +system.globalization.extensions\4.0.1\ThirdPartyNotices.txt +system.globalization.extensions\4.3.0\dotnet_library_license.txt +system.globalization.extensions\4.3.0\lib\MonoAndroid10\_._ +system.globalization.extensions\4.3.0\lib\MonoTouch10\_._ +system.globalization.extensions\4.3.0\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\lib\xamarinios10\_._ +system.globalization.extensions\4.3.0\lib\xamarinmac20\_._ +system.globalization.extensions\4.3.0\lib\xamarintvos10\_._ +system.globalization.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.globalization.extensions\4.3.0\ref\MonoAndroid10\_._ +system.globalization.extensions\4.3.0\ref\MonoTouch10\_._ +system.globalization.extensions\4.3.0\ref\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\ref\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\ref\xamarinios10\_._ +system.globalization.extensions\4.3.0\ref\xamarinmac20\_._ +system.globalization.extensions\4.3.0\ref\xamarintvos10\_._ +system.globalization.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.globalization.extensions\4.3.0\runtimes\unix\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\runtimes\win\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\runtimes\win\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\system.globalization.extensions.4.3.0.nupkg +system.globalization.extensions\4.3.0\system.globalization.extensions.4.3.0.nupkg.sha512 +system.globalization.extensions\4.3.0\system.globalization.extensions.nuspec +system.globalization.extensions\4.3.0\ThirdPartyNotices.txt +system.globalization\4.0.11\dotnet_library_license.txt +system.globalization\4.0.11\lib\MonoAndroid10\_._ +system.globalization\4.0.11\lib\MonoTouch10\_._ +system.globalization\4.0.11\lib\net45\_._ +system.globalization\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.0.11\lib\win8\_._ +system.globalization\4.0.11\lib\wp80\_._ +system.globalization\4.0.11\lib\wpa81\_._ +system.globalization\4.0.11\lib\xamarinios10\_._ +system.globalization\4.0.11\lib\xamarinmac20\_._ +system.globalization\4.0.11\lib\xamarintvos10\_._ +system.globalization\4.0.11\lib\xamarinwatchos10\_._ +system.globalization\4.0.11\ref\MonoAndroid10\_._ +system.globalization\4.0.11\ref\MonoTouch10\_._ +system.globalization\4.0.11\ref\net45\_._ +system.globalization\4.0.11\ref\netcore50\System.Globalization.dll +system.globalization\4.0.11\ref\netstandard1.0\System.Globalization.dll +system.globalization\4.0.11\ref\netstandard1.3\System.Globalization.dll +system.globalization\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.0.11\ref\win8\_._ +system.globalization\4.0.11\ref\wp80\_._ +system.globalization\4.0.11\ref\wpa81\_._ +system.globalization\4.0.11\ref\xamarinios10\_._ +system.globalization\4.0.11\ref\xamarinmac20\_._ +system.globalization\4.0.11\ref\xamarintvos10\_._ +system.globalization\4.0.11\ref\xamarinwatchos10\_._ +system.globalization\4.0.11\system.globalization.4.0.11.nupkg +system.globalization\4.0.11\system.globalization.4.0.11.nupkg.sha512 +system.globalization\4.0.11\system.globalization.nuspec +system.globalization\4.0.11\ThirdPartyNotices.txt +system.globalization\4.3.0\dotnet_library_license.txt +system.globalization\4.3.0\lib\MonoAndroid10\_._ +system.globalization\4.3.0\lib\MonoTouch10\_._ +system.globalization\4.3.0\lib\net45\_._ +system.globalization\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.3.0\lib\win8\_._ +system.globalization\4.3.0\lib\wp80\_._ +system.globalization\4.3.0\lib\wpa81\_._ +system.globalization\4.3.0\lib\xamarinios10\_._ +system.globalization\4.3.0\lib\xamarinmac20\_._ +system.globalization\4.3.0\lib\xamarintvos10\_._ +system.globalization\4.3.0\lib\xamarinwatchos10\_._ +system.globalization\4.3.0\ref\MonoAndroid10\_._ +system.globalization\4.3.0\ref\MonoTouch10\_._ +system.globalization\4.3.0\ref\net45\_._ +system.globalization\4.3.0\ref\netcore50\System.Globalization.dll +system.globalization\4.3.0\ref\netstandard1.0\System.Globalization.dll +system.globalization\4.3.0\ref\netstandard1.3\System.Globalization.dll +system.globalization\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.3.0\ref\win8\_._ +system.globalization\4.3.0\ref\wp80\_._ +system.globalization\4.3.0\ref\wpa81\_._ +system.globalization\4.3.0\ref\xamarinios10\_._ +system.globalization\4.3.0\ref\xamarinmac20\_._ +system.globalization\4.3.0\ref\xamarintvos10\_._ +system.globalization\4.3.0\ref\xamarinwatchos10\_._ +system.globalization\4.3.0\system.globalization.4.3.0.nupkg +system.globalization\4.3.0\system.globalization.4.3.0.nupkg.sha512 +system.globalization\4.3.0\system.globalization.nuspec +system.globalization\4.3.0\ThirdPartyNotices.txt +system.identitymodel.tokens.jwt\5.2.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\lib\net451\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\system.identitymodel.tokens.jwt.5.2.0.nupkg +system.identitymodel.tokens.jwt\5.2.0\system.identitymodel.tokens.jwt.5.2.0.nupkg.sha512 +system.identitymodel.tokens.jwt\5.2.0\system.identitymodel.tokens.jwt.nuspec +system.interactive.async\3.1.1\lib\net45\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\net46\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\netstandard1.0\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\netstandard1.3\System.Interactive.Async.dll +system.interactive.async\3.1.1\system.interactive.async.3.1.1.nupkg +system.interactive.async\3.1.1\system.interactive.async.3.1.1.nupkg.sha512 +system.interactive.async\3.1.1\system.interactive.async.nuspec +system.io.compression.zipfile\4.0.1\dotnet_library_license.txt +system.io.compression.zipfile\4.0.1\lib\MonoAndroid10\_._ +system.io.compression.zipfile\4.0.1\lib\MonoTouch10\_._ +system.io.compression.zipfile\4.0.1\lib\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\lib\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\lib\xamarinios10\_._ +system.io.compression.zipfile\4.0.1\lib\xamarinmac20\_._ +system.io.compression.zipfile\4.0.1\lib\xamarintvos10\_._ +system.io.compression.zipfile\4.0.1\lib\xamarinwatchos10\_._ +system.io.compression.zipfile\4.0.1\ref\MonoAndroid10\_._ +system.io.compression.zipfile\4.0.1\ref\MonoTouch10\_._ +system.io.compression.zipfile\4.0.1\ref\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\ref\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\ref\xamarinios10\_._ +system.io.compression.zipfile\4.0.1\ref\xamarinmac20\_._ +system.io.compression.zipfile\4.0.1\ref\xamarintvos10\_._ +system.io.compression.zipfile\4.0.1\ref\xamarinwatchos10\_._ +system.io.compression.zipfile\4.0.1\system.io.compression.zipfile.4.0.1.nupkg +system.io.compression.zipfile\4.0.1\system.io.compression.zipfile.4.0.1.nupkg.sha512 +system.io.compression.zipfile\4.0.1\system.io.compression.zipfile.nuspec +system.io.compression.zipfile\4.0.1\ThirdPartyNotices.txt +system.io.compression.zipfile\4.3.0\dotnet_library_license.txt +system.io.compression.zipfile\4.3.0\lib\MonoAndroid10\_._ +system.io.compression.zipfile\4.3.0\lib\MonoTouch10\_._ +system.io.compression.zipfile\4.3.0\lib\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\lib\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\lib\xamarinios10\_._ +system.io.compression.zipfile\4.3.0\lib\xamarinmac20\_._ +system.io.compression.zipfile\4.3.0\lib\xamarintvos10\_._ +system.io.compression.zipfile\4.3.0\lib\xamarinwatchos10\_._ +system.io.compression.zipfile\4.3.0\ref\MonoAndroid10\_._ +system.io.compression.zipfile\4.3.0\ref\MonoTouch10\_._ +system.io.compression.zipfile\4.3.0\ref\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\ref\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\ref\xamarinios10\_._ +system.io.compression.zipfile\4.3.0\ref\xamarinmac20\_._ +system.io.compression.zipfile\4.3.0\ref\xamarintvos10\_._ +system.io.compression.zipfile\4.3.0\ref\xamarinwatchos10\_._ +system.io.compression.zipfile\4.3.0\system.io.compression.zipfile.4.3.0.nupkg +system.io.compression.zipfile\4.3.0\system.io.compression.zipfile.4.3.0.nupkg.sha512 +system.io.compression.zipfile\4.3.0\system.io.compression.zipfile.nuspec +system.io.compression.zipfile\4.3.0\ThirdPartyNotices.txt +system.io.compression\4.1.0\dotnet_library_license.txt +system.io.compression\4.1.0\lib\MonoAndroid10\_._ +system.io.compression\4.1.0\lib\MonoTouch10\_._ +system.io.compression\4.1.0\lib\net45\_._ +system.io.compression\4.1.0\lib\net46\System.IO.Compression.dll +system.io.compression\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.io.compression\4.1.0\lib\win8\_._ +system.io.compression\4.1.0\lib\wpa81\_._ +system.io.compression\4.1.0\lib\xamarinios10\_._ +system.io.compression\4.1.0\lib\xamarinmac20\_._ +system.io.compression\4.1.0\lib\xamarintvos10\_._ +system.io.compression\4.1.0\lib\xamarinwatchos10\_._ +system.io.compression\4.1.0\ref\MonoAndroid10\_._ +system.io.compression\4.1.0\ref\MonoTouch10\_._ +system.io.compression\4.1.0\ref\net45\_._ +system.io.compression\4.1.0\ref\net46\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netcore50\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netstandard1.1\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.io.compression\4.1.0\ref\win8\_._ +system.io.compression\4.1.0\ref\wpa81\_._ +system.io.compression\4.1.0\ref\xamarinios10\_._ +system.io.compression\4.1.0\ref\xamarinmac20\_._ +system.io.compression\4.1.0\ref\xamarintvos10\_._ +system.io.compression\4.1.0\ref\xamarinwatchos10\_._ +system.io.compression\4.1.0\runtimes\unix\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\runtimes\win\lib\net46\System.IO.Compression.dll +system.io.compression\4.1.0\runtimes\win\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\system.io.compression.4.1.0.nupkg +system.io.compression\4.1.0\system.io.compression.4.1.0.nupkg.sha512 +system.io.compression\4.1.0\system.io.compression.nuspec +system.io.compression\4.1.0\ThirdPartyNotices.txt +system.io.compression\4.3.0\dotnet_library_license.txt +system.io.compression\4.3.0\lib\MonoAndroid10\_._ +system.io.compression\4.3.0\lib\MonoTouch10\_._ +system.io.compression\4.3.0\lib\net45\_._ +system.io.compression\4.3.0\lib\net46\System.IO.Compression.dll +system.io.compression\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.io.compression\4.3.0\lib\win8\_._ +system.io.compression\4.3.0\lib\wpa81\_._ +system.io.compression\4.3.0\lib\xamarinios10\_._ +system.io.compression\4.3.0\lib\xamarinmac20\_._ +system.io.compression\4.3.0\lib\xamarintvos10\_._ +system.io.compression\4.3.0\lib\xamarinwatchos10\_._ +system.io.compression\4.3.0\ref\MonoAndroid10\_._ +system.io.compression\4.3.0\ref\MonoTouch10\_._ +system.io.compression\4.3.0\ref\net45\_._ +system.io.compression\4.3.0\ref\net46\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netcore50\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netstandard1.1\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.io.compression\4.3.0\ref\win8\_._ +system.io.compression\4.3.0\ref\wpa81\_._ +system.io.compression\4.3.0\ref\xamarinios10\_._ +system.io.compression\4.3.0\ref\xamarinmac20\_._ +system.io.compression\4.3.0\ref\xamarintvos10\_._ +system.io.compression\4.3.0\ref\xamarinwatchos10\_._ +system.io.compression\4.3.0\runtimes\unix\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\runtimes\win\lib\net46\System.IO.Compression.dll +system.io.compression\4.3.0\runtimes\win\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\system.io.compression.4.3.0.nupkg +system.io.compression\4.3.0\system.io.compression.4.3.0.nupkg.sha512 +system.io.compression\4.3.0\system.io.compression.nuspec +system.io.compression\4.3.0\ThirdPartyNotices.txt +system.io.filesystem.primitives\4.0.1\dotnet_library_license.txt +system.io.filesystem.primitives\4.0.1\lib\MonoAndroid10\_._ +system.io.filesystem.primitives\4.0.1\lib\MonoTouch10\_._ +system.io.filesystem.primitives\4.0.1\lib\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\lib\xamarinios10\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarinmac20\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarintvos10\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.0.1\ref\MonoAndroid10\_._ +system.io.filesystem.primitives\4.0.1\ref\MonoTouch10\_._ +system.io.filesystem.primitives\4.0.1\ref\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\ref\xamarinios10\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarinmac20\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarintvos10\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.0.1\system.io.filesystem.primitives.4.0.1.nupkg +system.io.filesystem.primitives\4.0.1\system.io.filesystem.primitives.4.0.1.nupkg.sha512 +system.io.filesystem.primitives\4.0.1\system.io.filesystem.primitives.nuspec +system.io.filesystem.primitives\4.0.1\ThirdPartyNotices.txt +system.io.filesystem.primitives\4.3.0\dotnet_library_license.txt +system.io.filesystem.primitives\4.3.0\lib\MonoAndroid10\_._ +system.io.filesystem.primitives\4.3.0\lib\MonoTouch10\_._ +system.io.filesystem.primitives\4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\lib\xamarinios10\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarinmac20\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarintvos10\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.3.0\ref\MonoAndroid10\_._ +system.io.filesystem.primitives\4.3.0\ref\MonoTouch10\_._ +system.io.filesystem.primitives\4.3.0\ref\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\ref\xamarinios10\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarinmac20\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarintvos10\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.3.0\system.io.filesystem.primitives.4.3.0.nupkg +system.io.filesystem.primitives\4.3.0\system.io.filesystem.primitives.4.3.0.nupkg.sha512 +system.io.filesystem.primitives\4.3.0\system.io.filesystem.primitives.nuspec +system.io.filesystem.primitives\4.3.0\ThirdPartyNotices.txt +system.io.filesystem\4.0.1\dotnet_library_license.txt +system.io.filesystem\4.0.1\lib\MonoAndroid10\_._ +system.io.filesystem\4.0.1\lib\MonoTouch10\_._ +system.io.filesystem\4.0.1\lib\net46\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\lib\xamarinios10\_._ +system.io.filesystem\4.0.1\lib\xamarinmac20\_._ +system.io.filesystem\4.0.1\lib\xamarintvos10\_._ +system.io.filesystem\4.0.1\lib\xamarinwatchos10\_._ +system.io.filesystem\4.0.1\ref\MonoAndroid10\_._ +system.io.filesystem\4.0.1\ref\MonoTouch10\_._ +system.io.filesystem\4.0.1\ref\net46\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\ref\netstandard1.3\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\ref\xamarinios10\_._ +system.io.filesystem\4.0.1\ref\xamarinmac20\_._ +system.io.filesystem\4.0.1\ref\xamarintvos10\_._ +system.io.filesystem\4.0.1\ref\xamarinwatchos10\_._ +system.io.filesystem\4.0.1\system.io.filesystem.4.0.1.nupkg +system.io.filesystem\4.0.1\system.io.filesystem.4.0.1.nupkg.sha512 +system.io.filesystem\4.0.1\system.io.filesystem.nuspec +system.io.filesystem\4.0.1\ThirdPartyNotices.txt +system.io.filesystem\4.3.0\dotnet_library_license.txt +system.io.filesystem\4.3.0\lib\MonoAndroid10\_._ +system.io.filesystem\4.3.0\lib\MonoTouch10\_._ +system.io.filesystem\4.3.0\lib\net46\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\lib\xamarinios10\_._ +system.io.filesystem\4.3.0\lib\xamarinmac20\_._ +system.io.filesystem\4.3.0\lib\xamarintvos10\_._ +system.io.filesystem\4.3.0\lib\xamarinwatchos10\_._ +system.io.filesystem\4.3.0\ref\MonoAndroid10\_._ +system.io.filesystem\4.3.0\ref\MonoTouch10\_._ +system.io.filesystem\4.3.0\ref\net46\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\ref\netstandard1.3\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\ref\xamarinios10\_._ +system.io.filesystem\4.3.0\ref\xamarinmac20\_._ +system.io.filesystem\4.3.0\ref\xamarintvos10\_._ +system.io.filesystem\4.3.0\ref\xamarinwatchos10\_._ +system.io.filesystem\4.3.0\system.io.filesystem.4.3.0.nupkg +system.io.filesystem\4.3.0\system.io.filesystem.4.3.0.nupkg.sha512 +system.io.filesystem\4.3.0\system.io.filesystem.nuspec +system.io.filesystem\4.3.0\ThirdPartyNotices.txt +system.io.pipelines\4.5.0\.signature.p7s +system.io.pipelines\4.5.0\lib\netcoreapp2.1\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\lib\netstandard1.3\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\lib\netstandard2.0\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\LICENSE.TXT +system.io.pipelines\4.5.0\ref\netstandard1.3\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\system.io.pipelines.4.5.0.nupkg +system.io.pipelines\4.5.0\system.io.pipelines.4.5.0.nupkg.sha512 +system.io.pipelines\4.5.0\system.io.pipelines.nuspec +system.io.pipelines\4.5.0\THIRD-PARTY-NOTICES.TXT +system.io.pipelines\4.5.0\useSharedDesignerContext.txt +system.io.pipelines\4.5.0\version.txt +system.io\4.1.0\dotnet_library_license.txt +system.io\4.1.0\lib\MonoAndroid10\_._ +system.io\4.1.0\lib\MonoTouch10\_._ +system.io\4.1.0\lib\net45\_._ +system.io\4.1.0\lib\net462\System.IO.dll +system.io\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.io\4.1.0\lib\win8\_._ +system.io\4.1.0\lib\wp80\_._ +system.io\4.1.0\lib\wpa81\_._ +system.io\4.1.0\lib\xamarinios10\_._ +system.io\4.1.0\lib\xamarinmac20\_._ +system.io\4.1.0\lib\xamarintvos10\_._ +system.io\4.1.0\lib\xamarinwatchos10\_._ +system.io\4.1.0\ref\MonoAndroid10\_._ +system.io\4.1.0\ref\MonoTouch10\_._ +system.io\4.1.0\ref\net45\_._ +system.io\4.1.0\ref\net462\System.IO.dll +system.io\4.1.0\ref\netcore50\System.IO.dll +system.io\4.1.0\ref\netstandard1.0\System.IO.dll +system.io\4.1.0\ref\netstandard1.3\System.IO.dll +system.io\4.1.0\ref\netstandard1.5\System.IO.dll +system.io\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.io\4.1.0\ref\win8\_._ +system.io\4.1.0\ref\wp80\_._ +system.io\4.1.0\ref\wpa81\_._ +system.io\4.1.0\ref\xamarinios10\_._ +system.io\4.1.0\ref\xamarinmac20\_._ +system.io\4.1.0\ref\xamarintvos10\_._ +system.io\4.1.0\ref\xamarinwatchos10\_._ +system.io\4.1.0\system.io.4.1.0.nupkg +system.io\4.1.0\system.io.4.1.0.nupkg.sha512 +system.io\4.1.0\system.io.nuspec +system.io\4.1.0\ThirdPartyNotices.txt +system.io\4.3.0\dotnet_library_license.txt +system.io\4.3.0\lib\MonoAndroid10\_._ +system.io\4.3.0\lib\MonoTouch10\_._ +system.io\4.3.0\lib\net45\_._ +system.io\4.3.0\lib\net462\System.IO.dll +system.io\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.io\4.3.0\lib\win8\_._ +system.io\4.3.0\lib\wp80\_._ +system.io\4.3.0\lib\wpa81\_._ +system.io\4.3.0\lib\xamarinios10\_._ +system.io\4.3.0\lib\xamarinmac20\_._ +system.io\4.3.0\lib\xamarintvos10\_._ +system.io\4.3.0\lib\xamarinwatchos10\_._ +system.io\4.3.0\ref\MonoAndroid10\_._ +system.io\4.3.0\ref\MonoTouch10\_._ +system.io\4.3.0\ref\net45\_._ +system.io\4.3.0\ref\net462\System.IO.dll +system.io\4.3.0\ref\netcore50\System.IO.dll +system.io\4.3.0\ref\netstandard1.0\System.IO.dll +system.io\4.3.0\ref\netstandard1.3\System.IO.dll +system.io\4.3.0\ref\netstandard1.5\System.IO.dll +system.io\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.io\4.3.0\ref\win8\_._ +system.io\4.3.0\ref\wp80\_._ +system.io\4.3.0\ref\wpa81\_._ +system.io\4.3.0\ref\xamarinios10\_._ +system.io\4.3.0\ref\xamarinmac20\_._ +system.io\4.3.0\ref\xamarintvos10\_._ +system.io\4.3.0\ref\xamarinwatchos10\_._ +system.io\4.3.0\system.io.4.3.0.nupkg +system.io\4.3.0\system.io.4.3.0.nupkg.sha512 +system.io\4.3.0\system.io.nuspec +system.io\4.3.0\ThirdPartyNotices.txt +system.linq.expressions\4.1.0\dotnet_library_license.txt +system.linq.expressions\4.1.0\lib\MonoAndroid10\_._ +system.linq.expressions\4.1.0\lib\MonoTouch10\_._ +system.linq.expressions\4.1.0\lib\net45\_._ +system.linq.expressions\4.1.0\lib\net463\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.1.0\lib\win8\_._ +system.linq.expressions\4.1.0\lib\wp80\_._ +system.linq.expressions\4.1.0\lib\wpa81\_._ +system.linq.expressions\4.1.0\lib\xamarinios10\_._ +system.linq.expressions\4.1.0\lib\xamarinmac20\_._ +system.linq.expressions\4.1.0\lib\xamarintvos10\_._ +system.linq.expressions\4.1.0\lib\xamarinwatchos10\_._ +system.linq.expressions\4.1.0\ref\MonoAndroid10\_._ +system.linq.expressions\4.1.0\ref\MonoTouch10\_._ +system.linq.expressions\4.1.0\ref\net45\_._ +system.linq.expressions\4.1.0\ref\net463\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.0\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.3\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.1.0\ref\win8\_._ +system.linq.expressions\4.1.0\ref\wp80\_._ +system.linq.expressions\4.1.0\ref\wpa81\_._ +system.linq.expressions\4.1.0\ref\xamarinios10\_._ +system.linq.expressions\4.1.0\ref\xamarinmac20\_._ +system.linq.expressions\4.1.0\ref\xamarintvos10\_._ +system.linq.expressions\4.1.0\ref\xamarinwatchos10\_._ +system.linq.expressions\4.1.0\runtimes\aot\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\system.linq.expressions.4.1.0.nupkg +system.linq.expressions\4.1.0\system.linq.expressions.4.1.0.nupkg.sha512 +system.linq.expressions\4.1.0\system.linq.expressions.nuspec +system.linq.expressions\4.1.0\ThirdPartyNotices.txt +system.linq.expressions\4.3.0\dotnet_library_license.txt +system.linq.expressions\4.3.0\lib\MonoAndroid10\_._ +system.linq.expressions\4.3.0\lib\MonoTouch10\_._ +system.linq.expressions\4.3.0\lib\net45\_._ +system.linq.expressions\4.3.0\lib\net463\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.3.0\lib\win8\_._ +system.linq.expressions\4.3.0\lib\wp80\_._ +system.linq.expressions\4.3.0\lib\wpa81\_._ +system.linq.expressions\4.3.0\lib\xamarinios10\_._ +system.linq.expressions\4.3.0\lib\xamarinmac20\_._ +system.linq.expressions\4.3.0\lib\xamarintvos10\_._ +system.linq.expressions\4.3.0\lib\xamarinwatchos10\_._ +system.linq.expressions\4.3.0\ref\MonoAndroid10\_._ +system.linq.expressions\4.3.0\ref\MonoTouch10\_._ +system.linq.expressions\4.3.0\ref\net45\_._ +system.linq.expressions\4.3.0\ref\net463\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.0\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.3\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.3.0\ref\win8\_._ +system.linq.expressions\4.3.0\ref\wp80\_._ +system.linq.expressions\4.3.0\ref\wpa81\_._ +system.linq.expressions\4.3.0\ref\xamarinios10\_._ +system.linq.expressions\4.3.0\ref\xamarinmac20\_._ +system.linq.expressions\4.3.0\ref\xamarintvos10\_._ +system.linq.expressions\4.3.0\ref\xamarinwatchos10\_._ +system.linq.expressions\4.3.0\runtimes\aot\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\system.linq.expressions.4.3.0.nupkg +system.linq.expressions\4.3.0\system.linq.expressions.4.3.0.nupkg.sha512 +system.linq.expressions\4.3.0\system.linq.expressions.nuspec +system.linq.expressions\4.3.0\ThirdPartyNotices.txt +system.linq.parallel\4.3.0\dotnet_library_license.txt +system.linq.parallel\4.3.0\lib\MonoAndroid10\_._ +system.linq.parallel\4.3.0\lib\MonoTouch10\_._ +system.linq.parallel\4.3.0\lib\net45\_._ +system.linq.parallel\4.3.0\lib\netcore50\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\lib\netstandard1.3\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.linq.parallel\4.3.0\lib\win8\_._ +system.linq.parallel\4.3.0\lib\wpa81\_._ +system.linq.parallel\4.3.0\lib\xamarinios10\_._ +system.linq.parallel\4.3.0\lib\xamarinmac20\_._ +system.linq.parallel\4.3.0\lib\xamarintvos10\_._ +system.linq.parallel\4.3.0\lib\xamarinwatchos10\_._ +system.linq.parallel\4.3.0\ref\MonoAndroid10\_._ +system.linq.parallel\4.3.0\ref\MonoTouch10\_._ +system.linq.parallel\4.3.0\ref\net45\_._ +system.linq.parallel\4.3.0\ref\netcore50\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\ref\netstandard1.1\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.linq.parallel\4.3.0\ref\win8\_._ +system.linq.parallel\4.3.0\ref\wpa81\_._ +system.linq.parallel\4.3.0\ref\xamarinios10\_._ +system.linq.parallel\4.3.0\ref\xamarinmac20\_._ +system.linq.parallel\4.3.0\ref\xamarintvos10\_._ +system.linq.parallel\4.3.0\ref\xamarinwatchos10\_._ +system.linq.parallel\4.3.0\system.linq.parallel.4.3.0.nupkg +system.linq.parallel\4.3.0\system.linq.parallel.4.3.0.nupkg.sha512 +system.linq.parallel\4.3.0\system.linq.parallel.nuspec +system.linq.parallel\4.3.0\ThirdPartyNotices.txt +system.linq.queryable\4.0.1\dotnet_library_license.txt +system.linq.queryable\4.0.1\lib\monoandroid10\_._ +system.linq.queryable\4.0.1\lib\monotouch10\_._ +system.linq.queryable\4.0.1\lib\net45\_._ +system.linq.queryable\4.0.1\lib\netcore50\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\lib\netstandard1.3\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.queryable\4.0.1\lib\win8\_._ +system.linq.queryable\4.0.1\lib\wp80\_._ +system.linq.queryable\4.0.1\lib\wpa81\_._ +system.linq.queryable\4.0.1\lib\xamarinios10\_._ +system.linq.queryable\4.0.1\lib\xamarinmac20\_._ +system.linq.queryable\4.0.1\lib\xamarintvos10\_._ +system.linq.queryable\4.0.1\lib\xamarinwatchos10\_._ +system.linq.queryable\4.0.1\ref\monoandroid10\_._ +system.linq.queryable\4.0.1\ref\monotouch10\_._ +system.linq.queryable\4.0.1\ref\net45\_._ +system.linq.queryable\4.0.1\ref\netcore50\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\ref\netstandard1.0\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.queryable\4.0.1\ref\win8\_._ +system.linq.queryable\4.0.1\ref\wp80\_._ +system.linq.queryable\4.0.1\ref\wpa81\_._ +system.linq.queryable\4.0.1\ref\xamarinios10\_._ +system.linq.queryable\4.0.1\ref\xamarinmac20\_._ +system.linq.queryable\4.0.1\ref\xamarintvos10\_._ +system.linq.queryable\4.0.1\ref\xamarinwatchos10\_._ +system.linq.queryable\4.0.1\system.linq.queryable.4.0.1.nupkg +system.linq.queryable\4.0.1\system.linq.queryable.4.0.1.nupkg.sha512 +system.linq.queryable\4.0.1\system.linq.queryable.nuspec +system.linq.queryable\4.0.1\ThirdPartyNotices.txt +system.linq\4.1.0\dotnet_library_license.txt +system.linq\4.1.0\lib\MonoAndroid10\_._ +system.linq\4.1.0\lib\MonoTouch10\_._ +system.linq\4.1.0\lib\net45\_._ +system.linq\4.1.0\lib\net463\System.Linq.dll +system.linq\4.1.0\lib\netcore50\System.Linq.dll +system.linq\4.1.0\lib\netstandard1.6\System.Linq.dll +system.linq\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.1.0\lib\win8\_._ +system.linq\4.1.0\lib\wp80\_._ +system.linq\4.1.0\lib\wpa81\_._ +system.linq\4.1.0\lib\xamarinios10\_._ +system.linq\4.1.0\lib\xamarinmac20\_._ +system.linq\4.1.0\lib\xamarintvos10\_._ +system.linq\4.1.0\lib\xamarinwatchos10\_._ +system.linq\4.1.0\ref\MonoAndroid10\_._ +system.linq\4.1.0\ref\MonoTouch10\_._ +system.linq\4.1.0\ref\net45\_._ +system.linq\4.1.0\ref\net463\System.Linq.dll +system.linq\4.1.0\ref\netcore50\System.Linq.dll +system.linq\4.1.0\ref\netstandard1.0\System.Linq.dll +system.linq\4.1.0\ref\netstandard1.6\System.Linq.dll +system.linq\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.1.0\ref\win8\_._ +system.linq\4.1.0\ref\wp80\_._ +system.linq\4.1.0\ref\wpa81\_._ +system.linq\4.1.0\ref\xamarinios10\_._ +system.linq\4.1.0\ref\xamarinmac20\_._ +system.linq\4.1.0\ref\xamarintvos10\_._ +system.linq\4.1.0\ref\xamarinwatchos10\_._ +system.linq\4.1.0\system.linq.4.1.0.nupkg +system.linq\4.1.0\system.linq.4.1.0.nupkg.sha512 +system.linq\4.1.0\system.linq.nuspec +system.linq\4.1.0\ThirdPartyNotices.txt +system.linq\4.3.0\dotnet_library_license.txt +system.linq\4.3.0\lib\MonoAndroid10\_._ +system.linq\4.3.0\lib\MonoTouch10\_._ +system.linq\4.3.0\lib\net45\_._ +system.linq\4.3.0\lib\net463\System.Linq.dll +system.linq\4.3.0\lib\netcore50\System.Linq.dll +system.linq\4.3.0\lib\netstandard1.6\System.Linq.dll +system.linq\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.3.0\lib\win8\_._ +system.linq\4.3.0\lib\wp80\_._ +system.linq\4.3.0\lib\wpa81\_._ +system.linq\4.3.0\lib\xamarinios10\_._ +system.linq\4.3.0\lib\xamarinmac20\_._ +system.linq\4.3.0\lib\xamarintvos10\_._ +system.linq\4.3.0\lib\xamarinwatchos10\_._ +system.linq\4.3.0\ref\MonoAndroid10\_._ +system.linq\4.3.0\ref\MonoTouch10\_._ +system.linq\4.3.0\ref\net45\_._ +system.linq\4.3.0\ref\net463\System.Linq.dll +system.linq\4.3.0\ref\netcore50\System.Linq.dll +system.linq\4.3.0\ref\netstandard1.0\System.Linq.dll +system.linq\4.3.0\ref\netstandard1.6\System.Linq.dll +system.linq\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.3.0\ref\win8\_._ +system.linq\4.3.0\ref\wp80\_._ +system.linq\4.3.0\ref\wpa81\_._ +system.linq\4.3.0\ref\xamarinios10\_._ +system.linq\4.3.0\ref\xamarinmac20\_._ +system.linq\4.3.0\ref\xamarintvos10\_._ +system.linq\4.3.0\ref\xamarinwatchos10\_._ +system.linq\4.3.0\system.linq.4.3.0.nupkg +system.linq\4.3.0\system.linq.4.3.0.nupkg.sha512 +system.linq\4.3.0\system.linq.nuspec +system.linq\4.3.0\ThirdPartyNotices.txt +system.memory\4.5.1\.signature.p7s +system.memory\4.5.1\lib\netcoreapp2.1\_._ +system.memory\4.5.1\lib\netstandard1.1\System.Memory.dll +system.memory\4.5.1\lib\netstandard2.0\System.Memory.dll +system.memory\4.5.1\LICENSE.TXT +system.memory\4.5.1\ref\netcoreapp2.1\_._ +system.memory\4.5.1\ref\netstandard1.1\System.Memory.dll +system.memory\4.5.1\ref\netstandard2.0\System.Memory.dll +system.memory\4.5.1\system.memory.4.5.1.nupkg +system.memory\4.5.1\system.memory.4.5.1.nupkg.sha512 +system.memory\4.5.1\system.memory.nuspec +system.memory\4.5.1\THIRD-PARTY-NOTICES.TXT +system.memory\4.5.1\useSharedDesignerContext.txt +system.memory\4.5.1\version.txt +system.net.http\4.1.0\dotnet_library_license.txt +system.net.http\4.1.0\lib\monoandroid10\_._ +system.net.http\4.1.0\lib\monotouch10\_._ +system.net.http\4.1.0\lib\net45\_._ +system.net.http\4.1.0\lib\net46\System.Net.Http.dll +system.net.http\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.net.http\4.1.0\lib\win8\_._ +system.net.http\4.1.0\lib\wpa81\_._ +system.net.http\4.1.0\lib\xamarinios10\_._ +system.net.http\4.1.0\lib\Xamarinmac20\_._ +system.net.http\4.1.0\lib\xamarintvos10\_._ +system.net.http\4.1.0\lib\xamarinwatchos10\_._ +system.net.http\4.1.0\ref\monoandroid10\_._ +system.net.http\4.1.0\ref\monotouch10\_._ +system.net.http\4.1.0\ref\net45\_._ +system.net.http\4.1.0\ref\net46\System.Net.Http.dll +system.net.http\4.1.0\ref\netcore50\System.Net.Http.dll +system.net.http\4.1.0\ref\netstandard1.1\System.Net.Http.dll +system.net.http\4.1.0\ref\netstandard1.3\System.Net.Http.dll +system.net.http\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.net.http\4.1.0\ref\win8\_._ +system.net.http\4.1.0\ref\wpa81\_._ +system.net.http\4.1.0\ref\xamarinios10\_._ +system.net.http\4.1.0\ref\Xamarinmac20\_._ +system.net.http\4.1.0\ref\xamarintvos10\_._ +system.net.http\4.1.0\ref\xamarinwatchos10\_._ +system.net.http\4.1.0\runtimes\unix\lib\netstandard1.6\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\net46\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\netcore50\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\netstandard1.3\System.Net.Http.dll +system.net.http\4.1.0\system.net.http.4.1.0.nupkg +system.net.http\4.1.0\system.net.http.4.1.0.nupkg.sha512 +system.net.http\4.1.0\system.net.http.nuspec +system.net.http\4.1.0\ThirdPartyNotices.txt +system.net.http\4.3.0\dotnet_library_license.txt +system.net.http\4.3.0\lib\monoandroid10\_._ +system.net.http\4.3.0\lib\monotouch10\_._ +system.net.http\4.3.0\lib\net45\_._ +system.net.http\4.3.0\lib\net46\System.Net.Http.dll +system.net.http\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.net.http\4.3.0\lib\win8\_._ +system.net.http\4.3.0\lib\wpa81\_._ +system.net.http\4.3.0\lib\xamarinios10\_._ +system.net.http\4.3.0\lib\Xamarinmac20\_._ +system.net.http\4.3.0\lib\xamarintvos10\_._ +system.net.http\4.3.0\lib\xamarinwatchos10\_._ +system.net.http\4.3.0\ref\monoandroid10\_._ +system.net.http\4.3.0\ref\monotouch10\_._ +system.net.http\4.3.0\ref\net45\_._ +system.net.http\4.3.0\ref\net46\System.Net.Http.dll +system.net.http\4.3.0\ref\netcore50\System.Net.Http.dll +system.net.http\4.3.0\ref\netstandard1.1\System.Net.Http.dll +system.net.http\4.3.0\ref\netstandard1.3\System.Net.Http.dll +system.net.http\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.net.http\4.3.0\ref\win8\_._ +system.net.http\4.3.0\ref\wpa81\_._ +system.net.http\4.3.0\ref\xamarinios10\_._ +system.net.http\4.3.0\ref\Xamarinmac20\_._ +system.net.http\4.3.0\ref\xamarintvos10\_._ +system.net.http\4.3.0\ref\xamarinwatchos10\_._ +system.net.http\4.3.0\runtimes\unix\lib\netstandard1.6\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\net46\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\netcore50\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.Http.dll +system.net.http\4.3.0\system.net.http.4.3.0.nupkg +system.net.http\4.3.0\system.net.http.4.3.0.nupkg.sha512 +system.net.http\4.3.0\system.net.http.nuspec +system.net.http\4.3.0\ThirdPartyNotices.txt +system.net.nameresolution\4.3.0\dotnet_library_license.txt +system.net.nameresolution\4.3.0\lib\MonoAndroid10\_._ +system.net.nameresolution\4.3.0\lib\MonoTouch10\_._ +system.net.nameresolution\4.3.0\lib\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\lib\xamarinios10\_._ +system.net.nameresolution\4.3.0\lib\xamarinmac20\_._ +system.net.nameresolution\4.3.0\lib\xamarintvos10\_._ +system.net.nameresolution\4.3.0\lib\xamarinwatchos10\_._ +system.net.nameresolution\4.3.0\ref\MonoAndroid10\_._ +system.net.nameresolution\4.3.0\ref\MonoTouch10\_._ +system.net.nameresolution\4.3.0\ref\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\ref\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\ref\xamarinios10\_._ +system.net.nameresolution\4.3.0\ref\xamarinmac20\_._ +system.net.nameresolution\4.3.0\ref\xamarintvos10\_._ +system.net.nameresolution\4.3.0\ref\xamarinwatchos10\_._ +system.net.nameresolution\4.3.0\runtimes\unix\lib\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\netcore50\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\system.net.nameresolution.4.3.0.nupkg +system.net.nameresolution\4.3.0\system.net.nameresolution.4.3.0.nupkg.sha512 +system.net.nameresolution\4.3.0\system.net.nameresolution.nuspec +system.net.nameresolution\4.3.0\ThirdPartyNotices.txt +system.net.primitives\4.0.11\dotnet_library_license.txt +system.net.primitives\4.0.11\lib\MonoAndroid10\_._ +system.net.primitives\4.0.11\lib\MonoTouch10\_._ +system.net.primitives\4.0.11\lib\net45\_._ +system.net.primitives\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.0.11\lib\win8\_._ +system.net.primitives\4.0.11\lib\wp80\_._ +system.net.primitives\4.0.11\lib\wpa81\_._ +system.net.primitives\4.0.11\lib\xamarinios10\_._ +system.net.primitives\4.0.11\lib\xamarinmac20\_._ +system.net.primitives\4.0.11\lib\xamarintvos10\_._ +system.net.primitives\4.0.11\lib\xamarinwatchos10\_._ +system.net.primitives\4.0.11\ref\MonoAndroid10\_._ +system.net.primitives\4.0.11\ref\MonoTouch10\_._ +system.net.primitives\4.0.11\ref\net45\_._ +system.net.primitives\4.0.11\ref\netcore50\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.0\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.1\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.3\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.0.11\ref\win8\_._ +system.net.primitives\4.0.11\ref\wp80\_._ +system.net.primitives\4.0.11\ref\wpa81\_._ +system.net.primitives\4.0.11\ref\xamarinios10\_._ +system.net.primitives\4.0.11\ref\xamarinmac20\_._ +system.net.primitives\4.0.11\ref\xamarintvos10\_._ +system.net.primitives\4.0.11\ref\xamarinwatchos10\_._ +system.net.primitives\4.0.11\system.net.primitives.4.0.11.nupkg +system.net.primitives\4.0.11\system.net.primitives.4.0.11.nupkg.sha512 +system.net.primitives\4.0.11\system.net.primitives.nuspec +system.net.primitives\4.0.11\ThirdPartyNotices.txt +system.net.primitives\4.3.0\dotnet_library_license.txt +system.net.primitives\4.3.0\lib\MonoAndroid10\_._ +system.net.primitives\4.3.0\lib\MonoTouch10\_._ +system.net.primitives\4.3.0\lib\net45\_._ +system.net.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.3.0\lib\win8\_._ +system.net.primitives\4.3.0\lib\wp80\_._ +system.net.primitives\4.3.0\lib\wpa81\_._ +system.net.primitives\4.3.0\lib\xamarinios10\_._ +system.net.primitives\4.3.0\lib\xamarinmac20\_._ +system.net.primitives\4.3.0\lib\xamarintvos10\_._ +system.net.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.net.primitives\4.3.0\ref\MonoAndroid10\_._ +system.net.primitives\4.3.0\ref\MonoTouch10\_._ +system.net.primitives\4.3.0\ref\net45\_._ +system.net.primitives\4.3.0\ref\netcore50\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.0\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.1\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.3\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.3.0\ref\win8\_._ +system.net.primitives\4.3.0\ref\wp80\_._ +system.net.primitives\4.3.0\ref\wpa81\_._ +system.net.primitives\4.3.0\ref\xamarinios10\_._ +system.net.primitives\4.3.0\ref\xamarinmac20\_._ +system.net.primitives\4.3.0\ref\xamarintvos10\_._ +system.net.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.net.primitives\4.3.0\system.net.primitives.4.3.0.nupkg +system.net.primitives\4.3.0\system.net.primitives.4.3.0.nupkg.sha512 +system.net.primitives\4.3.0\system.net.primitives.nuspec +system.net.primitives\4.3.0\ThirdPartyNotices.txt +system.net.security\4.3.0\dotnet_library_license.txt +system.net.security\4.3.0\lib\MonoAndroid10\_._ +system.net.security\4.3.0\lib\MonoTouch10\_._ +system.net.security\4.3.0\lib\net46\System.Net.Security.dll +system.net.security\4.3.0\lib\xamarinios10\_._ +system.net.security\4.3.0\lib\xamarinmac20\_._ +system.net.security\4.3.0\lib\xamarintvos10\_._ +system.net.security\4.3.0\lib\xamarinwatchos10\_._ +system.net.security\4.3.0\ref\MonoAndroid10\_._ +system.net.security\4.3.0\ref\MonoTouch10\_._ +system.net.security\4.3.0\ref\net46\System.Net.Security.dll +system.net.security\4.3.0\ref\netstandard1.3\System.Net.Security.dll +system.net.security\4.3.0\ref\xamarinios10\_._ +system.net.security\4.3.0\ref\xamarinmac20\_._ +system.net.security\4.3.0\ref\xamarintvos10\_._ +system.net.security\4.3.0\ref\xamarinwatchos10\_._ +system.net.security\4.3.0\runtimes\unix\lib\netstandard1.6\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win\lib\net46\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win7\lib\netcore50\_._ +system.net.security\4.3.0\system.net.security.4.3.0.nupkg +system.net.security\4.3.0\system.net.security.4.3.0.nupkg.sha512 +system.net.security\4.3.0\system.net.security.nuspec +system.net.security\4.3.0\ThirdPartyNotices.txt +system.net.sockets\4.1.0\dotnet_library_license.txt +system.net.sockets\4.1.0\lib\MonoAndroid10\_._ +system.net.sockets\4.1.0\lib\MonoTouch10\_._ +system.net.sockets\4.1.0\lib\net46\System.Net.Sockets.dll +system.net.sockets\4.1.0\lib\xamarinios10\_._ +system.net.sockets\4.1.0\lib\xamarinmac20\_._ +system.net.sockets\4.1.0\lib\xamarintvos10\_._ +system.net.sockets\4.1.0\lib\xamarinwatchos10\_._ +system.net.sockets\4.1.0\ref\MonoAndroid10\_._ +system.net.sockets\4.1.0\ref\MonoTouch10\_._ +system.net.sockets\4.1.0\ref\net46\System.Net.Sockets.dll +system.net.sockets\4.1.0\ref\netstandard1.3\System.Net.Sockets.dll +system.net.sockets\4.1.0\ref\xamarinios10\_._ +system.net.sockets\4.1.0\ref\xamarinmac20\_._ +system.net.sockets\4.1.0\ref\xamarintvos10\_._ +system.net.sockets\4.1.0\ref\xamarinwatchos10\_._ +system.net.sockets\4.1.0\system.net.sockets.4.1.0.nupkg +system.net.sockets\4.1.0\system.net.sockets.4.1.0.nupkg.sha512 +system.net.sockets\4.1.0\system.net.sockets.nuspec +system.net.sockets\4.1.0\ThirdPartyNotices.txt +system.net.sockets\4.3.0\dotnet_library_license.txt +system.net.sockets\4.3.0\lib\MonoAndroid10\_._ +system.net.sockets\4.3.0\lib\MonoTouch10\_._ +system.net.sockets\4.3.0\lib\net46\System.Net.Sockets.dll +system.net.sockets\4.3.0\lib\xamarinios10\_._ +system.net.sockets\4.3.0\lib\xamarinmac20\_._ +system.net.sockets\4.3.0\lib\xamarintvos10\_._ +system.net.sockets\4.3.0\lib\xamarinwatchos10\_._ +system.net.sockets\4.3.0\ref\MonoAndroid10\_._ +system.net.sockets\4.3.0\ref\MonoTouch10\_._ +system.net.sockets\4.3.0\ref\net46\System.Net.Sockets.dll +system.net.sockets\4.3.0\ref\netstandard1.3\System.Net.Sockets.dll +system.net.sockets\4.3.0\ref\xamarinios10\_._ +system.net.sockets\4.3.0\ref\xamarinmac20\_._ +system.net.sockets\4.3.0\ref\xamarintvos10\_._ +system.net.sockets\4.3.0\ref\xamarinwatchos10\_._ +system.net.sockets\4.3.0\system.net.sockets.4.3.0.nupkg +system.net.sockets\4.3.0\system.net.sockets.4.3.0.nupkg.sha512 +system.net.sockets\4.3.0\system.net.sockets.nuspec +system.net.sockets\4.3.0\ThirdPartyNotices.txt +system.net.websockets.websocketprotocol\4.5.1\.signature.p7s +system.net.websockets.websocketprotocol\4.5.1\lib\netcoreapp2.1\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\lib\netstandard2.0\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\LICENSE.TXT +system.net.websockets.websocketprotocol\4.5.1\ref\netstandard2.0\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\system.net.websockets.websocketprotocol.4.5.1.nupkg +system.net.websockets.websocketprotocol\4.5.1\system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512 +system.net.websockets.websocketprotocol\4.5.1\system.net.websockets.websocketprotocol.nuspec +system.net.websockets.websocketprotocol\4.5.1\THIRD-PARTY-NOTICES.TXT +system.net.websockets.websocketprotocol\4.5.1\useSharedDesignerContext.txt +system.net.websockets.websocketprotocol\4.5.1\version.txt +system.numerics.vectors\4.5.0\.signature.p7s +system.numerics.vectors\4.5.0\lib\MonoAndroid10\_._ +system.numerics.vectors\4.5.0\lib\MonoTouch10\_._ +system.numerics.vectors\4.5.0\lib\net46\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\netcoreapp2.0\_._ +system.numerics.vectors\4.5.0\lib\netstandard1.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\netstandard2.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\uap10.0.16299\_._ +system.numerics.vectors\4.5.0\lib\xamarinios10\_._ +system.numerics.vectors\4.5.0\lib\xamarinmac20\_._ +system.numerics.vectors\4.5.0\lib\xamarintvos10\_._ +system.numerics.vectors\4.5.0\lib\xamarinwatchos10\_._ +system.numerics.vectors\4.5.0\LICENSE.TXT +system.numerics.vectors\4.5.0\ref\MonoAndroid10\_._ +system.numerics.vectors\4.5.0\ref\MonoTouch10\_._ +system.numerics.vectors\4.5.0\ref\net45\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\net46\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\netcoreapp2.0\_._ +system.numerics.vectors\4.5.0\ref\netstandard1.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\netstandard2.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\uap10.0.16299\_._ +system.numerics.vectors\4.5.0\ref\xamarinios10\_._ +system.numerics.vectors\4.5.0\ref\xamarinmac20\_._ +system.numerics.vectors\4.5.0\ref\xamarintvos10\_._ +system.numerics.vectors\4.5.0\ref\xamarinwatchos10\_._ +system.numerics.vectors\4.5.0\system.numerics.vectors.4.5.0.nupkg +system.numerics.vectors\4.5.0\system.numerics.vectors.4.5.0.nupkg.sha512 +system.numerics.vectors\4.5.0\system.numerics.vectors.nuspec +system.numerics.vectors\4.5.0\THIRD-PARTY-NOTICES.TXT +system.numerics.vectors\4.5.0\useSharedDesignerContext.txt +system.numerics.vectors\4.5.0\version.txt +system.objectmodel\4.0.12\dotnet_library_license.txt +system.objectmodel\4.0.12\lib\MonoAndroid10\_._ +system.objectmodel\4.0.12\lib\MonoTouch10\_._ +system.objectmodel\4.0.12\lib\net45\_._ +system.objectmodel\4.0.12\lib\netcore50\System.ObjectModel.dll +system.objectmodel\4.0.12\lib\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.0.12\lib\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.0.12\lib\win8\_._ +system.objectmodel\4.0.12\lib\wp80\_._ +system.objectmodel\4.0.12\lib\wpa81\_._ +system.objectmodel\4.0.12\lib\xamarinios10\_._ +system.objectmodel\4.0.12\lib\xamarinmac20\_._ +system.objectmodel\4.0.12\lib\xamarintvos10\_._ +system.objectmodel\4.0.12\lib\xamarinwatchos10\_._ +system.objectmodel\4.0.12\ref\MonoAndroid10\_._ +system.objectmodel\4.0.12\ref\MonoTouch10\_._ +system.objectmodel\4.0.12\ref\net45\_._ +system.objectmodel\4.0.12\ref\netcore50\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\netstandard1.0\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.0.12\ref\win8\_._ +system.objectmodel\4.0.12\ref\wp80\_._ +system.objectmodel\4.0.12\ref\wpa81\_._ +system.objectmodel\4.0.12\ref\xamarinios10\_._ +system.objectmodel\4.0.12\ref\xamarinmac20\_._ +system.objectmodel\4.0.12\ref\xamarintvos10\_._ +system.objectmodel\4.0.12\ref\xamarinwatchos10\_._ +system.objectmodel\4.0.12\system.objectmodel.4.0.12.nupkg +system.objectmodel\4.0.12\system.objectmodel.4.0.12.nupkg.sha512 +system.objectmodel\4.0.12\system.objectmodel.nuspec +system.objectmodel\4.0.12\ThirdPartyNotices.txt +system.objectmodel\4.3.0\dotnet_library_license.txt +system.objectmodel\4.3.0\lib\MonoAndroid10\_._ +system.objectmodel\4.3.0\lib\MonoTouch10\_._ +system.objectmodel\4.3.0\lib\net45\_._ +system.objectmodel\4.3.0\lib\netcore50\System.ObjectModel.dll +system.objectmodel\4.3.0\lib\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.3.0\lib\win8\_._ +system.objectmodel\4.3.0\lib\wp80\_._ +system.objectmodel\4.3.0\lib\wpa81\_._ +system.objectmodel\4.3.0\lib\xamarinios10\_._ +system.objectmodel\4.3.0\lib\xamarinmac20\_._ +system.objectmodel\4.3.0\lib\xamarintvos10\_._ +system.objectmodel\4.3.0\lib\xamarinwatchos10\_._ +system.objectmodel\4.3.0\ref\MonoAndroid10\_._ +system.objectmodel\4.3.0\ref\MonoTouch10\_._ +system.objectmodel\4.3.0\ref\net45\_._ +system.objectmodel\4.3.0\ref\netcore50\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\netstandard1.0\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.3.0\ref\win8\_._ +system.objectmodel\4.3.0\ref\wp80\_._ +system.objectmodel\4.3.0\ref\wpa81\_._ +system.objectmodel\4.3.0\ref\xamarinios10\_._ +system.objectmodel\4.3.0\ref\xamarinmac20\_._ +system.objectmodel\4.3.0\ref\xamarintvos10\_._ +system.objectmodel\4.3.0\ref\xamarinwatchos10\_._ +system.objectmodel\4.3.0\system.objectmodel.4.3.0.nupkg +system.objectmodel\4.3.0\system.objectmodel.4.3.0.nupkg.sha512 +system.objectmodel\4.3.0\system.objectmodel.nuspec +system.objectmodel\4.3.0\ThirdPartyNotices.txt +system.private.datacontractserialization\4.1.1\dotnet_library_license.txt +system.private.datacontractserialization\4.1.1\lib\netstandard1.3\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.1.1\ref\netstandard\_._ +system.private.datacontractserialization\4.1.1\runtimes\aot\lib\netcore50\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.1.1\system.private.datacontractserialization.4.1.1.nupkg +system.private.datacontractserialization\4.1.1\system.private.datacontractserialization.4.1.1.nupkg.sha512 +system.private.datacontractserialization\4.1.1\system.private.datacontractserialization.nuspec +system.private.datacontractserialization\4.1.1\ThirdPartyNotices.txt +system.private.datacontractserialization\4.3.0\dotnet_library_license.txt +system.private.datacontractserialization\4.3.0\lib\netstandard1.3\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.3.0\ref\netstandard\_._ +system.private.datacontractserialization\4.3.0\runtimes\aot\lib\netcore50\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.3.0\system.private.datacontractserialization.4.3.0.nupkg +system.private.datacontractserialization\4.3.0\system.private.datacontractserialization.4.3.0.nupkg.sha512 +system.private.datacontractserialization\4.3.0\system.private.datacontractserialization.nuspec +system.private.datacontractserialization\4.3.0\ThirdPartyNotices.txt +system.reflection.emit.ilgeneration\4.0.1\dotnet_library_license.txt +system.reflection.emit.ilgeneration\4.0.1\lib\net45\_._ +system.reflection.emit.ilgeneration\4.0.1\lib\netcore50\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\lib\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.0.1\lib\wp80\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\net45\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\ref\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\wp80\_._ +system.reflection.emit.ilgeneration\4.0.1\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.ilgeneration\4.0.1\system.reflection.emit.ilgeneration.4.0.1.nupkg +system.reflection.emit.ilgeneration\4.0.1\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512 +system.reflection.emit.ilgeneration\4.0.1\system.reflection.emit.ilgeneration.nuspec +system.reflection.emit.ilgeneration\4.0.1\ThirdPartyNotices.txt +system.reflection.emit.ilgeneration\4.3.0\dotnet_library_license.txt +system.reflection.emit.ilgeneration\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\MonoTouch10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\net45\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\netcore50\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\lib\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\wp80\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinios10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\MonoTouch10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\net45\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\ref\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\wp80\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinios10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarintvos10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.emit.ilgeneration\4.3.0\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.ilgeneration\4.3.0\system.reflection.emit.ilgeneration.4.3.0.nupkg +system.reflection.emit.ilgeneration\4.3.0\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512 +system.reflection.emit.ilgeneration\4.3.0\system.reflection.emit.ilgeneration.nuspec +system.reflection.emit.ilgeneration\4.3.0\ThirdPartyNotices.txt +system.reflection.emit.lightweight\4.0.1\dotnet_library_license.txt +system.reflection.emit.lightweight\4.0.1\lib\net45\_._ +system.reflection.emit.lightweight\4.0.1\lib\netcore50\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\lib\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.0.1\lib\wp80\_._ +system.reflection.emit.lightweight\4.0.1\ref\net45\_._ +system.reflection.emit.lightweight\4.0.1\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\ref\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.0.1\ref\wp80\_._ +system.reflection.emit.lightweight\4.0.1\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.lightweight\4.0.1\system.reflection.emit.lightweight.4.0.1.nupkg +system.reflection.emit.lightweight\4.0.1\system.reflection.emit.lightweight.4.0.1.nupkg.sha512 +system.reflection.emit.lightweight\4.0.1\system.reflection.emit.lightweight.nuspec +system.reflection.emit.lightweight\4.0.1\ThirdPartyNotices.txt +system.reflection.emit.lightweight\4.3.0\dotnet_library_license.txt +system.reflection.emit.lightweight\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit.lightweight\4.3.0\lib\MonoTouch10\_._ +system.reflection.emit.lightweight\4.3.0\lib\net45\_._ +system.reflection.emit.lightweight\4.3.0\lib\netcore50\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\lib\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.3.0\lib\wp80\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinios10\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit.lightweight\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit.lightweight\4.3.0\ref\MonoTouch10\_._ +system.reflection.emit.lightweight\4.3.0\ref\net45\_._ +system.reflection.emit.lightweight\4.3.0\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\ref\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.3.0\ref\wp80\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinios10\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarintvos10\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.emit.lightweight\4.3.0\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.lightweight\4.3.0\system.reflection.emit.lightweight.4.3.0.nupkg +system.reflection.emit.lightweight\4.3.0\system.reflection.emit.lightweight.4.3.0.nupkg.sha512 +system.reflection.emit.lightweight\4.3.0\system.reflection.emit.lightweight.nuspec +system.reflection.emit.lightweight\4.3.0\ThirdPartyNotices.txt +system.reflection.emit\4.0.1\dotnet_library_license.txt +system.reflection.emit\4.0.1\lib\MonoAndroid10\_._ +system.reflection.emit\4.0.1\lib\net45\_._ +system.reflection.emit\4.0.1\lib\netcore50\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\lib\netstandard1.3\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\lib\xamarinmac20\_._ +system.reflection.emit\4.0.1\ref\MonoAndroid10\_._ +system.reflection.emit\4.0.1\ref\net45\_._ +system.reflection.emit\4.0.1\ref\netstandard1.1\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\ref\xamarinmac20\_._ +system.reflection.emit\4.0.1\system.reflection.emit.4.0.1.nupkg +system.reflection.emit\4.0.1\system.reflection.emit.4.0.1.nupkg.sha512 +system.reflection.emit\4.0.1\system.reflection.emit.nuspec +system.reflection.emit\4.0.1\ThirdPartyNotices.txt +system.reflection.emit\4.3.0\dotnet_library_license.txt +system.reflection.emit\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit\4.3.0\lib\monotouch10\_._ +system.reflection.emit\4.3.0\lib\net45\_._ +system.reflection.emit\4.3.0\lib\netcore50\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\lib\netstandard1.3\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\lib\xamarinios10\_._ +system.reflection.emit\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit\4.3.0\ref\net45\_._ +system.reflection.emit\4.3.0\ref\netstandard1.1\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit\4.3.0\system.reflection.emit.4.3.0.nupkg +system.reflection.emit\4.3.0\system.reflection.emit.4.3.0.nupkg.sha512 +system.reflection.emit\4.3.0\system.reflection.emit.nuspec +system.reflection.emit\4.3.0\ThirdPartyNotices.txt +system.reflection.extensions\4.0.1\dotnet_library_license.txt +system.reflection.extensions\4.0.1\lib\MonoAndroid10\_._ +system.reflection.extensions\4.0.1\lib\MonoTouch10\_._ +system.reflection.extensions\4.0.1\lib\net45\_._ +system.reflection.extensions\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.0.1\lib\win8\_._ +system.reflection.extensions\4.0.1\lib\wp80\_._ +system.reflection.extensions\4.0.1\lib\wpa81\_._ +system.reflection.extensions\4.0.1\lib\xamarinios10\_._ +system.reflection.extensions\4.0.1\lib\xamarinmac20\_._ +system.reflection.extensions\4.0.1\lib\xamarintvos10\_._ +system.reflection.extensions\4.0.1\lib\xamarinwatchos10\_._ +system.reflection.extensions\4.0.1\ref\MonoAndroid10\_._ +system.reflection.extensions\4.0.1\ref\MonoTouch10\_._ +system.reflection.extensions\4.0.1\ref\net45\_._ +system.reflection.extensions\4.0.1\ref\netcore50\System.Reflection.Extensions.dll +system.reflection.extensions\4.0.1\ref\netstandard1.0\System.Reflection.Extensions.dll +system.reflection.extensions\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.0.1\ref\win8\_._ +system.reflection.extensions\4.0.1\ref\wp80\_._ +system.reflection.extensions\4.0.1\ref\wpa81\_._ +system.reflection.extensions\4.0.1\ref\xamarinios10\_._ +system.reflection.extensions\4.0.1\ref\xamarinmac20\_._ +system.reflection.extensions\4.0.1\ref\xamarintvos10\_._ +system.reflection.extensions\4.0.1\ref\xamarinwatchos10\_._ +system.reflection.extensions\4.0.1\system.reflection.extensions.4.0.1.nupkg +system.reflection.extensions\4.0.1\system.reflection.extensions.4.0.1.nupkg.sha512 +system.reflection.extensions\4.0.1\system.reflection.extensions.nuspec +system.reflection.extensions\4.0.1\ThirdPartyNotices.txt +system.reflection.extensions\4.3.0\dotnet_library_license.txt +system.reflection.extensions\4.3.0\lib\MonoAndroid10\_._ +system.reflection.extensions\4.3.0\lib\MonoTouch10\_._ +system.reflection.extensions\4.3.0\lib\net45\_._ +system.reflection.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.3.0\lib\win8\_._ +system.reflection.extensions\4.3.0\lib\wp80\_._ +system.reflection.extensions\4.3.0\lib\wpa81\_._ +system.reflection.extensions\4.3.0\lib\xamarinios10\_._ +system.reflection.extensions\4.3.0\lib\xamarinmac20\_._ +system.reflection.extensions\4.3.0\lib\xamarintvos10\_._ +system.reflection.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.extensions\4.3.0\ref\MonoAndroid10\_._ +system.reflection.extensions\4.3.0\ref\MonoTouch10\_._ +system.reflection.extensions\4.3.0\ref\net45\_._ +system.reflection.extensions\4.3.0\ref\netcore50\System.Reflection.Extensions.dll +system.reflection.extensions\4.3.0\ref\netstandard1.0\System.Reflection.Extensions.dll +system.reflection.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.3.0\ref\win8\_._ +system.reflection.extensions\4.3.0\ref\wp80\_._ +system.reflection.extensions\4.3.0\ref\wpa81\_._ +system.reflection.extensions\4.3.0\ref\xamarinios10\_._ +system.reflection.extensions\4.3.0\ref\xamarinmac20\_._ +system.reflection.extensions\4.3.0\ref\xamarintvos10\_._ +system.reflection.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.extensions\4.3.0\system.reflection.extensions.4.3.0.nupkg +system.reflection.extensions\4.3.0\system.reflection.extensions.4.3.0.nupkg.sha512 +system.reflection.extensions\4.3.0\system.reflection.extensions.nuspec +system.reflection.extensions\4.3.0\ThirdPartyNotices.txt +system.reflection.metadata\1.4.1\dotnet_library_license.txt +system.reflection.metadata\1.4.1\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.1\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.1\system.reflection.metadata.1.4.1.nupkg +system.reflection.metadata\1.4.1\system.reflection.metadata.1.4.1.nupkg.sha512 +system.reflection.metadata\1.4.1\system.reflection.metadata.nuspec +system.reflection.metadata\1.4.1\ThirdPartyNotices.txt +system.reflection.metadata\1.4.2\dotnet_library_license.txt +system.reflection.metadata\1.4.2\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.2\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.2\system.reflection.metadata.1.4.2.nupkg +system.reflection.metadata\1.4.2\system.reflection.metadata.1.4.2.nupkg.sha512 +system.reflection.metadata\1.4.2\system.reflection.metadata.nuspec +system.reflection.metadata\1.4.2\ThirdPartyNotices.txt +system.reflection.metadata\1.6.0\.signature.p7s +system.reflection.metadata\1.6.0\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\lib\netstandard2.0\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\LICENSE.TXT +system.reflection.metadata\1.6.0\system.reflection.metadata.1.6.0.nupkg +system.reflection.metadata\1.6.0\system.reflection.metadata.1.6.0.nupkg.sha512 +system.reflection.metadata\1.6.0\system.reflection.metadata.nuspec +system.reflection.metadata\1.6.0\THIRD-PARTY-NOTICES.TXT +system.reflection.metadata\1.6.0\useSharedDesignerContext.txt +system.reflection.metadata\1.6.0\version.txt +system.reflection.primitives\4.0.1\dotnet_library_license.txt +system.reflection.primitives\4.0.1\lib\MonoAndroid10\_._ +system.reflection.primitives\4.0.1\lib\MonoTouch10\_._ +system.reflection.primitives\4.0.1\lib\net45\_._ +system.reflection.primitives\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.0.1\lib\win8\_._ +system.reflection.primitives\4.0.1\lib\wp80\_._ +system.reflection.primitives\4.0.1\lib\wpa81\_._ +system.reflection.primitives\4.0.1\lib\xamarinios10\_._ +system.reflection.primitives\4.0.1\lib\xamarinmac20\_._ +system.reflection.primitives\4.0.1\lib\xamarintvos10\_._ +system.reflection.primitives\4.0.1\lib\xamarinwatchos10\_._ +system.reflection.primitives\4.0.1\ref\MonoAndroid10\_._ +system.reflection.primitives\4.0.1\ref\MonoTouch10\_._ +system.reflection.primitives\4.0.1\ref\net45\_._ +system.reflection.primitives\4.0.1\ref\netcore50\System.Reflection.Primitives.dll +system.reflection.primitives\4.0.1\ref\netstandard1.0\System.Reflection.Primitives.dll +system.reflection.primitives\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.0.1\ref\win8\_._ +system.reflection.primitives\4.0.1\ref\wp80\_._ +system.reflection.primitives\4.0.1\ref\wpa81\_._ +system.reflection.primitives\4.0.1\ref\xamarinios10\_._ +system.reflection.primitives\4.0.1\ref\xamarinmac20\_._ +system.reflection.primitives\4.0.1\ref\xamarintvos10\_._ +system.reflection.primitives\4.0.1\ref\xamarinwatchos10\_._ +system.reflection.primitives\4.0.1\system.reflection.primitives.4.0.1.nupkg +system.reflection.primitives\4.0.1\system.reflection.primitives.4.0.1.nupkg.sha512 +system.reflection.primitives\4.0.1\system.reflection.primitives.nuspec +system.reflection.primitives\4.0.1\ThirdPartyNotices.txt +system.reflection.primitives\4.3.0\dotnet_library_license.txt +system.reflection.primitives\4.3.0\lib\MonoAndroid10\_._ +system.reflection.primitives\4.3.0\lib\MonoTouch10\_._ +system.reflection.primitives\4.3.0\lib\net45\_._ +system.reflection.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.3.0\lib\win8\_._ +system.reflection.primitives\4.3.0\lib\wp80\_._ +system.reflection.primitives\4.3.0\lib\wpa81\_._ +system.reflection.primitives\4.3.0\lib\xamarinios10\_._ +system.reflection.primitives\4.3.0\lib\xamarinmac20\_._ +system.reflection.primitives\4.3.0\lib\xamarintvos10\_._ +system.reflection.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.primitives\4.3.0\ref\MonoAndroid10\_._ +system.reflection.primitives\4.3.0\ref\MonoTouch10\_._ +system.reflection.primitives\4.3.0\ref\net45\_._ +system.reflection.primitives\4.3.0\ref\netcore50\System.Reflection.Primitives.dll +system.reflection.primitives\4.3.0\ref\netstandard1.0\System.Reflection.Primitives.dll +system.reflection.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.3.0\ref\win8\_._ +system.reflection.primitives\4.3.0\ref\wp80\_._ +system.reflection.primitives\4.3.0\ref\wpa81\_._ +system.reflection.primitives\4.3.0\ref\xamarinios10\_._ +system.reflection.primitives\4.3.0\ref\xamarinmac20\_._ +system.reflection.primitives\4.3.0\ref\xamarintvos10\_._ +system.reflection.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.primitives\4.3.0\system.reflection.primitives.4.3.0.nupkg +system.reflection.primitives\4.3.0\system.reflection.primitives.4.3.0.nupkg.sha512 +system.reflection.primitives\4.3.0\system.reflection.primitives.nuspec +system.reflection.primitives\4.3.0\ThirdPartyNotices.txt +system.reflection.typeextensions\4.1.0\dotnet_library_license.txt +system.reflection.typeextensions\4.1.0\lib\MonoAndroid10\_._ +system.reflection.typeextensions\4.1.0\lib\MonoTouch10\_._ +system.reflection.typeextensions\4.1.0\lib\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\xamarinios10\_._ +system.reflection.typeextensions\4.1.0\lib\xamarinmac20\_._ +system.reflection.typeextensions\4.1.0\lib\xamarintvos10\_._ +system.reflection.typeextensions\4.1.0\lib\xamarinwatchos10\_._ +system.reflection.typeextensions\4.1.0\ref\MonoAndroid10\_._ +system.reflection.typeextensions\4.1.0\ref\MonoTouch10\_._ +system.reflection.typeextensions\4.1.0\ref\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\netstandard1.3\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\xamarinios10\_._ +system.reflection.typeextensions\4.1.0\ref\xamarinmac20\_._ +system.reflection.typeextensions\4.1.0\ref\xamarintvos10\_._ +system.reflection.typeextensions\4.1.0\ref\xamarinwatchos10\_._ +system.reflection.typeextensions\4.1.0\runtimes\aot\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\system.reflection.typeextensions.4.1.0.nupkg +system.reflection.typeextensions\4.1.0\system.reflection.typeextensions.4.1.0.nupkg.sha512 +system.reflection.typeextensions\4.1.0\system.reflection.typeextensions.nuspec +system.reflection.typeextensions\4.1.0\ThirdPartyNotices.txt +system.reflection.typeextensions\4.3.0\dotnet_library_license.txt +system.reflection.typeextensions\4.3.0\lib\MonoAndroid10\_._ +system.reflection.typeextensions\4.3.0\lib\MonoTouch10\_._ +system.reflection.typeextensions\4.3.0\lib\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\xamarinios10\_._ +system.reflection.typeextensions\4.3.0\lib\xamarinmac20\_._ +system.reflection.typeextensions\4.3.0\lib\xamarintvos10\_._ +system.reflection.typeextensions\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.typeextensions\4.3.0\ref\MonoAndroid10\_._ +system.reflection.typeextensions\4.3.0\ref\MonoTouch10\_._ +system.reflection.typeextensions\4.3.0\ref\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\netstandard1.3\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\xamarinios10\_._ +system.reflection.typeextensions\4.3.0\ref\xamarinmac20\_._ +system.reflection.typeextensions\4.3.0\ref\xamarintvos10\_._ +system.reflection.typeextensions\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.typeextensions\4.3.0\runtimes\aot\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\system.reflection.typeextensions.4.3.0.nupkg +system.reflection.typeextensions\4.3.0\system.reflection.typeextensions.4.3.0.nupkg.sha512 +system.reflection.typeextensions\4.3.0\system.reflection.typeextensions.nuspec +system.reflection.typeextensions\4.3.0\ThirdPartyNotices.txt +system.reflection\4.1.0\dotnet_library_license.txt +system.reflection\4.1.0\lib\MonoAndroid10\_._ +system.reflection\4.1.0\lib\MonoTouch10\_._ +system.reflection\4.1.0\lib\net45\_._ +system.reflection\4.1.0\lib\net462\System.Reflection.dll +system.reflection\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.1.0\lib\win8\_._ +system.reflection\4.1.0\lib\wp80\_._ +system.reflection\4.1.0\lib\wpa81\_._ +system.reflection\4.1.0\lib\xamarinios10\_._ +system.reflection\4.1.0\lib\xamarinmac20\_._ +system.reflection\4.1.0\lib\xamarintvos10\_._ +system.reflection\4.1.0\lib\xamarinwatchos10\_._ +system.reflection\4.1.0\ref\MonoAndroid10\_._ +system.reflection\4.1.0\ref\MonoTouch10\_._ +system.reflection\4.1.0\ref\net45\_._ +system.reflection\4.1.0\ref\net462\System.Reflection.dll +system.reflection\4.1.0\ref\netcore50\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.0\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.3\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.5\System.Reflection.dll +system.reflection\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.1.0\ref\win8\_._ +system.reflection\4.1.0\ref\wp80\_._ +system.reflection\4.1.0\ref\wpa81\_._ +system.reflection\4.1.0\ref\xamarinios10\_._ +system.reflection\4.1.0\ref\xamarinmac20\_._ +system.reflection\4.1.0\ref\xamarintvos10\_._ +system.reflection\4.1.0\ref\xamarinwatchos10\_._ +system.reflection\4.1.0\system.reflection.4.1.0.nupkg +system.reflection\4.1.0\system.reflection.4.1.0.nupkg.sha512 +system.reflection\4.1.0\system.reflection.nuspec +system.reflection\4.1.0\ThirdPartyNotices.txt +system.reflection\4.3.0\dotnet_library_license.txt +system.reflection\4.3.0\lib\MonoAndroid10\_._ +system.reflection\4.3.0\lib\MonoTouch10\_._ +system.reflection\4.3.0\lib\net45\_._ +system.reflection\4.3.0\lib\net462\System.Reflection.dll +system.reflection\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.3.0\lib\win8\_._ +system.reflection\4.3.0\lib\wp80\_._ +system.reflection\4.3.0\lib\wpa81\_._ +system.reflection\4.3.0\lib\xamarinios10\_._ +system.reflection\4.3.0\lib\xamarinmac20\_._ +system.reflection\4.3.0\lib\xamarintvos10\_._ +system.reflection\4.3.0\lib\xamarinwatchos10\_._ +system.reflection\4.3.0\ref\MonoAndroid10\_._ +system.reflection\4.3.0\ref\MonoTouch10\_._ +system.reflection\4.3.0\ref\net45\_._ +system.reflection\4.3.0\ref\net462\System.Reflection.dll +system.reflection\4.3.0\ref\netcore50\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.0\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.3\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.5\System.Reflection.dll +system.reflection\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.3.0\ref\win8\_._ +system.reflection\4.3.0\ref\wp80\_._ +system.reflection\4.3.0\ref\wpa81\_._ +system.reflection\4.3.0\ref\xamarinios10\_._ +system.reflection\4.3.0\ref\xamarinmac20\_._ +system.reflection\4.3.0\ref\xamarintvos10\_._ +system.reflection\4.3.0\ref\xamarinwatchos10\_._ +system.reflection\4.3.0\system.reflection.4.3.0.nupkg +system.reflection\4.3.0\system.reflection.4.3.0.nupkg.sha512 +system.reflection\4.3.0\system.reflection.nuspec +system.reflection\4.3.0\ThirdPartyNotices.txt +system.resources.resourcemanager\4.0.1\dotnet_library_license.txt +system.resources.resourcemanager\4.0.1\lib\MonoAndroid10\_._ +system.resources.resourcemanager\4.0.1\lib\MonoTouch10\_._ +system.resources.resourcemanager\4.0.1\lib\net45\_._ +system.resources.resourcemanager\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.0.1\lib\win8\_._ +system.resources.resourcemanager\4.0.1\lib\wp80\_._ +system.resources.resourcemanager\4.0.1\lib\wpa81\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinios10\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinmac20\_._ +system.resources.resourcemanager\4.0.1\lib\xamarintvos10\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinwatchos10\_._ +system.resources.resourcemanager\4.0.1\ref\MonoAndroid10\_._ +system.resources.resourcemanager\4.0.1\ref\MonoTouch10\_._ +system.resources.resourcemanager\4.0.1\ref\net45\_._ +system.resources.resourcemanager\4.0.1\ref\netcore50\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.0.1\ref\netstandard1.0\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.0.1\ref\win8\_._ +system.resources.resourcemanager\4.0.1\ref\wp80\_._ +system.resources.resourcemanager\4.0.1\ref\wpa81\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinios10\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinmac20\_._ +system.resources.resourcemanager\4.0.1\ref\xamarintvos10\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinwatchos10\_._ +system.resources.resourcemanager\4.0.1\system.resources.resourcemanager.4.0.1.nupkg +system.resources.resourcemanager\4.0.1\system.resources.resourcemanager.4.0.1.nupkg.sha512 +system.resources.resourcemanager\4.0.1\system.resources.resourcemanager.nuspec +system.resources.resourcemanager\4.0.1\ThirdPartyNotices.txt +system.resources.resourcemanager\4.3.0\dotnet_library_license.txt +system.resources.resourcemanager\4.3.0\lib\MonoAndroid10\_._ +system.resources.resourcemanager\4.3.0\lib\MonoTouch10\_._ +system.resources.resourcemanager\4.3.0\lib\net45\_._ +system.resources.resourcemanager\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.3.0\lib\win8\_._ +system.resources.resourcemanager\4.3.0\lib\wp80\_._ +system.resources.resourcemanager\4.3.0\lib\wpa81\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinios10\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinmac20\_._ +system.resources.resourcemanager\4.3.0\lib\xamarintvos10\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinwatchos10\_._ +system.resources.resourcemanager\4.3.0\ref\MonoAndroid10\_._ +system.resources.resourcemanager\4.3.0\ref\MonoTouch10\_._ +system.resources.resourcemanager\4.3.0\ref\net45\_._ +system.resources.resourcemanager\4.3.0\ref\netcore50\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.3.0\ref\netstandard1.0\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.3.0\ref\win8\_._ +system.resources.resourcemanager\4.3.0\ref\wp80\_._ +system.resources.resourcemanager\4.3.0\ref\wpa81\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinios10\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinmac20\_._ +system.resources.resourcemanager\4.3.0\ref\xamarintvos10\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinwatchos10\_._ +system.resources.resourcemanager\4.3.0\system.resources.resourcemanager.4.3.0.nupkg +system.resources.resourcemanager\4.3.0\system.resources.resourcemanager.4.3.0.nupkg.sha512 +system.resources.resourcemanager\4.3.0\system.resources.resourcemanager.nuspec +system.resources.resourcemanager\4.3.0\ThirdPartyNotices.txt +system.runtime.compilerservices.unsafe\4.5.0\.signature.p7s +system.runtime.compilerservices.unsafe\4.5.0\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\uap10.0.16300\_._ +system.runtime.compilerservices.unsafe\4.5.0\LICENSE.TXT +system.runtime.compilerservices.unsafe\4.5.0\ref\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\ref\uap10.0.16300\_._ +system.runtime.compilerservices.unsafe\4.5.0\system.runtime.compilerservices.unsafe.4.5.0.nupkg +system.runtime.compilerservices.unsafe\4.5.0\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512 +system.runtime.compilerservices.unsafe\4.5.0\system.runtime.compilerservices.unsafe.nuspec +system.runtime.compilerservices.unsafe\4.5.0\THIRD-PARTY-NOTICES.TXT +system.runtime.compilerservices.unsafe\4.5.0\useSharedDesignerContext.txt +system.runtime.compilerservices.unsafe\4.5.0\version.txt +system.runtime.compilerservices.unsafe\4.5.1\.signature.p7s +system.runtime.compilerservices.unsafe\4.5.1\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\LICENSE.TXT +system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\system.runtime.compilerservices.unsafe.4.5.1.nupkg +system.runtime.compilerservices.unsafe\4.5.1\system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512 +system.runtime.compilerservices.unsafe\4.5.1\system.runtime.compilerservices.unsafe.nuspec +system.runtime.compilerservices.unsafe\4.5.1\THIRD-PARTY-NOTICES.TXT +system.runtime.compilerservices.unsafe\4.5.1\useSharedDesignerContext.txt +system.runtime.compilerservices.unsafe\4.5.1\version.txt +system.runtime.extensions\4.1.0\dotnet_library_license.txt +system.runtime.extensions\4.1.0\lib\MonoAndroid10\_._ +system.runtime.extensions\4.1.0\lib\MonoTouch10\_._ +system.runtime.extensions\4.1.0\lib\net45\_._ +system.runtime.extensions\4.1.0\lib\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.1.0\lib\win8\_._ +system.runtime.extensions\4.1.0\lib\wp80\_._ +system.runtime.extensions\4.1.0\lib\wpa81\_._ +system.runtime.extensions\4.1.0\lib\xamarinios10\_._ +system.runtime.extensions\4.1.0\lib\xamarinmac20\_._ +system.runtime.extensions\4.1.0\lib\xamarintvos10\_._ +system.runtime.extensions\4.1.0\lib\xamarinwatchos10\_._ +system.runtime.extensions\4.1.0\ref\MonoAndroid10\_._ +system.runtime.extensions\4.1.0\ref\MonoTouch10\_._ +system.runtime.extensions\4.1.0\ref\net45\_._ +system.runtime.extensions\4.1.0\ref\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netcore50\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.0\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.3\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.5\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.1.0\ref\win8\_._ +system.runtime.extensions\4.1.0\ref\wp80\_._ +system.runtime.extensions\4.1.0\ref\wpa81\_._ +system.runtime.extensions\4.1.0\ref\xamarinios10\_._ +system.runtime.extensions\4.1.0\ref\xamarinmac20\_._ +system.runtime.extensions\4.1.0\ref\xamarintvos10\_._ +system.runtime.extensions\4.1.0\ref\xamarinwatchos10\_._ +system.runtime.extensions\4.1.0\system.runtime.extensions.4.1.0.nupkg +system.runtime.extensions\4.1.0\system.runtime.extensions.4.1.0.nupkg.sha512 +system.runtime.extensions\4.1.0\system.runtime.extensions.nuspec +system.runtime.extensions\4.1.0\ThirdPartyNotices.txt +system.runtime.extensions\4.3.0\dotnet_library_license.txt +system.runtime.extensions\4.3.0\lib\MonoAndroid10\_._ +system.runtime.extensions\4.3.0\lib\MonoTouch10\_._ +system.runtime.extensions\4.3.0\lib\net45\_._ +system.runtime.extensions\4.3.0\lib\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.3.0\lib\win8\_._ +system.runtime.extensions\4.3.0\lib\wp80\_._ +system.runtime.extensions\4.3.0\lib\wpa81\_._ +system.runtime.extensions\4.3.0\lib\xamarinios10\_._ +system.runtime.extensions\4.3.0\lib\xamarinmac20\_._ +system.runtime.extensions\4.3.0\lib\xamarintvos10\_._ +system.runtime.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.extensions\4.3.0\ref\MonoAndroid10\_._ +system.runtime.extensions\4.3.0\ref\MonoTouch10\_._ +system.runtime.extensions\4.3.0\ref\net45\_._ +system.runtime.extensions\4.3.0\ref\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netcore50\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.0\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.3\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.5\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.3.0\ref\win8\_._ +system.runtime.extensions\4.3.0\ref\wp80\_._ +system.runtime.extensions\4.3.0\ref\wpa81\_._ +system.runtime.extensions\4.3.0\ref\xamarinios10\_._ +system.runtime.extensions\4.3.0\ref\xamarinmac20\_._ +system.runtime.extensions\4.3.0\ref\xamarintvos10\_._ +system.runtime.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.extensions\4.3.0\system.runtime.extensions.4.3.0.nupkg +system.runtime.extensions\4.3.0\system.runtime.extensions.4.3.0.nupkg.sha512 +system.runtime.extensions\4.3.0\system.runtime.extensions.nuspec +system.runtime.extensions\4.3.0\ThirdPartyNotices.txt +system.runtime.handles\4.0.1\dotnet_library_license.txt +system.runtime.handles\4.0.1\lib\MonoAndroid10\_._ +system.runtime.handles\4.0.1\lib\MonoTouch10\_._ +system.runtime.handles\4.0.1\lib\net46\_._ +system.runtime.handles\4.0.1\lib\xamarinios10\_._ +system.runtime.handles\4.0.1\lib\xamarinmac20\_._ +system.runtime.handles\4.0.1\lib\xamarintvos10\_._ +system.runtime.handles\4.0.1\lib\xamarinwatchos10\_._ +system.runtime.handles\4.0.1\ref\MonoAndroid10\_._ +system.runtime.handles\4.0.1\ref\MonoTouch10\_._ +system.runtime.handles\4.0.1\ref\net46\_._ +system.runtime.handles\4.0.1\ref\netstandard1.3\System.Runtime.Handles.dll +system.runtime.handles\4.0.1\ref\xamarinios10\_._ +system.runtime.handles\4.0.1\ref\xamarinmac20\_._ +system.runtime.handles\4.0.1\ref\xamarintvos10\_._ +system.runtime.handles\4.0.1\ref\xamarinwatchos10\_._ +system.runtime.handles\4.0.1\system.runtime.handles.4.0.1.nupkg +system.runtime.handles\4.0.1\system.runtime.handles.4.0.1.nupkg.sha512 +system.runtime.handles\4.0.1\system.runtime.handles.nuspec +system.runtime.handles\4.0.1\ThirdPartyNotices.txt +system.runtime.handles\4.3.0\dotnet_library_license.txt +system.runtime.handles\4.3.0\lib\MonoAndroid10\_._ +system.runtime.handles\4.3.0\lib\MonoTouch10\_._ +system.runtime.handles\4.3.0\lib\net46\_._ +system.runtime.handles\4.3.0\lib\xamarinios10\_._ +system.runtime.handles\4.3.0\lib\xamarinmac20\_._ +system.runtime.handles\4.3.0\lib\xamarintvos10\_._ +system.runtime.handles\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.handles\4.3.0\ref\MonoAndroid10\_._ +system.runtime.handles\4.3.0\ref\MonoTouch10\_._ +system.runtime.handles\4.3.0\ref\net46\_._ +system.runtime.handles\4.3.0\ref\netstandard1.3\System.Runtime.Handles.dll +system.runtime.handles\4.3.0\ref\xamarinios10\_._ +system.runtime.handles\4.3.0\ref\xamarinmac20\_._ +system.runtime.handles\4.3.0\ref\xamarintvos10\_._ +system.runtime.handles\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.handles\4.3.0\system.runtime.handles.4.3.0.nupkg +system.runtime.handles\4.3.0\system.runtime.handles.4.3.0.nupkg.sha512 +system.runtime.handles\4.3.0\system.runtime.handles.nuspec +system.runtime.handles\4.3.0\ThirdPartyNotices.txt +system.runtime.interopservices.runtimeinformation\4.0.0\dotnet_library_license.txt +system.runtime.interopservices.runtimeinformation\4.0.0\lib\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\win8\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\aot\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\unix\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg +system.runtime.interopservices.runtimeinformation\4.0.0\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512 +system.runtime.interopservices.runtimeinformation\4.0.0\system.runtime.interopservices.runtimeinformation.nuspec +system.runtime.interopservices.runtimeinformation\4.0.0\ThirdPartyNotices.txt +system.runtime.interopservices.runtimeinformation\4.3.0\dotnet_library_license.txt +system.runtime.interopservices.runtimeinformation\4.3.0\lib\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\win8\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\aot\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\unix\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg +system.runtime.interopservices.runtimeinformation\4.3.0\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512 +system.runtime.interopservices.runtimeinformation\4.3.0\system.runtime.interopservices.runtimeinformation.nuspec +system.runtime.interopservices.runtimeinformation\4.3.0\ThirdPartyNotices.txt +system.runtime.interopservices\4.1.0\dotnet_library_license.txt +system.runtime.interopservices\4.1.0\lib\MonoAndroid10\_._ +system.runtime.interopservices\4.1.0\lib\MonoTouch10\_._ +system.runtime.interopservices\4.1.0\lib\net45\_._ +system.runtime.interopservices\4.1.0\lib\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.1.0\lib\win8\_._ +system.runtime.interopservices\4.1.0\lib\wpa81\_._ +system.runtime.interopservices\4.1.0\lib\xamarinios10\_._ +system.runtime.interopservices\4.1.0\lib\xamarinmac20\_._ +system.runtime.interopservices\4.1.0\lib\xamarintvos10\_._ +system.runtime.interopservices\4.1.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices\4.1.0\ref\MonoAndroid10\_._ +system.runtime.interopservices\4.1.0\ref\MonoTouch10\_._ +system.runtime.interopservices\4.1.0\ref\net45\_._ +system.runtime.interopservices\4.1.0\ref\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netcore50\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.2\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.3\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.5\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.1.0\ref\win8\_._ +system.runtime.interopservices\4.1.0\ref\wpa81\_._ +system.runtime.interopservices\4.1.0\ref\xamarinios10\_._ +system.runtime.interopservices\4.1.0\ref\xamarinmac20\_._ +system.runtime.interopservices\4.1.0\ref\xamarintvos10\_._ +system.runtime.interopservices\4.1.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices\4.1.0\system.runtime.interopservices.4.1.0.nupkg +system.runtime.interopservices\4.1.0\system.runtime.interopservices.4.1.0.nupkg.sha512 +system.runtime.interopservices\4.1.0\system.runtime.interopservices.nuspec +system.runtime.interopservices\4.1.0\ThirdPartyNotices.txt +system.runtime.interopservices\4.3.0\dotnet_library_license.txt +system.runtime.interopservices\4.3.0\lib\MonoAndroid10\_._ +system.runtime.interopservices\4.3.0\lib\MonoTouch10\_._ +system.runtime.interopservices\4.3.0\lib\net45\_._ +system.runtime.interopservices\4.3.0\lib\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\lib\net463\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.3.0\lib\win8\_._ +system.runtime.interopservices\4.3.0\lib\wpa81\_._ +system.runtime.interopservices\4.3.0\lib\xamarinios10\_._ +system.runtime.interopservices\4.3.0\lib\xamarinmac20\_._ +system.runtime.interopservices\4.3.0\lib\xamarintvos10\_._ +system.runtime.interopservices\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices\4.3.0\ref\MonoAndroid10\_._ +system.runtime.interopservices\4.3.0\ref\MonoTouch10\_._ +system.runtime.interopservices\4.3.0\ref\net45\_._ +system.runtime.interopservices\4.3.0\ref\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\net463\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netcore50\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netcoreapp1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.2\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.3\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.5\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.3.0\ref\win8\_._ +system.runtime.interopservices\4.3.0\ref\wpa81\_._ +system.runtime.interopservices\4.3.0\ref\xamarinios10\_._ +system.runtime.interopservices\4.3.0\ref\xamarinmac20\_._ +system.runtime.interopservices\4.3.0\ref\xamarintvos10\_._ +system.runtime.interopservices\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices\4.3.0\system.runtime.interopservices.4.3.0.nupkg +system.runtime.interopservices\4.3.0\system.runtime.interopservices.4.3.0.nupkg.sha512 +system.runtime.interopservices\4.3.0\system.runtime.interopservices.nuspec +system.runtime.interopservices\4.3.0\ThirdPartyNotices.txt +system.runtime.numerics\4.0.1\dotnet_library_license.txt +system.runtime.numerics\4.0.1\lib\MonoAndroid10\_._ +system.runtime.numerics\4.0.1\lib\MonoTouch10\_._ +system.runtime.numerics\4.0.1\lib\net45\_._ +system.runtime.numerics\4.0.1\lib\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\lib\netstandard1.3\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\lib\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.0.1\lib\win8\_._ +system.runtime.numerics\4.0.1\lib\wpa81\_._ +system.runtime.numerics\4.0.1\lib\xamarinios10\_._ +system.runtime.numerics\4.0.1\lib\xamarinmac20\_._ +system.runtime.numerics\4.0.1\lib\xamarintvos10\_._ +system.runtime.numerics\4.0.1\lib\xamarinwatchos10\_._ +system.runtime.numerics\4.0.1\ref\MonoAndroid10\_._ +system.runtime.numerics\4.0.1\ref\MonoTouch10\_._ +system.runtime.numerics\4.0.1\ref\net45\_._ +system.runtime.numerics\4.0.1\ref\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\ref\netstandard1.1\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\ref\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.0.1\ref\win8\_._ +system.runtime.numerics\4.0.1\ref\wpa81\_._ +system.runtime.numerics\4.0.1\ref\xamarinios10\_._ +system.runtime.numerics\4.0.1\ref\xamarinmac20\_._ +system.runtime.numerics\4.0.1\ref\xamarintvos10\_._ +system.runtime.numerics\4.0.1\ref\xamarinwatchos10\_._ +system.runtime.numerics\4.0.1\system.runtime.numerics.4.0.1.nupkg +system.runtime.numerics\4.0.1\system.runtime.numerics.4.0.1.nupkg.sha512 +system.runtime.numerics\4.0.1\system.runtime.numerics.nuspec +system.runtime.numerics\4.0.1\ThirdPartyNotices.txt +system.runtime.numerics\4.3.0\dotnet_library_license.txt +system.runtime.numerics\4.3.0\lib\MonoAndroid10\_._ +system.runtime.numerics\4.3.0\lib\MonoTouch10\_._ +system.runtime.numerics\4.3.0\lib\net45\_._ +system.runtime.numerics\4.3.0\lib\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\lib\netstandard1.3\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.3.0\lib\win8\_._ +system.runtime.numerics\4.3.0\lib\wpa81\_._ +system.runtime.numerics\4.3.0\lib\xamarinios10\_._ +system.runtime.numerics\4.3.0\lib\xamarinmac20\_._ +system.runtime.numerics\4.3.0\lib\xamarintvos10\_._ +system.runtime.numerics\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.numerics\4.3.0\ref\MonoAndroid10\_._ +system.runtime.numerics\4.3.0\ref\MonoTouch10\_._ +system.runtime.numerics\4.3.0\ref\net45\_._ +system.runtime.numerics\4.3.0\ref\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\ref\netstandard1.1\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.3.0\ref\win8\_._ +system.runtime.numerics\4.3.0\ref\wpa81\_._ +system.runtime.numerics\4.3.0\ref\xamarinios10\_._ +system.runtime.numerics\4.3.0\ref\xamarinmac20\_._ +system.runtime.numerics\4.3.0\ref\xamarintvos10\_._ +system.runtime.numerics\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.numerics\4.3.0\system.runtime.numerics.4.3.0.nupkg +system.runtime.numerics\4.3.0\system.runtime.numerics.4.3.0.nupkg.sha512 +system.runtime.numerics\4.3.0\system.runtime.numerics.nuspec +system.runtime.numerics\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.formatters\4.3.0\dotnet_library_license.txt +system.runtime.serialization.formatters\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.formatters\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.formatters\4.3.0\lib\net46\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.formatters\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.formatters\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.formatters\4.3.0\ref\net46\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.formatters\4.3.0\system.runtime.serialization.formatters.4.3.0.nupkg +system.runtime.serialization.formatters\4.3.0\system.runtime.serialization.formatters.4.3.0.nupkg.sha512 +system.runtime.serialization.formatters\4.3.0\system.runtime.serialization.formatters.nuspec +system.runtime.serialization.formatters\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.json\4.0.2\dotnet_library_license.txt +system.runtime.serialization.json\4.0.2\lib\MonoAndroid10\_._ +system.runtime.serialization.json\4.0.2\lib\MonoTouch10\_._ +system.runtime.serialization.json\4.0.2\lib\net45\_._ +system.runtime.serialization.json\4.0.2\lib\netcore50\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\lib\netstandard1.3\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.json\4.0.2\lib\win8\_._ +system.runtime.serialization.json\4.0.2\lib\wp80\_._ +system.runtime.serialization.json\4.0.2\lib\wpa81\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinios10\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinmac20\_._ +system.runtime.serialization.json\4.0.2\lib\xamarintvos10\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinwatchos10\_._ +system.runtime.serialization.json\4.0.2\ref\MonoAndroid10\_._ +system.runtime.serialization.json\4.0.2\ref\MonoTouch10\_._ +system.runtime.serialization.json\4.0.2\ref\net45\_._ +system.runtime.serialization.json\4.0.2\ref\netcore50\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\ref\netstandard1.0\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.json\4.0.2\ref\win8\_._ +system.runtime.serialization.json\4.0.2\ref\wp80\_._ +system.runtime.serialization.json\4.0.2\ref\wpa81\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinios10\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinmac20\_._ +system.runtime.serialization.json\4.0.2\ref\xamarintvos10\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinwatchos10\_._ +system.runtime.serialization.json\4.0.2\system.runtime.serialization.json.4.0.2.nupkg +system.runtime.serialization.json\4.0.2\system.runtime.serialization.json.4.0.2.nupkg.sha512 +system.runtime.serialization.json\4.0.2\system.runtime.serialization.json.nuspec +system.runtime.serialization.json\4.0.2\ThirdPartyNotices.txt +system.runtime.serialization.primitives\4.1.1\dotnet_library_license.txt +system.runtime.serialization.primitives\4.1.1\lib\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.1.1\lib\MonoTouch10\_._ +system.runtime.serialization.primitives\4.1.1\lib\net45\_._ +system.runtime.serialization.primitives\4.1.1\lib\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.1.1\lib\win8\_._ +system.runtime.serialization.primitives\4.1.1\lib\wp80\_._ +system.runtime.serialization.primitives\4.1.1\lib\wpa81\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinios10\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinmac20\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarintvos10\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.1.1\ref\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.1.1\ref\MonoTouch10\_._ +system.runtime.serialization.primitives\4.1.1\ref\net45\_._ +system.runtime.serialization.primitives\4.1.1\ref\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.1.1\ref\win8\_._ +system.runtime.serialization.primitives\4.1.1\ref\wp80\_._ +system.runtime.serialization.primitives\4.1.1\ref\wpa81\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinios10\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinmac20\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarintvos10\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.1.1\runtimes\aot\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\system.runtime.serialization.primitives.4.1.1.nupkg +system.runtime.serialization.primitives\4.1.1\system.runtime.serialization.primitives.4.1.1.nupkg.sha512 +system.runtime.serialization.primitives\4.1.1\system.runtime.serialization.primitives.nuspec +system.runtime.serialization.primitives\4.1.1\ThirdPartyNotices.txt +system.runtime.serialization.primitives\4.3.0\dotnet_library_license.txt +system.runtime.serialization.primitives\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.primitives\4.3.0\lib\net45\_._ +system.runtime.serialization.primitives\4.3.0\lib\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.3.0\lib\win8\_._ +system.runtime.serialization.primitives\4.3.0\lib\wp80\_._ +system.runtime.serialization.primitives\4.3.0\lib\wpa81\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.primitives\4.3.0\ref\net45\_._ +system.runtime.serialization.primitives\4.3.0\ref\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.3.0\ref\win8\_._ +system.runtime.serialization.primitives\4.3.0\ref\wp80\_._ +system.runtime.serialization.primitives\4.3.0\ref\wpa81\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.3.0\runtimes\aot\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\system.runtime.serialization.primitives.4.3.0.nupkg +system.runtime.serialization.primitives\4.3.0\system.runtime.serialization.primitives.4.3.0.nupkg.sha512 +system.runtime.serialization.primitives\4.3.0\system.runtime.serialization.primitives.nuspec +system.runtime.serialization.primitives\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.xml\4.3.0\dotnet_library_license.txt +system.runtime.serialization.xml\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.xml\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.xml\4.3.0\lib\net45\_._ +system.runtime.serialization.xml\4.3.0\lib\net46\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\netcore50\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.xml\4.3.0\lib\win8\_._ +system.runtime.serialization.xml\4.3.0\lib\wp80\_._ +system.runtime.serialization.xml\4.3.0\lib\wpa81\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.xml\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.xml\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.xml\4.3.0\ref\net45\_._ +system.runtime.serialization.xml\4.3.0\ref\net46\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netcore50\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.xml\4.3.0\ref\win8\_._ +system.runtime.serialization.xml\4.3.0\ref\wp80\_._ +system.runtime.serialization.xml\4.3.0\ref\wpa81\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.xml\4.3.0\system.runtime.serialization.xml.4.3.0.nupkg +system.runtime.serialization.xml\4.3.0\system.runtime.serialization.xml.4.3.0.nupkg.sha512 +system.runtime.serialization.xml\4.3.0\system.runtime.serialization.xml.nuspec +system.runtime.serialization.xml\4.3.0\ThirdPartyNotices.txt +system.runtime\4.1.0\dotnet_library_license.txt +system.runtime\4.1.0\lib\MonoAndroid10\_._ +system.runtime\4.1.0\lib\MonoTouch10\_._ +system.runtime\4.1.0\lib\net45\_._ +system.runtime\4.1.0\lib\net462\System.Runtime.dll +system.runtime\4.1.0\lib\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.1.0\lib\win8\_._ +system.runtime\4.1.0\lib\wp80\_._ +system.runtime\4.1.0\lib\wpa81\_._ +system.runtime\4.1.0\lib\xamarinios10\_._ +system.runtime\4.1.0\lib\xamarinmac20\_._ +system.runtime\4.1.0\lib\xamarintvos10\_._ +system.runtime\4.1.0\lib\xamarinwatchos10\_._ +system.runtime\4.1.0\ref\MonoAndroid10\_._ +system.runtime\4.1.0\ref\MonoTouch10\_._ +system.runtime\4.1.0\ref\net45\_._ +system.runtime\4.1.0\ref\net462\System.Runtime.dll +system.runtime\4.1.0\ref\netcore50\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.0\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.2\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.3\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.5\System.Runtime.dll +system.runtime\4.1.0\ref\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.1.0\ref\win8\_._ +system.runtime\4.1.0\ref\wp80\_._ +system.runtime\4.1.0\ref\wpa81\_._ +system.runtime\4.1.0\ref\xamarinios10\_._ +system.runtime\4.1.0\ref\xamarinmac20\_._ +system.runtime\4.1.0\ref\xamarintvos10\_._ +system.runtime\4.1.0\ref\xamarinwatchos10\_._ +system.runtime\4.1.0\system.runtime.4.1.0.nupkg +system.runtime\4.1.0\system.runtime.4.1.0.nupkg.sha512 +system.runtime\4.1.0\system.runtime.nuspec +system.runtime\4.1.0\ThirdPartyNotices.txt +system.runtime\4.3.0\dotnet_library_license.txt +system.runtime\4.3.0\lib\MonoAndroid10\_._ +system.runtime\4.3.0\lib\MonoTouch10\_._ +system.runtime\4.3.0\lib\net45\_._ +system.runtime\4.3.0\lib\net462\System.Runtime.dll +system.runtime\4.3.0\lib\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.3.0\lib\win8\_._ +system.runtime\4.3.0\lib\wp80\_._ +system.runtime\4.3.0\lib\wpa81\_._ +system.runtime\4.3.0\lib\xamarinios10\_._ +system.runtime\4.3.0\lib\xamarinmac20\_._ +system.runtime\4.3.0\lib\xamarintvos10\_._ +system.runtime\4.3.0\lib\xamarinwatchos10\_._ +system.runtime\4.3.0\ref\MonoAndroid10\_._ +system.runtime\4.3.0\ref\MonoTouch10\_._ +system.runtime\4.3.0\ref\net45\_._ +system.runtime\4.3.0\ref\net462\System.Runtime.dll +system.runtime\4.3.0\ref\netcore50\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.0\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.2\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.3\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.5\System.Runtime.dll +system.runtime\4.3.0\ref\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.3.0\ref\win8\_._ +system.runtime\4.3.0\ref\wp80\_._ +system.runtime\4.3.0\ref\wpa81\_._ +system.runtime\4.3.0\ref\xamarinios10\_._ +system.runtime\4.3.0\ref\xamarinmac20\_._ +system.runtime\4.3.0\ref\xamarintvos10\_._ +system.runtime\4.3.0\ref\xamarinwatchos10\_._ +system.runtime\4.3.0\system.runtime.4.3.0.nupkg +system.runtime\4.3.0\system.runtime.4.3.0.nupkg.sha512 +system.runtime\4.3.0\system.runtime.nuspec +system.runtime\4.3.0\ThirdPartyNotices.txt +system.security.accesscontrol\4.5.0\.signature.p7s +system.security.accesscontrol\4.5.0\lib\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\netstandard2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\LICENSE.TXT +system.security.accesscontrol\4.5.0\ref\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\runtimes\win\lib\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\system.security.accesscontrol.4.5.0.nupkg +system.security.accesscontrol\4.5.0\system.security.accesscontrol.4.5.0.nupkg.sha512 +system.security.accesscontrol\4.5.0\system.security.accesscontrol.nuspec +system.security.accesscontrol\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.accesscontrol\4.5.0\useSharedDesignerContext.txt +system.security.accesscontrol\4.5.0\version.txt +system.security.claims\4.3.0\dotnet_library_license.txt +system.security.claims\4.3.0\lib\MonoAndroid10\_._ +system.security.claims\4.3.0\lib\MonoTouch10\_._ +system.security.claims\4.3.0\lib\net46\System.Security.Claims.dll +system.security.claims\4.3.0\lib\netstandard1.3\System.Security.Claims.dll +system.security.claims\4.3.0\lib\xamarinios10\_._ +system.security.claims\4.3.0\lib\xamarinmac20\_._ +system.security.claims\4.3.0\lib\xamarintvos10\_._ +system.security.claims\4.3.0\lib\xamarinwatchos10\_._ +system.security.claims\4.3.0\ref\MonoAndroid10\_._ +system.security.claims\4.3.0\ref\MonoTouch10\_._ +system.security.claims\4.3.0\ref\net46\System.Security.Claims.dll +system.security.claims\4.3.0\ref\netstandard1.3\System.Security.Claims.dll +system.security.claims\4.3.0\ref\xamarinios10\_._ +system.security.claims\4.3.0\ref\xamarinmac20\_._ +system.security.claims\4.3.0\ref\xamarintvos10\_._ +system.security.claims\4.3.0\ref\xamarinwatchos10\_._ +system.security.claims\4.3.0\system.security.claims.4.3.0.nupkg +system.security.claims\4.3.0\system.security.claims.4.3.0.nupkg.sha512 +system.security.claims\4.3.0\system.security.claims.nuspec +system.security.claims\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.algorithms\4.2.0\dotnet_library_license.txt +system.security.cryptography.algorithms\4.2.0\lib\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.2.0\lib\MonoTouch10\_._ +system.security.cryptography.algorithms\4.2.0\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\xamarinios10\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarinmac20\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarintvos10\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.2.0\ref\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.2.0\ref\MonoTouch10\_._ +system.security.cryptography.algorithms\4.2.0\ref\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\xamarinios10\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarinmac20\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarintvos10\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.2.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\netcore50\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\system.security.cryptography.algorithms.4.2.0.nupkg +system.security.cryptography.algorithms\4.2.0\system.security.cryptography.algorithms.4.2.0.nupkg.sha512 +system.security.cryptography.algorithms\4.2.0\system.security.cryptography.algorithms.nuspec +system.security.cryptography.algorithms\4.2.0\ThirdPartyNotices.txt +system.security.cryptography.algorithms\4.3.0\dotnet_library_license.txt +system.security.cryptography.algorithms\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.algorithms\4.3.0\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.algorithms\4.3.0\ref\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.3.0\runtimes\osx\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\netcore50\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\system.security.cryptography.algorithms.4.3.0.nupkg +system.security.cryptography.algorithms\4.3.0\system.security.cryptography.algorithms.4.3.0.nupkg.sha512 +system.security.cryptography.algorithms\4.3.0\system.security.cryptography.algorithms.nuspec +system.security.cryptography.algorithms\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.2.0\dotnet_library_license.txt +system.security.cryptography.cng\4.2.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\system.security.cryptography.cng.4.2.0.nupkg +system.security.cryptography.cng\4.2.0\system.security.cryptography.cng.4.2.0.nupkg.sha512 +system.security.cryptography.cng\4.2.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.2.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.3.0\dotnet_library_license.txt +system.security.cryptography.cng\4.3.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\system.security.cryptography.cng.4.3.0.nupkg +system.security.cryptography.cng\4.3.0\system.security.cryptography.cng.4.3.0.nupkg.sha512 +system.security.cryptography.cng\4.3.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.5.0\.signature.p7s +system.security.cryptography.cng\4.5.0\lib\MonoAndroid10\_._ +system.security.cryptography.cng\4.5.0\lib\MonoTouch10\_._ +system.security.cryptography.cng\4.5.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinios10\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinmac20\_._ +system.security.cryptography.cng\4.5.0\lib\xamarintvos10\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinwatchos10\_._ +system.security.cryptography.cng\4.5.0\LICENSE.TXT +system.security.cryptography.cng\4.5.0\ref\MonoAndroid10\_._ +system.security.cryptography.cng\4.5.0\ref\MonoTouch10\_._ +system.security.cryptography.cng\4.5.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinios10\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinmac20\_._ +system.security.cryptography.cng\4.5.0\ref\xamarintvos10\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinwatchos10\_._ +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\system.security.cryptography.cng.4.5.0.nupkg +system.security.cryptography.cng\4.5.0\system.security.cryptography.cng.4.5.0.nupkg.sha512 +system.security.cryptography.cng\4.5.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.cng\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.cng\4.5.0\version.txt +system.security.cryptography.csp\4.0.0\dotnet_library_license.txt +system.security.cryptography.csp\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.csp\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.csp\4.0.0\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.csp\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.csp\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.csp\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.csp\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.csp\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.csp\4.0.0\ref\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.csp\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.csp\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.csp\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.csp\4.0.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\runtimes\win\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\runtimes\win\lib\netcore50\_._ +system.security.cryptography.csp\4.0.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\system.security.cryptography.csp.4.0.0.nupkg +system.security.cryptography.csp\4.0.0\system.security.cryptography.csp.4.0.0.nupkg.sha512 +system.security.cryptography.csp\4.0.0\system.security.cryptography.csp.nuspec +system.security.cryptography.csp\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.csp\4.3.0\dotnet_library_license.txt +system.security.cryptography.csp\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.csp\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.csp\4.3.0\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.csp\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.csp\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.csp\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.csp\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.csp\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.csp\4.3.0\ref\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.csp\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.csp\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.csp\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.csp\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\runtimes\win\lib\netcore50\_._ +system.security.cryptography.csp\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\system.security.cryptography.csp.4.3.0.nupkg +system.security.cryptography.csp\4.3.0\system.security.cryptography.csp.4.3.0.nupkg.sha512 +system.security.cryptography.csp\4.3.0\system.security.cryptography.csp.nuspec +system.security.cryptography.csp\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.encoding\4.0.0\dotnet_library_license.txt +system.security.cryptography.encoding\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.encoding\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.encoding\4.0.0\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.encoding\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.encoding\4.0.0\ref\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.0.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\runtimes\win\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\system.security.cryptography.encoding.4.0.0.nupkg +system.security.cryptography.encoding\4.0.0\system.security.cryptography.encoding.4.0.0.nupkg.sha512 +system.security.cryptography.encoding\4.0.0\system.security.cryptography.encoding.nuspec +system.security.cryptography.encoding\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.encoding\4.3.0\dotnet_library_license.txt +system.security.cryptography.encoding\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.encoding\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.encoding\4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.encoding\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.encoding\4.3.0\ref\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\system.security.cryptography.encoding.4.3.0.nupkg +system.security.cryptography.encoding\4.3.0\system.security.cryptography.encoding.4.3.0.nupkg.sha512 +system.security.cryptography.encoding\4.3.0\system.security.cryptography.encoding.nuspec +system.security.cryptography.encoding\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.openssl\4.0.0\dotnet_library_license.txt +system.security.cryptography.openssl\4.0.0\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\system.security.cryptography.openssl.4.0.0.nupkg +system.security.cryptography.openssl\4.0.0\system.security.cryptography.openssl.4.0.0.nupkg.sha512 +system.security.cryptography.openssl\4.0.0\system.security.cryptography.openssl.nuspec +system.security.cryptography.openssl\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +system.security.cryptography.openssl\4.3.0\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\system.security.cryptography.openssl.4.3.0.nupkg +system.security.cryptography.openssl\4.3.0\system.security.cryptography.openssl.4.3.0.nupkg.sha512 +system.security.cryptography.openssl\4.3.0\system.security.cryptography.openssl.nuspec +system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.pkcs\4.5.0\.signature.p7s +system.security.cryptography.pkcs\4.5.0\lib\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\LICENSE.TXT +system.security.cryptography.pkcs\4.5.0\ref\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\system.security.cryptography.pkcs.4.5.0.nupkg +system.security.cryptography.pkcs\4.5.0\system.security.cryptography.pkcs.4.5.0.nupkg.sha512 +system.security.cryptography.pkcs\4.5.0\system.security.cryptography.pkcs.nuspec +system.security.cryptography.pkcs\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.pkcs\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.pkcs\4.5.0\version.txt +system.security.cryptography.primitives\4.0.0\dotnet_library_license.txt +system.security.cryptography.primitives\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.primitives\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.primitives\4.0.0\lib\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.primitives\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.primitives\4.0.0\ref\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.0.0\system.security.cryptography.primitives.4.0.0.nupkg +system.security.cryptography.primitives\4.0.0\system.security.cryptography.primitives.4.0.0.nupkg.sha512 +system.security.cryptography.primitives\4.0.0\system.security.cryptography.primitives.nuspec +system.security.cryptography.primitives\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.primitives\4.3.0\dotnet_library_license.txt +system.security.cryptography.primitives\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.primitives\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.primitives\4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.primitives\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.primitives\4.3.0\ref\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.3.0\system.security.cryptography.primitives.4.3.0.nupkg +system.security.cryptography.primitives\4.3.0\system.security.cryptography.primitives.4.3.0.nupkg.sha512 +system.security.cryptography.primitives\4.3.0\system.security.cryptography.primitives.nuspec +system.security.cryptography.primitives\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.x509certificates\4.1.0\dotnet_library_license.txt +system.security.cryptography.x509certificates\4.1.0\lib\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\lib\xamarinios10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\xamarinios10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.1.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\netcore50\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\system.security.cryptography.x509certificates.4.1.0.nupkg +system.security.cryptography.x509certificates\4.1.0\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512 +system.security.cryptography.x509certificates\4.1.0\system.security.cryptography.x509certificates.nuspec +system.security.cryptography.x509certificates\4.1.0\ThirdPartyNotices.txt +system.security.cryptography.x509certificates\4.3.0\dotnet_library_license.txt +system.security.cryptography.x509certificates\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\netcore50\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\system.security.cryptography.x509certificates.4.3.0.nupkg +system.security.cryptography.x509certificates\4.3.0\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512 +system.security.cryptography.x509certificates\4.3.0\system.security.cryptography.x509certificates.nuspec +system.security.cryptography.x509certificates\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.xml\4.5.0\.signature.p7s +system.security.cryptography.xml\4.5.0\lib\net461\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\LICENSE.TXT +system.security.cryptography.xml\4.5.0\ref\net461\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\system.security.cryptography.xml.4.5.0.nupkg +system.security.cryptography.xml\4.5.0\system.security.cryptography.xml.4.5.0.nupkg.sha512 +system.security.cryptography.xml\4.5.0\system.security.cryptography.xml.nuspec +system.security.cryptography.xml\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.xml\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.xml\4.5.0\version.txt +system.security.permissions\4.5.0\.signature.p7s +system.security.permissions\4.5.0\lib\net461\System.Security.Permissions.dll +system.security.permissions\4.5.0\lib\netstandard2.0\System.Security.Permissions.dll +system.security.permissions\4.5.0\LICENSE.TXT +system.security.permissions\4.5.0\ref\net461\System.Security.Permissions.dll +system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll +system.security.permissions\4.5.0\system.security.permissions.4.5.0.nupkg +system.security.permissions\4.5.0\system.security.permissions.4.5.0.nupkg.sha512 +system.security.permissions\4.5.0\system.security.permissions.nuspec +system.security.permissions\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.permissions\4.5.0\useSharedDesignerContext.txt +system.security.permissions\4.5.0\version.txt +system.security.principal.windows\4.3.0\dotnet_library_license.txt +system.security.principal.windows\4.3.0\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\ref\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\ref\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\win\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\system.security.principal.windows.4.3.0.nupkg +system.security.principal.windows\4.3.0\system.security.principal.windows.4.3.0.nupkg.sha512 +system.security.principal.windows\4.3.0\system.security.principal.windows.nuspec +system.security.principal.windows\4.3.0\ThirdPartyNotices.txt +system.security.principal.windows\4.5.0\.signature.p7s +system.security.principal.windows\4.5.0\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\netstandard2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\LICENSE.TXT +system.security.principal.windows\4.5.0\ref\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\runtimes\unix\lib\netcoreapp2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\system.security.principal.windows.4.5.0.nupkg +system.security.principal.windows\4.5.0\system.security.principal.windows.4.5.0.nupkg.sha512 +system.security.principal.windows\4.5.0\system.security.principal.windows.nuspec +system.security.principal.windows\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.principal.windows\4.5.0\useSharedDesignerContext.txt +system.security.principal.windows\4.5.0\version.txt +system.security.principal\4.3.0\dotnet_library_license.txt +system.security.principal\4.3.0\lib\MonoAndroid10\_._ +system.security.principal\4.3.0\lib\MonoTouch10\_._ +system.security.principal\4.3.0\lib\net45\_._ +system.security.principal\4.3.0\lib\netcore50\System.Security.Principal.dll +system.security.principal\4.3.0\lib\netstandard1.0\System.Security.Principal.dll +system.security.principal\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.security.principal\4.3.0\lib\win8\_._ +system.security.principal\4.3.0\lib\wp80\_._ +system.security.principal\4.3.0\lib\wpa81\_._ +system.security.principal\4.3.0\lib\xamarinios10\_._ +system.security.principal\4.3.0\lib\xamarinmac20\_._ +system.security.principal\4.3.0\lib\xamarintvos10\_._ +system.security.principal\4.3.0\lib\xamarinwatchos10\_._ +system.security.principal\4.3.0\ref\MonoAndroid10\_._ +system.security.principal\4.3.0\ref\MonoTouch10\_._ +system.security.principal\4.3.0\ref\net45\_._ +system.security.principal\4.3.0\ref\netcore50\System.Security.Principal.dll +system.security.principal\4.3.0\ref\netstandard1.0\System.Security.Principal.dll +system.security.principal\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.security.principal\4.3.0\ref\win8\_._ +system.security.principal\4.3.0\ref\wp80\_._ +system.security.principal\4.3.0\ref\wpa81\_._ +system.security.principal\4.3.0\ref\xamarinios10\_._ +system.security.principal\4.3.0\ref\xamarinmac20\_._ +system.security.principal\4.3.0\ref\xamarintvos10\_._ +system.security.principal\4.3.0\ref\xamarinwatchos10\_._ +system.security.principal\4.3.0\system.security.principal.4.3.0.nupkg +system.security.principal\4.3.0\system.security.principal.4.3.0.nupkg.sha512 +system.security.principal\4.3.0\system.security.principal.nuspec +system.security.principal\4.3.0\ThirdPartyNotices.txt +system.spatial\5.8.2\lib\net40\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\System.Spatial.dll +system.spatial\5.8.2\lib\net40\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\System.Spatial.dll +system.spatial\5.8.2\lib\netstandard1.1\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\System.Spatial.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\System.Spatial.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\System.Spatial.dll +system.spatial\5.8.2\lib\sl4\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\system.spatial.5.8.2.nupkg +system.spatial\5.8.2\system.spatial.5.8.2.nupkg.sha512 +system.spatial\5.8.2\system.spatial.nuspec +system.text.encoding.codepages\4.3.0\dotnet_library_license.txt +system.text.encoding.codepages\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding.codepages\4.3.0\lib\MonoTouch10\_._ +system.text.encoding.codepages\4.3.0\lib\net46\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\lib\xamarinios10\_._ +system.text.encoding.codepages\4.3.0\lib\xamarinmac20\_._ +system.text.encoding.codepages\4.3.0\lib\xamarintvos10\_._ +system.text.encoding.codepages\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding.codepages\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding.codepages\4.3.0\ref\MonoTouch10\_._ +system.text.encoding.codepages\4.3.0\ref\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\ref\xamarinios10\_._ +system.text.encoding.codepages\4.3.0\ref\xamarinmac20\_._ +system.text.encoding.codepages\4.3.0\ref\xamarintvos10\_._ +system.text.encoding.codepages\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding.codepages\4.3.0\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\system.text.encoding.codepages.4.3.0.nupkg +system.text.encoding.codepages\4.3.0\system.text.encoding.codepages.4.3.0.nupkg.sha512 +system.text.encoding.codepages\4.3.0\system.text.encoding.codepages.nuspec +system.text.encoding.codepages\4.3.0\ThirdPartyNotices.txt +system.text.encoding.codepages\4.5.0\.signature.p7s +system.text.encoding.codepages\4.5.0\lib\MonoAndroid10\_._ +system.text.encoding.codepages\4.5.0\lib\MonoTouch10\_._ +system.text.encoding.codepages\4.5.0\lib\net46\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\net461\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\xamarinios10\_._ +system.text.encoding.codepages\4.5.0\lib\xamarinmac20\_._ +system.text.encoding.codepages\4.5.0\lib\xamarintvos10\_._ +system.text.encoding.codepages\4.5.0\lib\xamarinwatchos10\_._ +system.text.encoding.codepages\4.5.0\LICENSE.TXT +system.text.encoding.codepages\4.5.0\ref\MonoAndroid10\_._ +system.text.encoding.codepages\4.5.0\ref\MonoTouch10\_._ +system.text.encoding.codepages\4.5.0\ref\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\ref\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\ref\xamarinios10\_._ +system.text.encoding.codepages\4.5.0\ref\xamarinmac20\_._ +system.text.encoding.codepages\4.5.0\ref\xamarintvos10\_._ +system.text.encoding.codepages\4.5.0\ref\xamarinwatchos10\_._ +system.text.encoding.codepages\4.5.0\runtimes\win\lib\net461\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\system.text.encoding.codepages.4.5.0.nupkg +system.text.encoding.codepages\4.5.0\system.text.encoding.codepages.4.5.0.nupkg.sha512 +system.text.encoding.codepages\4.5.0\system.text.encoding.codepages.nuspec +system.text.encoding.codepages\4.5.0\THIRD-PARTY-NOTICES.TXT +system.text.encoding.codepages\4.5.0\useSharedDesignerContext.txt +system.text.encoding.codepages\4.5.0\version.txt +system.text.encoding.extensions\4.0.11\dotnet_library_license.txt +system.text.encoding.extensions\4.0.11\lib\MonoAndroid10\_._ +system.text.encoding.extensions\4.0.11\lib\MonoTouch10\_._ +system.text.encoding.extensions\4.0.11\lib\net45\_._ +system.text.encoding.extensions\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.0.11\lib\win8\_._ +system.text.encoding.extensions\4.0.11\lib\wp80\_._ +system.text.encoding.extensions\4.0.11\lib\wpa81\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinios10\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinmac20\_._ +system.text.encoding.extensions\4.0.11\lib\xamarintvos10\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinwatchos10\_._ +system.text.encoding.extensions\4.0.11\ref\MonoAndroid10\_._ +system.text.encoding.extensions\4.0.11\ref\MonoTouch10\_._ +system.text.encoding.extensions\4.0.11\ref\net45\_._ +system.text.encoding.extensions\4.0.11\ref\netcore50\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\netstandard1.0\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\netstandard1.3\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.0.11\ref\win8\_._ +system.text.encoding.extensions\4.0.11\ref\wp80\_._ +system.text.encoding.extensions\4.0.11\ref\wpa81\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinios10\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinmac20\_._ +system.text.encoding.extensions\4.0.11\ref\xamarintvos10\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinwatchos10\_._ +system.text.encoding.extensions\4.0.11\system.text.encoding.extensions.4.0.11.nupkg +system.text.encoding.extensions\4.0.11\system.text.encoding.extensions.4.0.11.nupkg.sha512 +system.text.encoding.extensions\4.0.11\system.text.encoding.extensions.nuspec +system.text.encoding.extensions\4.0.11\ThirdPartyNotices.txt +system.text.encoding.extensions\4.3.0\dotnet_library_license.txt +system.text.encoding.extensions\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding.extensions\4.3.0\lib\MonoTouch10\_._ +system.text.encoding.extensions\4.3.0\lib\net45\_._ +system.text.encoding.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.3.0\lib\win8\_._ +system.text.encoding.extensions\4.3.0\lib\wp80\_._ +system.text.encoding.extensions\4.3.0\lib\wpa81\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinios10\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinmac20\_._ +system.text.encoding.extensions\4.3.0\lib\xamarintvos10\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding.extensions\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding.extensions\4.3.0\ref\MonoTouch10\_._ +system.text.encoding.extensions\4.3.0\ref\net45\_._ +system.text.encoding.extensions\4.3.0\ref\netcore50\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\netstandard1.0\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\netstandard1.3\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.3.0\ref\win8\_._ +system.text.encoding.extensions\4.3.0\ref\wp80\_._ +system.text.encoding.extensions\4.3.0\ref\wpa81\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinios10\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinmac20\_._ +system.text.encoding.extensions\4.3.0\ref\xamarintvos10\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding.extensions\4.3.0\system.text.encoding.extensions.4.3.0.nupkg +system.text.encoding.extensions\4.3.0\system.text.encoding.extensions.4.3.0.nupkg.sha512 +system.text.encoding.extensions\4.3.0\system.text.encoding.extensions.nuspec +system.text.encoding.extensions\4.3.0\ThirdPartyNotices.txt +system.text.encoding\4.0.11\dotnet_library_license.txt +system.text.encoding\4.0.11\lib\MonoAndroid10\_._ +system.text.encoding\4.0.11\lib\MonoTouch10\_._ +system.text.encoding\4.0.11\lib\net45\_._ +system.text.encoding\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.0.11\lib\win8\_._ +system.text.encoding\4.0.11\lib\wp80\_._ +system.text.encoding\4.0.11\lib\wpa81\_._ +system.text.encoding\4.0.11\lib\xamarinios10\_._ +system.text.encoding\4.0.11\lib\xamarinmac20\_._ +system.text.encoding\4.0.11\lib\xamarintvos10\_._ +system.text.encoding\4.0.11\lib\xamarinwatchos10\_._ +system.text.encoding\4.0.11\ref\MonoAndroid10\_._ +system.text.encoding\4.0.11\ref\MonoTouch10\_._ +system.text.encoding\4.0.11\ref\net45\_._ +system.text.encoding\4.0.11\ref\netcore50\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\netstandard1.0\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\netstandard1.3\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.0.11\ref\win8\_._ +system.text.encoding\4.0.11\ref\wp80\_._ +system.text.encoding\4.0.11\ref\wpa81\_._ +system.text.encoding\4.0.11\ref\xamarinios10\_._ +system.text.encoding\4.0.11\ref\xamarinmac20\_._ +system.text.encoding\4.0.11\ref\xamarintvos10\_._ +system.text.encoding\4.0.11\ref\xamarinwatchos10\_._ +system.text.encoding\4.0.11\system.text.encoding.4.0.11.nupkg +system.text.encoding\4.0.11\system.text.encoding.4.0.11.nupkg.sha512 +system.text.encoding\4.0.11\system.text.encoding.nuspec +system.text.encoding\4.0.11\ThirdPartyNotices.txt +system.text.encoding\4.3.0\dotnet_library_license.txt +system.text.encoding\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding\4.3.0\lib\MonoTouch10\_._ +system.text.encoding\4.3.0\lib\net45\_._ +system.text.encoding\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.3.0\lib\win8\_._ +system.text.encoding\4.3.0\lib\wp80\_._ +system.text.encoding\4.3.0\lib\wpa81\_._ +system.text.encoding\4.3.0\lib\xamarinios10\_._ +system.text.encoding\4.3.0\lib\xamarinmac20\_._ +system.text.encoding\4.3.0\lib\xamarintvos10\_._ +system.text.encoding\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding\4.3.0\ref\MonoTouch10\_._ +system.text.encoding\4.3.0\ref\net45\_._ +system.text.encoding\4.3.0\ref\netcore50\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\netstandard1.0\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\netstandard1.3\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.3.0\ref\win8\_._ +system.text.encoding\4.3.0\ref\wp80\_._ +system.text.encoding\4.3.0\ref\wpa81\_._ +system.text.encoding\4.3.0\ref\xamarinios10\_._ +system.text.encoding\4.3.0\ref\xamarinmac20\_._ +system.text.encoding\4.3.0\ref\xamarintvos10\_._ +system.text.encoding\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding\4.3.0\system.text.encoding.4.3.0.nupkg +system.text.encoding\4.3.0\system.text.encoding.4.3.0.nupkg.sha512 +system.text.encoding\4.3.0\system.text.encoding.nuspec +system.text.encoding\4.3.0\ThirdPartyNotices.txt +system.text.encodings.web\4.3.1\dotnet_library_license.txt +system.text.encodings.web\4.3.1\lib\netstandard1.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.3.1\system.text.encodings.web.4.3.1.nupkg +system.text.encodings.web\4.3.1\system.text.encodings.web.4.3.1.nupkg.sha512 +system.text.encodings.web\4.3.1\system.text.encodings.web.nuspec +system.text.encodings.web\4.3.1\ThirdPartyNotices.txt +system.text.encodings.web\4.5.0\.signature.p7s +system.text.encodings.web\4.5.0\lib\netstandard1.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.5.0\lib\netstandard2.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.5.0\LICENSE.TXT +system.text.encodings.web\4.5.0\system.text.encodings.web.4.5.0.nupkg +system.text.encodings.web\4.5.0\system.text.encodings.web.4.5.0.nupkg.sha512 +system.text.encodings.web\4.5.0\system.text.encodings.web.nuspec +system.text.encodings.web\4.5.0\THIRD-PARTY-NOTICES.TXT +system.text.encodings.web\4.5.0\useSharedDesignerContext.txt +system.text.encodings.web\4.5.0\version.txt +system.text.regularexpressions\4.1.0\dotnet_library_license.txt +system.text.regularexpressions\4.1.0\lib\MonoAndroid10\_._ +system.text.regularexpressions\4.1.0\lib\MonoTouch10\_._ +system.text.regularexpressions\4.1.0\lib\net45\_._ +system.text.regularexpressions\4.1.0\lib\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.1.0\lib\win8\_._ +system.text.regularexpressions\4.1.0\lib\wp80\_._ +system.text.regularexpressions\4.1.0\lib\wpa81\_._ +system.text.regularexpressions\4.1.0\lib\xamarinios10\_._ +system.text.regularexpressions\4.1.0\lib\xamarinmac20\_._ +system.text.regularexpressions\4.1.0\lib\xamarintvos10\_._ +system.text.regularexpressions\4.1.0\lib\xamarinwatchos10\_._ +system.text.regularexpressions\4.1.0\ref\MonoAndroid10\_._ +system.text.regularexpressions\4.1.0\ref\MonoTouch10\_._ +system.text.regularexpressions\4.1.0\ref\net45\_._ +system.text.regularexpressions\4.1.0\ref\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.0\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.3\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.1.0\ref\win8\_._ +system.text.regularexpressions\4.1.0\ref\wp80\_._ +system.text.regularexpressions\4.1.0\ref\wpa81\_._ +system.text.regularexpressions\4.1.0\ref\xamarinios10\_._ +system.text.regularexpressions\4.1.0\ref\xamarinmac20\_._ +system.text.regularexpressions\4.1.0\ref\xamarintvos10\_._ +system.text.regularexpressions\4.1.0\ref\xamarinwatchos10\_._ +system.text.regularexpressions\4.1.0\system.text.regularexpressions.4.1.0.nupkg +system.text.regularexpressions\4.1.0\system.text.regularexpressions.4.1.0.nupkg.sha512 +system.text.regularexpressions\4.1.0\system.text.regularexpressions.nuspec +system.text.regularexpressions\4.1.0\ThirdPartyNotices.txt +system.text.regularexpressions\4.3.0\dotnet_library_license.txt +system.text.regularexpressions\4.3.0\lib\MonoAndroid10\_._ +system.text.regularexpressions\4.3.0\lib\MonoTouch10\_._ +system.text.regularexpressions\4.3.0\lib\net45\_._ +system.text.regularexpressions\4.3.0\lib\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.3.0\lib\win8\_._ +system.text.regularexpressions\4.3.0\lib\wp80\_._ +system.text.regularexpressions\4.3.0\lib\wpa81\_._ +system.text.regularexpressions\4.3.0\lib\xamarinios10\_._ +system.text.regularexpressions\4.3.0\lib\xamarinmac20\_._ +system.text.regularexpressions\4.3.0\lib\xamarintvos10\_._ +system.text.regularexpressions\4.3.0\lib\xamarinwatchos10\_._ +system.text.regularexpressions\4.3.0\ref\MonoAndroid10\_._ +system.text.regularexpressions\4.3.0\ref\MonoTouch10\_._ +system.text.regularexpressions\4.3.0\ref\net45\_._ +system.text.regularexpressions\4.3.0\ref\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netcoreapp1.1\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.0\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.3\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.3.0\ref\win8\_._ +system.text.regularexpressions\4.3.0\ref\wp80\_._ +system.text.regularexpressions\4.3.0\ref\wpa81\_._ +system.text.regularexpressions\4.3.0\ref\xamarinios10\_._ +system.text.regularexpressions\4.3.0\ref\xamarinmac20\_._ +system.text.regularexpressions\4.3.0\ref\xamarintvos10\_._ +system.text.regularexpressions\4.3.0\ref\xamarinwatchos10\_._ +system.text.regularexpressions\4.3.0\system.text.regularexpressions.4.3.0.nupkg +system.text.regularexpressions\4.3.0\system.text.regularexpressions.4.3.0.nupkg.sha512 +system.text.regularexpressions\4.3.0\system.text.regularexpressions.nuspec +system.text.regularexpressions\4.3.0\ThirdPartyNotices.txt +system.threading.channels\4.5.0\.signature.p7s +system.threading.channels\4.5.0\lib\netcoreapp2.1\System.Threading.Channels.dll +system.threading.channels\4.5.0\lib\netstandard1.3\System.Threading.Channels.dll +system.threading.channels\4.5.0\lib\netstandard2.0\System.Threading.Channels.dll +system.threading.channels\4.5.0\LICENSE.TXT +system.threading.channels\4.5.0\system.threading.channels.4.5.0.nupkg +system.threading.channels\4.5.0\system.threading.channels.4.5.0.nupkg.sha512 +system.threading.channels\4.5.0\system.threading.channels.nuspec +system.threading.channels\4.5.0\THIRD-PARTY-NOTICES.TXT +system.threading.channels\4.5.0\useSharedDesignerContext.txt +system.threading.channels\4.5.0\version.txt +system.threading.tasks.extensions\4.0.0\dotnet_library_license.txt +system.threading.tasks.extensions\4.0.0\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.0.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.0.0\system.threading.tasks.extensions.4.0.0.nupkg +system.threading.tasks.extensions\4.0.0\system.threading.tasks.extensions.4.0.0.nupkg.sha512 +system.threading.tasks.extensions\4.0.0\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.0.0\ThirdPartyNotices.txt +system.threading.tasks.extensions\4.3.0\dotnet_library_license.txt +system.threading.tasks.extensions\4.3.0\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.3.0\system.threading.tasks.extensions.4.3.0.nupkg +system.threading.tasks.extensions\4.3.0\system.threading.tasks.extensions.4.3.0.nupkg.sha512 +system.threading.tasks.extensions\4.3.0\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.3.0\ThirdPartyNotices.txt +system.threading.tasks.extensions\4.5.1\.signature.p7s +system.threading.tasks.extensions\4.5.1\lib\MonoAndroid10\_._ +system.threading.tasks.extensions\4.5.1\lib\MonoTouch10\_._ +system.threading.tasks.extensions\4.5.1\lib\netcoreapp2.1\_._ +system.threading.tasks.extensions\4.5.1\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\xamarinios10\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarinmac20\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarintvos10\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarinwatchos10\_._ +system.threading.tasks.extensions\4.5.1\LICENSE.TXT +system.threading.tasks.extensions\4.5.1\ref\MonoAndroid10\_._ +system.threading.tasks.extensions\4.5.1\ref\MonoTouch10\_._ +system.threading.tasks.extensions\4.5.1\ref\netcoreapp2.1\_._ +system.threading.tasks.extensions\4.5.1\ref\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\ref\netstandard2.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\ref\xamarinios10\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarinmac20\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarintvos10\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarinwatchos10\_._ +system.threading.tasks.extensions\4.5.1\system.threading.tasks.extensions.4.5.1.nupkg +system.threading.tasks.extensions\4.5.1\system.threading.tasks.extensions.4.5.1.nupkg.sha512 +system.threading.tasks.extensions\4.5.1\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.5.1\THIRD-PARTY-NOTICES.TXT +system.threading.tasks.extensions\4.5.1\useSharedDesignerContext.txt +system.threading.tasks.extensions\4.5.1\version.txt +system.threading.tasks.parallel\4.3.0\dotnet_library_license.txt +system.threading.tasks.parallel\4.3.0\lib\MonoAndroid10\_._ +system.threading.tasks.parallel\4.3.0\lib\MonoTouch10\_._ +system.threading.tasks.parallel\4.3.0\lib\net45\_._ +system.threading.tasks.parallel\4.3.0\lib\netcore50\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.threading.tasks.parallel\4.3.0\lib\win8\_._ +system.threading.tasks.parallel\4.3.0\lib\wpa81\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinios10\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinmac20\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarintvos10\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinwatchos10\_._ +system.threading.tasks.parallel\4.3.0\ref\MonoAndroid10\_._ +system.threading.tasks.parallel\4.3.0\ref\MonoTouch10\_._ +system.threading.tasks.parallel\4.3.0\ref\net45\_._ +system.threading.tasks.parallel\4.3.0\ref\netcore50\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.threading.tasks.parallel\4.3.0\ref\win8\_._ +system.threading.tasks.parallel\4.3.0\ref\wpa81\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinios10\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinmac20\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarintvos10\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinwatchos10\_._ +system.threading.tasks.parallel\4.3.0\system.threading.tasks.parallel.4.3.0.nupkg +system.threading.tasks.parallel\4.3.0\system.threading.tasks.parallel.4.3.0.nupkg.sha512 +system.threading.tasks.parallel\4.3.0\system.threading.tasks.parallel.nuspec +system.threading.tasks.parallel\4.3.0\ThirdPartyNotices.txt +system.threading.tasks\4.0.11\dotnet_library_license.txt +system.threading.tasks\4.0.11\lib\MonoAndroid10\_._ +system.threading.tasks\4.0.11\lib\MonoTouch10\_._ +system.threading.tasks\4.0.11\lib\net45\_._ +system.threading.tasks\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.0.11\lib\win8\_._ +system.threading.tasks\4.0.11\lib\wp80\_._ +system.threading.tasks\4.0.11\lib\wpa81\_._ +system.threading.tasks\4.0.11\lib\xamarinios10\_._ +system.threading.tasks\4.0.11\lib\xamarinmac20\_._ +system.threading.tasks\4.0.11\lib\xamarintvos10\_._ +system.threading.tasks\4.0.11\lib\xamarinwatchos10\_._ +system.threading.tasks\4.0.11\ref\MonoAndroid10\_._ +system.threading.tasks\4.0.11\ref\MonoTouch10\_._ +system.threading.tasks\4.0.11\ref\net45\_._ +system.threading.tasks\4.0.11\ref\netcore50\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\netstandard1.0\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\netstandard1.3\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.0.11\ref\win8\_._ +system.threading.tasks\4.0.11\ref\wp80\_._ +system.threading.tasks\4.0.11\ref\wpa81\_._ +system.threading.tasks\4.0.11\ref\xamarinios10\_._ +system.threading.tasks\4.0.11\ref\xamarinmac20\_._ +system.threading.tasks\4.0.11\ref\xamarintvos10\_._ +system.threading.tasks\4.0.11\ref\xamarinwatchos10\_._ +system.threading.tasks\4.0.11\system.threading.tasks.4.0.11.nupkg +system.threading.tasks\4.0.11\system.threading.tasks.4.0.11.nupkg.sha512 +system.threading.tasks\4.0.11\system.threading.tasks.nuspec +system.threading.tasks\4.0.11\ThirdPartyNotices.txt +system.threading.tasks\4.3.0\dotnet_library_license.txt +system.threading.tasks\4.3.0\lib\MonoAndroid10\_._ +system.threading.tasks\4.3.0\lib\MonoTouch10\_._ +system.threading.tasks\4.3.0\lib\net45\_._ +system.threading.tasks\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.3.0\lib\win8\_._ +system.threading.tasks\4.3.0\lib\wp80\_._ +system.threading.tasks\4.3.0\lib\wpa81\_._ +system.threading.tasks\4.3.0\lib\xamarinios10\_._ +system.threading.tasks\4.3.0\lib\xamarinmac20\_._ +system.threading.tasks\4.3.0\lib\xamarintvos10\_._ +system.threading.tasks\4.3.0\lib\xamarinwatchos10\_._ +system.threading.tasks\4.3.0\ref\MonoAndroid10\_._ +system.threading.tasks\4.3.0\ref\MonoTouch10\_._ +system.threading.tasks\4.3.0\ref\net45\_._ +system.threading.tasks\4.3.0\ref\netcore50\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\netstandard1.0\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\netstandard1.3\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.3.0\ref\win8\_._ +system.threading.tasks\4.3.0\ref\wp80\_._ +system.threading.tasks\4.3.0\ref\wpa81\_._ +system.threading.tasks\4.3.0\ref\xamarinios10\_._ +system.threading.tasks\4.3.0\ref\xamarinmac20\_._ +system.threading.tasks\4.3.0\ref\xamarintvos10\_._ +system.threading.tasks\4.3.0\ref\xamarinwatchos10\_._ +system.threading.tasks\4.3.0\system.threading.tasks.4.3.0.nupkg +system.threading.tasks\4.3.0\system.threading.tasks.4.3.0.nupkg.sha512 +system.threading.tasks\4.3.0\system.threading.tasks.nuspec +system.threading.tasks\4.3.0\ThirdPartyNotices.txt +system.threading.thread\4.3.0\dotnet_library_license.txt +system.threading.thread\4.3.0\lib\MonoAndroid10\_._ +system.threading.thread\4.3.0\lib\MonoTouch10\_._ +system.threading.thread\4.3.0\lib\net46\System.Threading.Thread.dll +system.threading.thread\4.3.0\lib\netcore50\_._ +system.threading.thread\4.3.0\lib\netstandard1.3\System.Threading.Thread.dll +system.threading.thread\4.3.0\lib\xamarinios10\_._ +system.threading.thread\4.3.0\lib\xamarinmac20\_._ +system.threading.thread\4.3.0\lib\xamarintvos10\_._ +system.threading.thread\4.3.0\lib\xamarinwatchos10\_._ +system.threading.thread\4.3.0\ref\MonoAndroid10\_._ +system.threading.thread\4.3.0\ref\MonoTouch10\_._ +system.threading.thread\4.3.0\ref\net46\System.Threading.Thread.dll +system.threading.thread\4.3.0\ref\netstandard1.3\System.Threading.Thread.dll +system.threading.thread\4.3.0\ref\xamarinios10\_._ +system.threading.thread\4.3.0\ref\xamarinmac20\_._ +system.threading.thread\4.3.0\ref\xamarintvos10\_._ +system.threading.thread\4.3.0\ref\xamarinwatchos10\_._ +system.threading.thread\4.3.0\system.threading.thread.4.3.0.nupkg +system.threading.thread\4.3.0\system.threading.thread.4.3.0.nupkg.sha512 +system.threading.thread\4.3.0\system.threading.thread.nuspec +system.threading.thread\4.3.0\ThirdPartyNotices.txt +system.threading.threadpool\4.3.0\dotnet_library_license.txt +system.threading.threadpool\4.3.0\lib\MonoAndroid10\_._ +system.threading.threadpool\4.3.0\lib\MonoTouch10\_._ +system.threading.threadpool\4.3.0\lib\net46\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\lib\netcore50\_._ +system.threading.threadpool\4.3.0\lib\netstandard1.3\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\lib\xamarinios10\_._ +system.threading.threadpool\4.3.0\lib\xamarinmac20\_._ +system.threading.threadpool\4.3.0\lib\xamarintvos10\_._ +system.threading.threadpool\4.3.0\lib\xamarinwatchos10\_._ +system.threading.threadpool\4.3.0\ref\MonoAndroid10\_._ +system.threading.threadpool\4.3.0\ref\MonoTouch10\_._ +system.threading.threadpool\4.3.0\ref\net46\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\ref\netstandard1.3\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\ref\xamarinios10\_._ +system.threading.threadpool\4.3.0\ref\xamarinmac20\_._ +system.threading.threadpool\4.3.0\ref\xamarintvos10\_._ +system.threading.threadpool\4.3.0\ref\xamarinwatchos10\_._ +system.threading.threadpool\4.3.0\system.threading.threadpool.4.3.0.nupkg +system.threading.threadpool\4.3.0\system.threading.threadpool.4.3.0.nupkg.sha512 +system.threading.threadpool\4.3.0\system.threading.threadpool.nuspec +system.threading.threadpool\4.3.0\ThirdPartyNotices.txt +system.threading.timer\4.0.1\dotnet_library_license.txt +system.threading.timer\4.0.1\lib\MonoAndroid10\_._ +system.threading.timer\4.0.1\lib\MonoTouch10\_._ +system.threading.timer\4.0.1\lib\net451\_._ +system.threading.timer\4.0.1\lib\portable-net451+win81+wpa81\_._ +system.threading.timer\4.0.1\lib\win81\_._ +system.threading.timer\4.0.1\lib\wpa81\_._ +system.threading.timer\4.0.1\lib\xamarinios10\_._ +system.threading.timer\4.0.1\lib\xamarinmac20\_._ +system.threading.timer\4.0.1\lib\xamarintvos10\_._ +system.threading.timer\4.0.1\lib\xamarinwatchos10\_._ +system.threading.timer\4.0.1\ref\MonoAndroid10\_._ +system.threading.timer\4.0.1\ref\MonoTouch10\_._ +system.threading.timer\4.0.1\ref\net451\_._ +system.threading.timer\4.0.1\ref\netcore50\System.Threading.Timer.dll +system.threading.timer\4.0.1\ref\netstandard1.2\System.Threading.Timer.dll +system.threading.timer\4.0.1\ref\portable-net451+win81+wpa81\_._ +system.threading.timer\4.0.1\ref\win81\_._ +system.threading.timer\4.0.1\ref\wpa81\_._ +system.threading.timer\4.0.1\ref\xamarinios10\_._ +system.threading.timer\4.0.1\ref\xamarinmac20\_._ +system.threading.timer\4.0.1\ref\xamarintvos10\_._ +system.threading.timer\4.0.1\ref\xamarinwatchos10\_._ +system.threading.timer\4.0.1\system.threading.timer.4.0.1.nupkg +system.threading.timer\4.0.1\system.threading.timer.4.0.1.nupkg.sha512 +system.threading.timer\4.0.1\system.threading.timer.nuspec +system.threading.timer\4.0.1\ThirdPartyNotices.txt +system.threading.timer\4.3.0\dotnet_library_license.txt +system.threading.timer\4.3.0\lib\MonoAndroid10\_._ +system.threading.timer\4.3.0\lib\MonoTouch10\_._ +system.threading.timer\4.3.0\lib\net451\_._ +system.threading.timer\4.3.0\lib\portable-net451+win81+wpa81\_._ +system.threading.timer\4.3.0\lib\win81\_._ +system.threading.timer\4.3.0\lib\wpa81\_._ +system.threading.timer\4.3.0\lib\xamarinios10\_._ +system.threading.timer\4.3.0\lib\xamarinmac20\_._ +system.threading.timer\4.3.0\lib\xamarintvos10\_._ +system.threading.timer\4.3.0\lib\xamarinwatchos10\_._ +system.threading.timer\4.3.0\ref\MonoAndroid10\_._ +system.threading.timer\4.3.0\ref\MonoTouch10\_._ +system.threading.timer\4.3.0\ref\net451\_._ +system.threading.timer\4.3.0\ref\netcore50\System.Threading.Timer.dll +system.threading.timer\4.3.0\ref\netstandard1.2\System.Threading.Timer.dll +system.threading.timer\4.3.0\ref\portable-net451+win81+wpa81\_._ +system.threading.timer\4.3.0\ref\win81\_._ +system.threading.timer\4.3.0\ref\wpa81\_._ +system.threading.timer\4.3.0\ref\xamarinios10\_._ +system.threading.timer\4.3.0\ref\xamarinmac20\_._ +system.threading.timer\4.3.0\ref\xamarintvos10\_._ +system.threading.timer\4.3.0\ref\xamarinwatchos10\_._ +system.threading.timer\4.3.0\system.threading.timer.4.3.0.nupkg +system.threading.timer\4.3.0\system.threading.timer.4.3.0.nupkg.sha512 +system.threading.timer\4.3.0\system.threading.timer.nuspec +system.threading.timer\4.3.0\ThirdPartyNotices.txt +system.threading\4.0.11\dotnet_library_license.txt +system.threading\4.0.11\lib\MonoAndroid10\_._ +system.threading\4.0.11\lib\MonoTouch10\_._ +system.threading\4.0.11\lib\net45\_._ +system.threading\4.0.11\lib\netcore50\System.Threading.dll +system.threading\4.0.11\lib\netstandard1.3\System.Threading.dll +system.threading\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.0.11\lib\win8\_._ +system.threading\4.0.11\lib\wp80\_._ +system.threading\4.0.11\lib\wpa81\_._ +system.threading\4.0.11\lib\xamarinios10\_._ +system.threading\4.0.11\lib\xamarinmac20\_._ +system.threading\4.0.11\lib\xamarintvos10\_._ +system.threading\4.0.11\lib\xamarinwatchos10\_._ +system.threading\4.0.11\ref\MonoAndroid10\_._ +system.threading\4.0.11\ref\MonoTouch10\_._ +system.threading\4.0.11\ref\net45\_._ +system.threading\4.0.11\ref\netcore50\System.Threading.dll +system.threading\4.0.11\ref\netstandard1.0\System.Threading.dll +system.threading\4.0.11\ref\netstandard1.3\System.Threading.dll +system.threading\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.0.11\ref\win8\_._ +system.threading\4.0.11\ref\wp80\_._ +system.threading\4.0.11\ref\wpa81\_._ +system.threading\4.0.11\ref\xamarinios10\_._ +system.threading\4.0.11\ref\xamarinmac20\_._ +system.threading\4.0.11\ref\xamarintvos10\_._ +system.threading\4.0.11\ref\xamarinwatchos10\_._ +system.threading\4.0.11\runtimes\aot\lib\netcore50\System.Threading.dll +system.threading\4.0.11\system.threading.4.0.11.nupkg +system.threading\4.0.11\system.threading.4.0.11.nupkg.sha512 +system.threading\4.0.11\system.threading.nuspec +system.threading\4.0.11\ThirdPartyNotices.txt +system.threading\4.3.0\dotnet_library_license.txt +system.threading\4.3.0\lib\MonoAndroid10\_._ +system.threading\4.3.0\lib\MonoTouch10\_._ +system.threading\4.3.0\lib\net45\_._ +system.threading\4.3.0\lib\netcore50\System.Threading.dll +system.threading\4.3.0\lib\netstandard1.3\System.Threading.dll +system.threading\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.3.0\lib\win8\_._ +system.threading\4.3.0\lib\wp80\_._ +system.threading\4.3.0\lib\wpa81\_._ +system.threading\4.3.0\lib\xamarinios10\_._ +system.threading\4.3.0\lib\xamarinmac20\_._ +system.threading\4.3.0\lib\xamarintvos10\_._ +system.threading\4.3.0\lib\xamarinwatchos10\_._ +system.threading\4.3.0\ref\MonoAndroid10\_._ +system.threading\4.3.0\ref\MonoTouch10\_._ +system.threading\4.3.0\ref\net45\_._ +system.threading\4.3.0\ref\netcore50\System.Threading.dll +system.threading\4.3.0\ref\netstandard1.0\System.Threading.dll +system.threading\4.3.0\ref\netstandard1.3\System.Threading.dll +system.threading\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.3.0\ref\win8\_._ +system.threading\4.3.0\ref\wp80\_._ +system.threading\4.3.0\ref\wpa81\_._ +system.threading\4.3.0\ref\xamarinios10\_._ +system.threading\4.3.0\ref\xamarinmac20\_._ +system.threading\4.3.0\ref\xamarintvos10\_._ +system.threading\4.3.0\ref\xamarinwatchos10\_._ +system.threading\4.3.0\runtimes\aot\lib\netcore50\System.Threading.dll +system.threading\4.3.0\system.threading.4.3.0.nupkg +system.threading\4.3.0\system.threading.4.3.0.nupkg.sha512 +system.threading\4.3.0\system.threading.nuspec +system.threading\4.3.0\ThirdPartyNotices.txt +system.valuetuple\4.3.0\dotnet_library_license.txt +system.valuetuple\4.3.0\lib\netstandard1.0\.xml +system.valuetuple\4.3.0\lib\netstandard1.0\System.ValueTuple.dll +system.valuetuple\4.3.0\lib\portable-net40+sl4+win8+wp8\.xml +system.valuetuple\4.3.0\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.3.0\system.valuetuple.4.3.0.nupkg +system.valuetuple\4.3.0\system.valuetuple.4.3.0.nupkg.sha512 +system.valuetuple\4.3.0\system.valuetuple.nuspec +system.valuetuple\4.3.0\ThirdPartyNotices.txt +system.valuetuple\4.5.0\.signature.p7s +system.valuetuple\4.5.0\lib\MonoAndroid10\_._ +system.valuetuple\4.5.0\lib\MonoTouch10\_._ +system.valuetuple\4.5.0\lib\net461\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\net47\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\netcoreapp2.0\_._ +system.valuetuple\4.5.0\lib\netstandard1.0\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\netstandard2.0\_._ +system.valuetuple\4.5.0\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\uap10.0.16299\_._ +system.valuetuple\4.5.0\lib\xamarinios10\_._ +system.valuetuple\4.5.0\lib\xamarinmac20\_._ +system.valuetuple\4.5.0\lib\xamarintvos10\_._ +system.valuetuple\4.5.0\lib\xamarinwatchos10\_._ +system.valuetuple\4.5.0\LICENSE.TXT +system.valuetuple\4.5.0\ref\MonoAndroid10\_._ +system.valuetuple\4.5.0\ref\MonoTouch10\_._ +system.valuetuple\4.5.0\ref\net461\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\net47\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\netcoreapp2.0\_._ +system.valuetuple\4.5.0\ref\netstandard2.0\_._ +system.valuetuple\4.5.0\ref\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\uap10.0.16299\_._ +system.valuetuple\4.5.0\ref\xamarinios10\_._ +system.valuetuple\4.5.0\ref\xamarinmac20\_._ +system.valuetuple\4.5.0\ref\xamarintvos10\_._ +system.valuetuple\4.5.0\ref\xamarinwatchos10\_._ +system.valuetuple\4.5.0\system.valuetuple.4.5.0.nupkg +system.valuetuple\4.5.0\system.valuetuple.4.5.0.nupkg.sha512 +system.valuetuple\4.5.0\system.valuetuple.nuspec +system.valuetuple\4.5.0\THIRD-PARTY-NOTICES.TXT +system.valuetuple\4.5.0\useSharedDesignerContext.txt +system.valuetuple\4.5.0\version.txt +system.xml.readerwriter\4.0.11\dotnet_library_license.txt +system.xml.readerwriter\4.0.11\lib\MonoAndroid10\_._ +system.xml.readerwriter\4.0.11\lib\MonoTouch10\_._ +system.xml.readerwriter\4.0.11\lib\net45\_._ +system.xml.readerwriter\4.0.11\lib\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\lib\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.0.11\lib\win8\_._ +system.xml.readerwriter\4.0.11\lib\wp80\_._ +system.xml.readerwriter\4.0.11\lib\wpa81\_._ +system.xml.readerwriter\4.0.11\lib\xamarinios10\_._ +system.xml.readerwriter\4.0.11\lib\xamarinmac20\_._ +system.xml.readerwriter\4.0.11\lib\xamarintvos10\_._ +system.xml.readerwriter\4.0.11\lib\xamarinwatchos10\_._ +system.xml.readerwriter\4.0.11\ref\MonoAndroid10\_._ +system.xml.readerwriter\4.0.11\ref\MonoTouch10\_._ +system.xml.readerwriter\4.0.11\ref\net45\_._ +system.xml.readerwriter\4.0.11\ref\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\netstandard1.0\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.0.11\ref\win8\_._ +system.xml.readerwriter\4.0.11\ref\wp80\_._ +system.xml.readerwriter\4.0.11\ref\wpa81\_._ +system.xml.readerwriter\4.0.11\ref\xamarinios10\_._ +system.xml.readerwriter\4.0.11\ref\xamarinmac20\_._ +system.xml.readerwriter\4.0.11\ref\xamarintvos10\_._ +system.xml.readerwriter\4.0.11\ref\xamarinwatchos10\_._ +system.xml.readerwriter\4.0.11\system.xml.readerwriter.4.0.11.nupkg +system.xml.readerwriter\4.0.11\system.xml.readerwriter.4.0.11.nupkg.sha512 +system.xml.readerwriter\4.0.11\system.xml.readerwriter.nuspec +system.xml.readerwriter\4.0.11\ThirdPartyNotices.txt +system.xml.readerwriter\4.3.0\dotnet_library_license.txt +system.xml.readerwriter\4.3.0\lib\MonoAndroid10\_._ +system.xml.readerwriter\4.3.0\lib\MonoTouch10\_._ +system.xml.readerwriter\4.3.0\lib\net45\_._ +system.xml.readerwriter\4.3.0\lib\net46\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.3.0\lib\win8\_._ +system.xml.readerwriter\4.3.0\lib\wp80\_._ +system.xml.readerwriter\4.3.0\lib\wpa81\_._ +system.xml.readerwriter\4.3.0\lib\xamarinios10\_._ +system.xml.readerwriter\4.3.0\lib\xamarinmac20\_._ +system.xml.readerwriter\4.3.0\lib\xamarintvos10\_._ +system.xml.readerwriter\4.3.0\lib\xamarinwatchos10\_._ +system.xml.readerwriter\4.3.0\ref\MonoAndroid10\_._ +system.xml.readerwriter\4.3.0\ref\MonoTouch10\_._ +system.xml.readerwriter\4.3.0\ref\net45\_._ +system.xml.readerwriter\4.3.0\ref\net46\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netstandard1.0\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.3.0\ref\win8\_._ +system.xml.readerwriter\4.3.0\ref\wp80\_._ +system.xml.readerwriter\4.3.0\ref\wpa81\_._ +system.xml.readerwriter\4.3.0\ref\xamarinios10\_._ +system.xml.readerwriter\4.3.0\ref\xamarinmac20\_._ +system.xml.readerwriter\4.3.0\ref\xamarintvos10\_._ +system.xml.readerwriter\4.3.0\ref\xamarinwatchos10\_._ +system.xml.readerwriter\4.3.0\system.xml.readerwriter.4.3.0.nupkg +system.xml.readerwriter\4.3.0\system.xml.readerwriter.4.3.0.nupkg.sha512 +system.xml.readerwriter\4.3.0\system.xml.readerwriter.nuspec +system.xml.readerwriter\4.3.0\ThirdPartyNotices.txt +system.xml.xdocument\4.0.11\dotnet_library_license.txt +system.xml.xdocument\4.0.11\lib\MonoAndroid10\_._ +system.xml.xdocument\4.0.11\lib\MonoTouch10\_._ +system.xml.xdocument\4.0.11\lib\net45\_._ +system.xml.xdocument\4.0.11\lib\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\lib\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.0.11\lib\win8\_._ +system.xml.xdocument\4.0.11\lib\wp80\_._ +system.xml.xdocument\4.0.11\lib\wpa81\_._ +system.xml.xdocument\4.0.11\lib\xamarinios10\_._ +system.xml.xdocument\4.0.11\lib\xamarinmac20\_._ +system.xml.xdocument\4.0.11\lib\xamarintvos10\_._ +system.xml.xdocument\4.0.11\lib\xamarinwatchos10\_._ +system.xml.xdocument\4.0.11\ref\MonoAndroid10\_._ +system.xml.xdocument\4.0.11\ref\MonoTouch10\_._ +system.xml.xdocument\4.0.11\ref\net45\_._ +system.xml.xdocument\4.0.11\ref\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\netstandard1.0\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.0.11\ref\win8\_._ +system.xml.xdocument\4.0.11\ref\wp80\_._ +system.xml.xdocument\4.0.11\ref\wpa81\_._ +system.xml.xdocument\4.0.11\ref\xamarinios10\_._ +system.xml.xdocument\4.0.11\ref\xamarinmac20\_._ +system.xml.xdocument\4.0.11\ref\xamarintvos10\_._ +system.xml.xdocument\4.0.11\ref\xamarinwatchos10\_._ +system.xml.xdocument\4.0.11\system.xml.xdocument.4.0.11.nupkg +system.xml.xdocument\4.0.11\system.xml.xdocument.4.0.11.nupkg.sha512 +system.xml.xdocument\4.0.11\system.xml.xdocument.nuspec +system.xml.xdocument\4.0.11\ThirdPartyNotices.txt +system.xml.xdocument\4.3.0\dotnet_library_license.txt +system.xml.xdocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xdocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xdocument\4.3.0\lib\net45\_._ +system.xml.xdocument\4.3.0\lib\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\lib\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.3.0\lib\win8\_._ +system.xml.xdocument\4.3.0\lib\wp80\_._ +system.xml.xdocument\4.3.0\lib\wpa81\_._ +system.xml.xdocument\4.3.0\lib\xamarinios10\_._ +system.xml.xdocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xdocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xdocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xdocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xdocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xdocument\4.3.0\ref\net45\_._ +system.xml.xdocument\4.3.0\ref\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\netstandard1.0\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.3.0\ref\win8\_._ +system.xml.xdocument\4.3.0\ref\wp80\_._ +system.xml.xdocument\4.3.0\ref\wpa81\_._ +system.xml.xdocument\4.3.0\ref\xamarinios10\_._ +system.xml.xdocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xdocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xdocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xdocument\4.3.0\system.xml.xdocument.4.3.0.nupkg +system.xml.xdocument\4.3.0\system.xml.xdocument.4.3.0.nupkg.sha512 +system.xml.xdocument\4.3.0\system.xml.xdocument.nuspec +system.xml.xdocument\4.3.0\ThirdPartyNotices.txt +system.xml.xmldocument\4.0.1\dotnet_library_license.txt +system.xml.xmldocument\4.0.1\lib\MonoAndroid10\_._ +system.xml.xmldocument\4.0.1\lib\MonoTouch10\_._ +system.xml.xmldocument\4.0.1\lib\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\lib\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\lib\xamarinios10\_._ +system.xml.xmldocument\4.0.1\lib\xamarinmac20\_._ +system.xml.xmldocument\4.0.1\lib\xamarintvos10\_._ +system.xml.xmldocument\4.0.1\lib\xamarinwatchos10\_._ +system.xml.xmldocument\4.0.1\ref\MonoAndroid10\_._ +system.xml.xmldocument\4.0.1\ref\MonoTouch10\_._ +system.xml.xmldocument\4.0.1\ref\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\ref\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\ref\xamarinios10\_._ +system.xml.xmldocument\4.0.1\ref\xamarinmac20\_._ +system.xml.xmldocument\4.0.1\ref\xamarintvos10\_._ +system.xml.xmldocument\4.0.1\ref\xamarinwatchos10\_._ +system.xml.xmldocument\4.0.1\system.xml.xmldocument.4.0.1.nupkg +system.xml.xmldocument\4.0.1\system.xml.xmldocument.4.0.1.nupkg.sha512 +system.xml.xmldocument\4.0.1\system.xml.xmldocument.nuspec +system.xml.xmldocument\4.0.1\ThirdPartyNotices.txt +system.xml.xmldocument\4.3.0\dotnet_library_license.txt +system.xml.xmldocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xmldocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xmldocument\4.3.0\lib\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\lib\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\lib\xamarinios10\_._ +system.xml.xmldocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xmldocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xmldocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xmldocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xmldocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xmldocument\4.3.0\ref\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\ref\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\ref\xamarinios10\_._ +system.xml.xmldocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xmldocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xmldocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xmldocument\4.3.0\system.xml.xmldocument.4.3.0.nupkg +system.xml.xmldocument\4.3.0\system.xml.xmldocument.4.3.0.nupkg.sha512 +system.xml.xmldocument\4.3.0\system.xml.xmldocument.nuspec +system.xml.xmldocument\4.3.0\ThirdPartyNotices.txt +system.xml.xmlserializer\4.0.11\dotnet_library_license.txt +system.xml.xmlserializer\4.0.11\lib\MonoAndroid10\_._ +system.xml.xmlserializer\4.0.11\lib\MonoTouch10\_._ +system.xml.xmlserializer\4.0.11\lib\net45\_._ +system.xml.xmlserializer\4.0.11\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\lib\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.0.11\lib\win8\_._ +system.xml.xmlserializer\4.0.11\lib\wp80\_._ +system.xml.xmlserializer\4.0.11\lib\wpa81\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinios10\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinmac20\_._ +system.xml.xmlserializer\4.0.11\lib\xamarintvos10\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinwatchos10\_._ +system.xml.xmlserializer\4.0.11\ref\MonoAndroid10\_._ +system.xml.xmlserializer\4.0.11\ref\MonoTouch10\_._ +system.xml.xmlserializer\4.0.11\ref\net45\_._ +system.xml.xmlserializer\4.0.11\ref\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\netstandard1.0\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.0.11\ref\win8\_._ +system.xml.xmlserializer\4.0.11\ref\wp80\_._ +system.xml.xmlserializer\4.0.11\ref\wpa81\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinios10\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinmac20\_._ +system.xml.xmlserializer\4.0.11\ref\xamarintvos10\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinwatchos10\_._ +system.xml.xmlserializer\4.0.11\runtimes\aot\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\system.xml.xmlserializer.4.0.11.nupkg +system.xml.xmlserializer\4.0.11\system.xml.xmlserializer.4.0.11.nupkg.sha512 +system.xml.xmlserializer\4.0.11\system.xml.xmlserializer.nuspec +system.xml.xmlserializer\4.0.11\ThirdPartyNotices.txt +system.xml.xmlserializer\4.3.0\dotnet_library_license.txt +system.xml.xmlserializer\4.3.0\lib\MonoAndroid10\_._ +system.xml.xmlserializer\4.3.0\lib\MonoTouch10\_._ +system.xml.xmlserializer\4.3.0\lib\net45\_._ +system.xml.xmlserializer\4.3.0\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\lib\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.3.0\lib\win8\_._ +system.xml.xmlserializer\4.3.0\lib\wp80\_._ +system.xml.xmlserializer\4.3.0\lib\wpa81\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinios10\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinmac20\_._ +system.xml.xmlserializer\4.3.0\lib\xamarintvos10\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xmlserializer\4.3.0\ref\MonoAndroid10\_._ +system.xml.xmlserializer\4.3.0\ref\MonoTouch10\_._ +system.xml.xmlserializer\4.3.0\ref\net45\_._ +system.xml.xmlserializer\4.3.0\ref\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\netstandard1.0\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.3.0\ref\win8\_._ +system.xml.xmlserializer\4.3.0\ref\wp80\_._ +system.xml.xmlserializer\4.3.0\ref\wpa81\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinios10\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinmac20\_._ +system.xml.xmlserializer\4.3.0\ref\xamarintvos10\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xmlserializer\4.3.0\runtimes\aot\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\system.xml.xmlserializer.4.3.0.nupkg +system.xml.xmlserializer\4.3.0\system.xml.xmlserializer.4.3.0.nupkg.sha512 +system.xml.xmlserializer\4.3.0\system.xml.xmlserializer.nuspec +system.xml.xmlserializer\4.3.0\ThirdPartyNotices.txt +system.xml.xpath.xdocument\4.3.0\dotnet_library_license.txt +system.xml.xpath.xdocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xpath.xdocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xpath.xdocument\4.3.0\lib\net46\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\lib\netstandard1.3\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\lib\xamarinios10\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xpath.xdocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xpath.xdocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xpath.xdocument\4.3.0\ref\net46\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\ref\netstandard1.3\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\ref\xamarinios10\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xpath.xdocument\4.3.0\system.xml.xpath.xdocument.4.3.0.nupkg +system.xml.xpath.xdocument\4.3.0\system.xml.xpath.xdocument.4.3.0.nupkg.sha512 +system.xml.xpath.xdocument\4.3.0\system.xml.xpath.xdocument.nuspec +system.xml.xpath.xdocument\4.3.0\ThirdPartyNotices.txt +system.xml.xpath\4.3.0\dotnet_library_license.txt +system.xml.xpath\4.3.0\lib\MonoAndroid10\_._ +system.xml.xpath\4.3.0\lib\MonoTouch10\_._ +system.xml.xpath\4.3.0\lib\net46\System.Xml.XPath.dll +system.xml.xpath\4.3.0\lib\netstandard1.3\System.Xml.XPath.dll +system.xml.xpath\4.3.0\lib\xamarinios10\_._ +system.xml.xpath\4.3.0\lib\xamarinmac20\_._ +system.xml.xpath\4.3.0\lib\xamarintvos10\_._ +system.xml.xpath\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xpath\4.3.0\ref\MonoAndroid10\_._ +system.xml.xpath\4.3.0\ref\MonoTouch10\_._ +system.xml.xpath\4.3.0\ref\net46\System.Xml.XPath.dll +system.xml.xpath\4.3.0\ref\netstandard1.3\System.Xml.XPath.dll +system.xml.xpath\4.3.0\ref\xamarinios10\_._ +system.xml.xpath\4.3.0\ref\xamarinmac20\_._ +system.xml.xpath\4.3.0\ref\xamarintvos10\_._ +system.xml.xpath\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xpath\4.3.0\system.xml.xpath.4.3.0.nupkg +system.xml.xpath\4.3.0\system.xml.xpath.4.3.0.nupkg.sha512 +system.xml.xpath\4.3.0\system.xml.xpath.nuspec +system.xml.xpath\4.3.0\ThirdPartyNotices.txt +windowsazure.storage\8.1.4\lib\net45\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\net45\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\netstandard1.0\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\netstandard1.0\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\netstandard1.3\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\netstandard1.3\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\win8\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\win8\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\wp8\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\wp8\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\wpa\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\wpa\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\windowsazure.storage.8.1.4.nupkg +windowsazure.storage\8.1.4\windowsazure.storage.8.1.4.nupkg.sha512 +windowsazure.storage\8.1.4\windowsazure.storage.nuspec diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.2.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.2.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj b/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj new file mode 100644 index 0000000000..b7c357f50f --- /dev/null +++ b/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj @@ -0,0 +1,13 @@ + + + + + + nuGetPackagesArchive-ci-server-$(PackageVersion).patch.zip + true + false + false + + + + diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.1.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.1.txt new file mode 100644 index 0000000000..76d662d026 --- /dev/null +++ b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.1.txt @@ -0,0 +1,6141 @@ +libuv\1.10.0\libuv.1.10.0.nupkg.sha512 +libuv\1.10.0\libuv.nuspec +libuv\1.10.0\License.txt +libuv\1.10.0\runtimes\linux-arm\native\libuv.so +libuv\1.10.0\runtimes\linux-arm64\native\libuv.so +libuv\1.10.0\runtimes\linux-armel\native\libuv.so +libuv\1.10.0\runtimes\linux-x64\native\libuv.so +libuv\1.10.0\runtimes\osx\native\libuv.dylib +libuv\1.10.0\runtimes\win-arm\native\libuv.dll +libuv\1.10.0\runtimes\win-x64\native\libuv.dll +libuv\1.10.0\runtimes\win-x86\native\libuv.dll +messagepack\1.7.3.4\lib\net45\MessagePack.dll +messagepack\1.7.3.4\lib\net47\MessagePack.dll +messagepack\1.7.3.4\lib\netstandard1.6\MessagePack.dll +messagepack\1.7.3.4\lib\netstandard2.0\MessagePack.dll +messagepack\1.7.3.4\messagepack.1.7.3.4.nupkg.sha512 +messagepack\1.7.3.4\messagepack.nuspec +microsoft.applicationinsights.aspnetcore\2.1.1\lib\net451\Microsoft.ApplicationInsights.AspNetCore.dll +microsoft.applicationinsights.aspnetcore\2.1.1\lib\netstandard1.6\Microsoft.ApplicationInsights.AspNetCore.dll +microsoft.applicationinsights.aspnetcore\2.1.1\microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512 +microsoft.applicationinsights.aspnetcore\2.1.1\microsoft.applicationinsights.aspnetcore.nuspec +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.install.xdt +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.transform +microsoft.applicationinsights.dependencycollector\2.4.1\content\ApplicationInsights.config.uninstall.xdt +microsoft.applicationinsights.dependencycollector\2.4.1\lib\net40\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\lib\net45\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\lib\netstandard1.6\Microsoft.AI.DependencyCollector.dll +microsoft.applicationinsights.dependencycollector\2.4.1\microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512 +microsoft.applicationinsights.dependencycollector\2.4.1\microsoft.applicationinsights.dependencycollector.nuspec +microsoft.applicationinsights\2.4.0\lib\net40\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\net45\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\net46\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\netstandard1.3\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\portable-win81+wpa81\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\uap10.0\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\lib\wp8\Microsoft.ApplicationInsights.dll +microsoft.applicationinsights\2.4.0\microsoft.applicationinsights.2.4.0.nupkg.sha512 +microsoft.applicationinsights\2.4.0\microsoft.applicationinsights.nuspec +microsoft.aspnet.webapi.client\5.2.6\.signature.p7s +microsoft.aspnet.webapi.client\5.2.6\lib\net45\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\lib\netstandard2.0\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\lib\portable-wp8+netcore45+net45+wp81+wpa81\System.Net.Http.Formatting.dll +microsoft.aspnet.webapi.client\5.2.6\microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512 +microsoft.aspnet.webapi.client\5.2.6\microsoft.aspnet.webapi.client.nuspec +microsoft.aspnetcore.all\2.1.1\.signature.p7s +microsoft.aspnetcore.all\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.All.props +microsoft.aspnetcore.all\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.All.targets +microsoft.aspnetcore.all\2.1.1\lib\netcoreapp2.1\_._ +microsoft.aspnetcore.all\2.1.1\microsoft.aspnetcore.all.2.1.1.nupkg.sha512 +microsoft.aspnetcore.all\2.1.1\microsoft.aspnetcore.all.nuspec +microsoft.aspnetcore.antiforgery\2.1.1\.signature.p7s +microsoft.aspnetcore.antiforgery\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Antiforgery.dll +microsoft.aspnetcore.antiforgery\2.1.1\microsoft.aspnetcore.antiforgery.2.1.1.nupkg.sha512 +microsoft.aspnetcore.antiforgery\2.1.1\microsoft.aspnetcore.antiforgery.nuspec +microsoft.aspnetcore.app\2.1.1\.signature.p7s +microsoft.aspnetcore.app\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.App.props +microsoft.aspnetcore.app\2.1.1\build\netcoreapp2.1\Microsoft.AspNetCore.App.targets +microsoft.aspnetcore.app\2.1.1\lib\netcoreapp2.1\_._ +microsoft.aspnetcore.app\2.1.1\microsoft.aspnetcore.app.2.1.1.nupkg.sha512 +microsoft.aspnetcore.app\2.1.1\microsoft.aspnetcore.app.nuspec +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.signature.p7s +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\net461\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\microsoft.aspnetcore.applicationinsights.hostingstartup.2.1.1.nupkg.sha512 +microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec +microsoft.aspnetcore.authentication.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Abstractions.dll +microsoft.aspnetcore.authentication.abstractions\2.1.1\microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.abstractions\2.1.1\microsoft.aspnetcore.authentication.abstractions.nuspec +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.dll +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.Views.dll +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\microsoft.aspnetcore.authentication.azuread.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.azuread.ui\2.1.1\microsoft.aspnetcore.authentication.azuread.ui.nuspec +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Views.dll +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\microsoft.aspnetcore.authentication.azureadb2c.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\microsoft.aspnetcore.authentication.azureadb2c.ui.nuspec +microsoft.aspnetcore.authentication.cookies\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.cookies\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Cookies.dll +microsoft.aspnetcore.authentication.cookies\2.1.1\microsoft.aspnetcore.authentication.cookies.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.cookies\2.1.1\microsoft.aspnetcore.authentication.cookies.nuspec +microsoft.aspnetcore.authentication.core\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Core.dll +microsoft.aspnetcore.authentication.core\2.1.1\microsoft.aspnetcore.authentication.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.core\2.1.1\microsoft.aspnetcore.authentication.core.nuspec +microsoft.aspnetcore.authentication.facebook\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.facebook\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Facebook.dll +microsoft.aspnetcore.authentication.facebook\2.1.1\microsoft.aspnetcore.authentication.facebook.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.facebook\2.1.1\microsoft.aspnetcore.authentication.facebook.nuspec +microsoft.aspnetcore.authentication.google\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.google\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Google.dll +microsoft.aspnetcore.authentication.google\2.1.1\microsoft.aspnetcore.authentication.google.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.google\2.1.1\microsoft.aspnetcore.authentication.google.nuspec +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\microsoft.aspnetcore.authentication.jwtbearer.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.jwtbearer\2.1.1\microsoft.aspnetcore.authentication.jwtbearer.nuspec +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\microsoft.aspnetcore.authentication.microsoftaccount.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\microsoft.aspnetcore.authentication.microsoftaccount.nuspec +microsoft.aspnetcore.authentication.oauth\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.oauth\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OAuth.dll +microsoft.aspnetcore.authentication.oauth\2.1.1\microsoft.aspnetcore.authentication.oauth.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.oauth\2.1.1\microsoft.aspnetcore.authentication.oauth.nuspec +microsoft.aspnetcore.authentication.openidconnect\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.openidconnect\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +microsoft.aspnetcore.authentication.openidconnect\2.1.1\microsoft.aspnetcore.authentication.openidconnect.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.openidconnect\2.1.1\microsoft.aspnetcore.authentication.openidconnect.nuspec +microsoft.aspnetcore.authentication.twitter\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.twitter\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Twitter.dll +microsoft.aspnetcore.authentication.twitter\2.1.1\microsoft.aspnetcore.authentication.twitter.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.twitter\2.1.1\microsoft.aspnetcore.authentication.twitter.nuspec +microsoft.aspnetcore.authentication.wsfederation\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication.wsfederation\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.WsFederation.dll +microsoft.aspnetcore.authentication.wsfederation\2.1.1\microsoft.aspnetcore.authentication.wsfederation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication.wsfederation\2.1.1\microsoft.aspnetcore.authentication.wsfederation.nuspec +microsoft.aspnetcore.authentication\2.1.1\.signature.p7s +microsoft.aspnetcore.authentication\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.dll +microsoft.aspnetcore.authentication\2.1.1\microsoft.aspnetcore.authentication.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authentication\2.1.1\microsoft.aspnetcore.authentication.nuspec +microsoft.aspnetcore.authorization.policy\2.1.1\.signature.p7s +microsoft.aspnetcore.authorization.policy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.Policy.dll +microsoft.aspnetcore.authorization.policy\2.1.1\microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authorization.policy\2.1.1\microsoft.aspnetcore.authorization.policy.nuspec +microsoft.aspnetcore.authorization\2.1.1\.signature.p7s +microsoft.aspnetcore.authorization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.dll +microsoft.aspnetcore.authorization\2.1.1\microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.authorization\2.1.1\microsoft.aspnetcore.authorization.nuspec +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.signature.p7s +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\net461\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\microsoft.aspnetcore.azureappservices.hostingstartup.2.1.1.nupkg.sha512 +microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\microsoft.aspnetcore.azureappservices.hostingstartup.nuspec +microsoft.aspnetcore.azureappservicesintegration\2.1.1\.signature.p7s +microsoft.aspnetcore.azureappservicesintegration\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.AzureAppServicesIntegration.dll +microsoft.aspnetcore.azureappservicesintegration\2.1.1\microsoft.aspnetcore.azureappservicesintegration.2.1.1.nupkg.sha512 +microsoft.aspnetcore.azureappservicesintegration\2.1.1\microsoft.aspnetcore.azureappservicesintegration.nuspec +microsoft.aspnetcore.connections.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.connections.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Connections.Abstractions.dll +microsoft.aspnetcore.connections.abstractions\2.1.1\microsoft.aspnetcore.connections.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.connections.abstractions\2.1.1\microsoft.aspnetcore.connections.abstractions.nuspec +microsoft.aspnetcore.cookiepolicy\2.1.1\.signature.p7s +microsoft.aspnetcore.cookiepolicy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.CookiePolicy.dll +microsoft.aspnetcore.cookiepolicy\2.1.1\microsoft.aspnetcore.cookiepolicy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cookiepolicy\2.1.1\microsoft.aspnetcore.cookiepolicy.nuspec +microsoft.aspnetcore.cors\2.1.1\.signature.p7s +microsoft.aspnetcore.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cors.dll +microsoft.aspnetcore.cors\2.1.1\microsoft.aspnetcore.cors.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cors\2.1.1\microsoft.aspnetcore.cors.nuspec +microsoft.aspnetcore.cryptography.internal\2.1.1\.signature.p7s +microsoft.aspnetcore.cryptography.internal\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.Internal.dll +microsoft.aspnetcore.cryptography.internal\2.1.1\microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cryptography.internal\2.1.1\microsoft.aspnetcore.cryptography.internal.nuspec +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.signature.p7s +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\lib\netcoreapp2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\microsoft.aspnetcore.cryptography.keyderivation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.cryptography.keyderivation\2.1.1\microsoft.aspnetcore.cryptography.keyderivation.nuspec +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Abstractions.dll +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.abstractions\2.1.1\microsoft.aspnetcore.dataprotection.abstractions.nuspec +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureKeyVault.dll +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\microsoft.aspnetcore.dataprotection.azurekeyvault.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\microsoft.aspnetcore.dataprotection.azurekeyvault.nuspec +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureStorage.dll +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\microsoft.aspnetcore.dataprotection.azurestorage.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\microsoft.aspnetcore.dataprotection.azurestorage.nuspec +microsoft.aspnetcore.dataprotection.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Extensions.dll +microsoft.aspnetcore.dataprotection.extensions\2.1.1\microsoft.aspnetcore.dataprotection.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection.extensions\2.1.1\microsoft.aspnetcore.dataprotection.extensions.nuspec +microsoft.aspnetcore.dataprotection\2.1.1\.signature.p7s +microsoft.aspnetcore.dataprotection\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.dll +microsoft.aspnetcore.dataprotection\2.1.1\microsoft.aspnetcore.dataprotection.2.1.1.nupkg.sha512 +microsoft.aspnetcore.dataprotection\2.1.1\microsoft.aspnetcore.dataprotection.nuspec +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics.abstractions\2.1.1\microsoft.aspnetcore.diagnostics.abstractions.nuspec +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec +microsoft.aspnetcore.diagnostics\2.1.1\.signature.p7s +microsoft.aspnetcore.diagnostics\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.dll +microsoft.aspnetcore.diagnostics\2.1.1\microsoft.aspnetcore.diagnostics.2.1.1.nupkg.sha512 +microsoft.aspnetcore.diagnostics\2.1.1\microsoft.aspnetcore.diagnostics.nuspec +microsoft.aspnetcore.hostfiltering\2.1.1\.signature.p7s +microsoft.aspnetcore.hostfiltering\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HostFiltering.dll +microsoft.aspnetcore.hostfiltering\2.1.1\microsoft.aspnetcore.hostfiltering.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hostfiltering\2.1.1\microsoft.aspnetcore.hostfiltering.nuspec +microsoft.aspnetcore.hosting.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Abstractions.dll +microsoft.aspnetcore.hosting.abstractions\2.1.1\microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting.abstractions\2.1.1\microsoft.aspnetcore.hosting.abstractions.nuspec +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting.server.abstractions\2.1.1\microsoft.aspnetcore.hosting.server.abstractions.nuspec +microsoft.aspnetcore.hosting\2.1.1\.signature.p7s +microsoft.aspnetcore.hosting\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll +microsoft.aspnetcore.hosting\2.1.1\microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512 +microsoft.aspnetcore.hosting\2.1.1\microsoft.aspnetcore.hosting.nuspec +microsoft.aspnetcore.html.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.html.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Html.Abstractions.dll +microsoft.aspnetcore.html.abstractions\2.1.1\microsoft.aspnetcore.html.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.html.abstractions\2.1.1\microsoft.aspnetcore.html.abstractions.nuspec +microsoft.aspnetcore.http.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.http.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll +microsoft.aspnetcore.http.abstractions\2.1.1\microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.abstractions\2.1.1\microsoft.aspnetcore.http.abstractions.nuspec +microsoft.aspnetcore.http.connections.common\1.0.1\.signature.p7s +microsoft.aspnetcore.http.connections.common\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.Common.dll +microsoft.aspnetcore.http.connections.common\1.0.1\microsoft.aspnetcore.http.connections.common.1.0.1.nupkg.sha512 +microsoft.aspnetcore.http.connections.common\1.0.1\microsoft.aspnetcore.http.connections.common.nuspec +microsoft.aspnetcore.http.connections\1.0.1\.signature.p7s +microsoft.aspnetcore.http.connections\1.0.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Http.Connections.dll +microsoft.aspnetcore.http.connections\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.dll +microsoft.aspnetcore.http.connections\1.0.1\microsoft.aspnetcore.http.connections.1.0.1.nupkg.sha512 +microsoft.aspnetcore.http.connections\1.0.1\microsoft.aspnetcore.http.connections.nuspec +microsoft.aspnetcore.http.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.http.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll +microsoft.aspnetcore.http.extensions\2.1.1\microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.extensions\2.1.1\microsoft.aspnetcore.http.extensions.nuspec +microsoft.aspnetcore.http.features\2.1.1\.signature.p7s +microsoft.aspnetcore.http.features\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll +microsoft.aspnetcore.http.features\2.1.1\microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http.features\2.1.1\microsoft.aspnetcore.http.features.nuspec +microsoft.aspnetcore.http\2.1.1\.signature.p7s +microsoft.aspnetcore.http\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Http.dll +microsoft.aspnetcore.http\2.1.1\microsoft.aspnetcore.http.2.1.1.nupkg.sha512 +microsoft.aspnetcore.http\2.1.1\microsoft.aspnetcore.http.nuspec +microsoft.aspnetcore.httpoverrides\2.1.1\.signature.p7s +microsoft.aspnetcore.httpoverrides\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HttpOverrides.dll +microsoft.aspnetcore.httpoverrides\2.1.1\microsoft.aspnetcore.httpoverrides.2.1.1.nupkg.sha512 +microsoft.aspnetcore.httpoverrides\2.1.1\microsoft.aspnetcore.httpoverrides.nuspec +microsoft.aspnetcore.httpspolicy\2.1.1\.signature.p7s +microsoft.aspnetcore.httpspolicy\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.HttpsPolicy.dll +microsoft.aspnetcore.httpspolicy\2.1.1\microsoft.aspnetcore.httpspolicy.2.1.1.nupkg.sha512 +microsoft.aspnetcore.httpspolicy\2.1.1\microsoft.aspnetcore.httpspolicy.nuspec +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.signature.p7s +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\microsoft.aspnetcore.identity.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\microsoft.aspnetcore.identity.entityframeworkcore.nuspec +microsoft.aspnetcore.identity.ui\2.1.1\.signature.p7s +microsoft.aspnetcore.identity.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.dll +microsoft.aspnetcore.identity.ui\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.dll +microsoft.aspnetcore.identity.ui\2.1.1\microsoft.aspnetcore.identity.ui.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity.ui\2.1.1\microsoft.aspnetcore.identity.ui.nuspec +microsoft.aspnetcore.identity.ui\2.1.1\THIRD-PARTY-NOTICES +microsoft.aspnetcore.identity\2.1.1\.signature.p7s +microsoft.aspnetcore.identity\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Identity.dll +microsoft.aspnetcore.identity\2.1.1\microsoft.aspnetcore.identity.2.1.1.nupkg.sha512 +microsoft.aspnetcore.identity\2.1.1\microsoft.aspnetcore.identity.nuspec +microsoft.aspnetcore.jsonpatch\2.1.1\.signature.p7s +microsoft.aspnetcore.jsonpatch\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.JsonPatch.dll +microsoft.aspnetcore.jsonpatch\2.1.1\microsoft.aspnetcore.jsonpatch.2.1.1.nupkg.sha512 +microsoft.aspnetcore.jsonpatch\2.1.1\microsoft.aspnetcore.jsonpatch.nuspec +microsoft.aspnetcore.localization.routing\2.1.1\.signature.p7s +microsoft.aspnetcore.localization.routing\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Localization.Routing.dll +microsoft.aspnetcore.localization.routing\2.1.1\microsoft.aspnetcore.localization.routing.2.1.1.nupkg.sha512 +microsoft.aspnetcore.localization.routing\2.1.1\microsoft.aspnetcore.localization.routing.nuspec +microsoft.aspnetcore.localization\2.1.1\.signature.p7s +microsoft.aspnetcore.localization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Localization.dll +microsoft.aspnetcore.localization\2.1.1\microsoft.aspnetcore.localization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.localization\2.1.1\microsoft.aspnetcore.localization.nuspec +microsoft.aspnetcore.middlewareanalysis\2.1.1\.signature.p7s +microsoft.aspnetcore.middlewareanalysis\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.MiddlewareAnalysis.dll +microsoft.aspnetcore.middlewareanalysis\2.1.1\microsoft.aspnetcore.middlewareanalysis.2.1.1.nupkg.sha512 +microsoft.aspnetcore.middlewareanalysis\2.1.1\microsoft.aspnetcore.middlewareanalysis.nuspec +microsoft.aspnetcore.mvc.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll +microsoft.aspnetcore.mvc.abstractions\2.1.1\microsoft.aspnetcore.mvc.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.abstractions\2.1.1\microsoft.aspnetcore.mvc.abstractions.nuspec +microsoft.aspnetcore.mvc.analyzers\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.analyzers\2.1.1\analyzers\dotnet\cs\Microsoft.AspNetCore.Mvc.Analyzers.dll +microsoft.aspnetcore.mvc.analyzers\2.1.1\microsoft.aspnetcore.mvc.analyzers.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.analyzers\2.1.1\microsoft.aspnetcore.mvc.analyzers.nuspec +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\microsoft.aspnetcore.mvc.apiexplorer.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.apiexplorer\2.1.1\microsoft.aspnetcore.mvc.apiexplorer.nuspec +microsoft.aspnetcore.mvc.core\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll +microsoft.aspnetcore.mvc.core\2.1.1\microsoft.aspnetcore.mvc.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.core\2.1.1\microsoft.aspnetcore.mvc.core.nuspec +microsoft.aspnetcore.mvc.cors\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.cors\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Cors.dll +microsoft.aspnetcore.mvc.cors\2.1.1\microsoft.aspnetcore.mvc.cors.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.cors\2.1.1\microsoft.aspnetcore.mvc.cors.nuspec +microsoft.aspnetcore.mvc.dataannotations\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.dataannotations\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +microsoft.aspnetcore.mvc.dataannotations\2.1.1\microsoft.aspnetcore.mvc.dataannotations.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.dataannotations\2.1.1\microsoft.aspnetcore.mvc.dataannotations.nuspec +microsoft.aspnetcore.mvc.formatters.json\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.formatters.json\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +microsoft.aspnetcore.mvc.formatters.json\2.1.1\microsoft.aspnetcore.mvc.formatters.json.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.formatters.json\2.1.1\microsoft.aspnetcore.mvc.formatters.json.nuspec +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\microsoft.aspnetcore.mvc.formatters.xml.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.formatters.xml\2.1.1\microsoft.aspnetcore.mvc.formatters.xml.nuspec +microsoft.aspnetcore.mvc.localization\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.localization\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Localization.dll +microsoft.aspnetcore.mvc.localization\2.1.1\microsoft.aspnetcore.mvc.localization.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.localization\2.1.1\microsoft.aspnetcore.mvc.localization.nuspec +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\lib\net46\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor.extensions\2.1.1\microsoft.aspnetcore.mvc.razor.extensions.nuspec +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x64.exe +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\microsoft.aspnetcore.mvc.razor.viewcompilation.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec +microsoft.aspnetcore.mvc.razor\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.dll +microsoft.aspnetcore.mvc.razor\2.1.1\microsoft.aspnetcore.mvc.razor.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razor\2.1.1\microsoft.aspnetcore.mvc.razor.nuspec +microsoft.aspnetcore.mvc.razorpages\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.razorpages\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.RazorPages.dll +microsoft.aspnetcore.mvc.razorpages\2.1.1\microsoft.aspnetcore.mvc.razorpages.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.razorpages\2.1.1\microsoft.aspnetcore.mvc.razorpages.nuspec +microsoft.aspnetcore.mvc.taghelpers\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.taghelpers\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.TagHelpers.dll +microsoft.aspnetcore.mvc.taghelpers\2.1.1\microsoft.aspnetcore.mvc.taghelpers.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.taghelpers\2.1.1\microsoft.aspnetcore.mvc.taghelpers.nuspec +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\microsoft.aspnetcore.mvc.viewfeatures.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc.viewfeatures\2.1.1\microsoft.aspnetcore.mvc.viewfeatures.nuspec +microsoft.aspnetcore.mvc\2.1.1\.signature.p7s +microsoft.aspnetcore.mvc\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.dll +microsoft.aspnetcore.mvc\2.1.1\microsoft.aspnetcore.mvc.2.1.1.nupkg.sha512 +microsoft.aspnetcore.mvc\2.1.1\microsoft.aspnetcore.mvc.nuspec +microsoft.aspnetcore.nodeservices\2.1.1\.signature.p7s +microsoft.aspnetcore.nodeservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.NodeServices.dll +microsoft.aspnetcore.nodeservices\2.1.1\microsoft.aspnetcore.nodeservices.2.1.1.nupkg.sha512 +microsoft.aspnetcore.nodeservices\2.1.1\microsoft.aspnetcore.nodeservices.nuspec +microsoft.aspnetcore.owin\2.1.1\.signature.p7s +microsoft.aspnetcore.owin\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Owin.dll +microsoft.aspnetcore.owin\2.1.1\microsoft.aspnetcore.owin.2.1.1.nupkg.sha512 +microsoft.aspnetcore.owin\2.1.1\microsoft.aspnetcore.owin.nuspec +microsoft.aspnetcore.razor.design\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.design\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets +microsoft.aspnetcore.razor.design\2.1.1\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props +microsoft.aspnetcore.razor.design\2.1.1\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props +microsoft.aspnetcore.razor.design\2.1.1\microsoft.aspnetcore.razor.design.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.design\2.1.1\microsoft.aspnetcore.razor.design.nuspec +microsoft.aspnetcore.razor.design\2.1.1\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll +microsoft.aspnetcore.razor.design\2.1.1\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.CSharp.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Microsoft.CodeAnalysis.Razor.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\Newtonsoft.Json.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.deps.json +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.dll +microsoft.aspnetcore.razor.design\2.1.1\tools\rzc.runtimeconfig.json +microsoft.aspnetcore.razor.language\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.language\2.1.1\lib\net46\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.language\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Language.dll +microsoft.aspnetcore.razor.language\2.1.1\microsoft.aspnetcore.razor.language.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.language\2.1.1\microsoft.aspnetcore.razor.language.nuspec +microsoft.aspnetcore.razor.runtime\2.1.1\.signature.p7s +microsoft.aspnetcore.razor.runtime\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Runtime.dll +microsoft.aspnetcore.razor.runtime\2.1.1\microsoft.aspnetcore.razor.runtime.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor.runtime\2.1.1\microsoft.aspnetcore.razor.runtime.nuspec +microsoft.aspnetcore.razor\2.1.1\.signature.p7s +microsoft.aspnetcore.razor\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Razor.dll +microsoft.aspnetcore.razor\2.1.1\microsoft.aspnetcore.razor.2.1.1.nupkg.sha512 +microsoft.aspnetcore.razor\2.1.1\microsoft.aspnetcore.razor.nuspec +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecaching.abstractions\2.1.1\microsoft.aspnetcore.responsecaching.abstractions.nuspec +microsoft.aspnetcore.responsecaching\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecaching\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.dll +microsoft.aspnetcore.responsecaching\2.1.1\microsoft.aspnetcore.responsecaching.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecaching\2.1.1\microsoft.aspnetcore.responsecaching.nuspec +microsoft.aspnetcore.responsecompression\2.1.1\.signature.p7s +microsoft.aspnetcore.responsecompression\2.1.1\lib\net461\Microsoft.AspNetCore.ResponseCompression.dll +microsoft.aspnetcore.responsecompression\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCompression.dll +microsoft.aspnetcore.responsecompression\2.1.1\microsoft.aspnetcore.responsecompression.2.1.1.nupkg.sha512 +microsoft.aspnetcore.responsecompression\2.1.1\microsoft.aspnetcore.responsecompression.nuspec +microsoft.aspnetcore.rewrite\2.1.1\.signature.p7s +microsoft.aspnetcore.rewrite\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Rewrite.dll +microsoft.aspnetcore.rewrite\2.1.1\microsoft.aspnetcore.rewrite.2.1.1.nupkg.sha512 +microsoft.aspnetcore.rewrite\2.1.1\microsoft.aspnetcore.rewrite.nuspec +microsoft.aspnetcore.routing.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.routing.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll +microsoft.aspnetcore.routing.abstractions\2.1.1\microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.routing.abstractions\2.1.1\microsoft.aspnetcore.routing.abstractions.nuspec +microsoft.aspnetcore.routing\2.1.1\.signature.p7s +microsoft.aspnetcore.routing\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Routing.dll +microsoft.aspnetcore.routing\2.1.1\microsoft.aspnetcore.routing.2.1.1.nupkg.sha512 +microsoft.aspnetcore.routing\2.1.1\microsoft.aspnetcore.routing.nuspec +microsoft.aspnetcore.server.httpsys\2.1.1\.signature.p7s +microsoft.aspnetcore.server.httpsys\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.HttpSys.dll +microsoft.aspnetcore.server.httpsys\2.1.1\microsoft.aspnetcore.server.httpsys.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.httpsys\2.1.1\microsoft.aspnetcore.server.httpsys.nuspec +microsoft.aspnetcore.server.iisintegration\2.1.1\.signature.p7s +microsoft.aspnetcore.server.iisintegration\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.dll +microsoft.aspnetcore.server.iisintegration\2.1.1\microsoft.aspnetcore.server.iisintegration.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.iisintegration\2.1.1\microsoft.aspnetcore.server.iisintegration.nuspec +microsoft.aspnetcore.server.kestrel.core\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.core\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Core.dll +microsoft.aspnetcore.server.kestrel.core\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Core.dll +microsoft.aspnetcore.server.kestrel.core\2.1.1\microsoft.aspnetcore.server.kestrel.core.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.core\2.1.1\microsoft.aspnetcore.server.kestrel.core.nuspec +microsoft.aspnetcore.server.kestrel.https\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.https\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Https.dll +microsoft.aspnetcore.server.kestrel.https\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll +microsoft.aspnetcore.server.kestrel.https\2.1.1\microsoft.aspnetcore.server.kestrel.https.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.https\2.1.1\microsoft.aspnetcore.server.kestrel.https.nuspec +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\microsoft.aspnetcore.server.kestrel.transport.libuv.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec +microsoft.aspnetcore.server.kestrel\2.1.1\.signature.p7s +microsoft.aspnetcore.server.kestrel\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.dll +microsoft.aspnetcore.server.kestrel\2.1.1\microsoft.aspnetcore.server.kestrel.2.1.1.nupkg.sha512 +microsoft.aspnetcore.server.kestrel\2.1.1\microsoft.aspnetcore.server.kestrel.nuspec +microsoft.aspnetcore.session\2.1.1\.signature.p7s +microsoft.aspnetcore.session\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.Session.dll +microsoft.aspnetcore.session\2.1.1\microsoft.aspnetcore.session.2.1.1.nupkg.sha512 +microsoft.aspnetcore.session\2.1.1\microsoft.aspnetcore.session.nuspec +microsoft.aspnetcore.signalr.common\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.common\1.0.1\lib\netcoreapp2.1\Microsoft.AspNetCore.SignalR.Common.dll +microsoft.aspnetcore.signalr.common\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Common.dll +microsoft.aspnetcore.signalr.common\1.0.1\microsoft.aspnetcore.signalr.common.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.common\1.0.1\microsoft.aspnetcore.signalr.common.nuspec +microsoft.aspnetcore.signalr.core\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.core\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Core.dll +microsoft.aspnetcore.signalr.core\1.0.1\microsoft.aspnetcore.signalr.core.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.core\1.0.1\microsoft.aspnetcore.signalr.core.nuspec +microsoft.aspnetcore.signalr.protocols.json\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.protocols.json\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +microsoft.aspnetcore.signalr.protocols.json\1.0.1\microsoft.aspnetcore.signalr.protocols.json.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.protocols.json\1.0.1\microsoft.aspnetcore.signalr.protocols.json.nuspec +microsoft.aspnetcore.signalr.redis\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr.redis\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Redis.dll +microsoft.aspnetcore.signalr.redis\1.0.1\microsoft.aspnetcore.signalr.redis.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr.redis\1.0.1\microsoft.aspnetcore.signalr.redis.nuspec +microsoft.aspnetcore.signalr\1.0.1\.signature.p7s +microsoft.aspnetcore.signalr\1.0.1\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.dll +microsoft.aspnetcore.signalr\1.0.1\microsoft.aspnetcore.signalr.1.0.1.nupkg.sha512 +microsoft.aspnetcore.signalr\1.0.1\microsoft.aspnetcore.signalr.nuspec +microsoft.aspnetcore.spaservices.extensions\2.1.1\.signature.p7s +microsoft.aspnetcore.spaservices.extensions\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.Extensions.dll +microsoft.aspnetcore.spaservices.extensions\2.1.1\microsoft.aspnetcore.spaservices.extensions.2.1.1.nupkg.sha512 +microsoft.aspnetcore.spaservices.extensions\2.1.1\microsoft.aspnetcore.spaservices.extensions.nuspec +microsoft.aspnetcore.spaservices\2.1.1\.signature.p7s +microsoft.aspnetcore.spaservices\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.dll +microsoft.aspnetcore.spaservices\2.1.1\microsoft.aspnetcore.spaservices.2.1.1.nupkg.sha512 +microsoft.aspnetcore.spaservices\2.1.1\microsoft.aspnetcore.spaservices.nuspec +microsoft.aspnetcore.staticfiles\2.1.1\.signature.p7s +microsoft.aspnetcore.staticfiles\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.StaticFiles.dll +microsoft.aspnetcore.staticfiles\2.1.1\microsoft.aspnetcore.staticfiles.2.1.1.nupkg.sha512 +microsoft.aspnetcore.staticfiles\2.1.1\microsoft.aspnetcore.staticfiles.nuspec +microsoft.aspnetcore.websockets\2.1.1\.signature.p7s +microsoft.aspnetcore.websockets\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebSockets.dll +microsoft.aspnetcore.websockets\2.1.1\microsoft.aspnetcore.websockets.2.1.1.nupkg.sha512 +microsoft.aspnetcore.websockets\2.1.1\microsoft.aspnetcore.websockets.nuspec +microsoft.aspnetcore.webutilities\2.1.1\.signature.p7s +microsoft.aspnetcore.webutilities\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll +microsoft.aspnetcore.webutilities\2.1.1\microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512 +microsoft.aspnetcore.webutilities\2.1.1\microsoft.aspnetcore.webutilities.nuspec +microsoft.aspnetcore\2.1.1\.signature.p7s +microsoft.aspnetcore\2.1.1\lib\netstandard2.0\Microsoft.AspNetCore.dll +microsoft.aspnetcore\2.1.1\microsoft.aspnetcore.2.1.1.nupkg.sha512 +microsoft.aspnetcore\2.1.1\microsoft.aspnetcore.nuspec +microsoft.azure.keyvault.webkey\2.0.7\lib\net452\Microsoft.Azure.KeyVault.WebKey.dll +microsoft.azure.keyvault.webkey\2.0.7\lib\net452\Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +microsoft.azure.keyvault.webkey\2.0.7\lib\netstandard1.4\Microsoft.Azure.KeyVault.WebKey.dll +microsoft.azure.keyvault.webkey\2.0.7\lib\netstandard1.4\Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json +microsoft.azure.keyvault.webkey\2.0.7\microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512 +microsoft.azure.keyvault.webkey\2.0.7\microsoft.azure.keyvault.webkey.nuspec +microsoft.azure.keyvault\2.3.2\lib\net452\Microsoft.Azure.KeyVault.dll +microsoft.azure.keyvault\2.3.2\lib\net452\Microsoft.Azure.KeyVault.runtimeconfig.json +microsoft.azure.keyvault\2.3.2\lib\netstandard1.4\Microsoft.Azure.KeyVault.dll +microsoft.azure.keyvault\2.3.2\lib\netstandard1.4\Microsoft.Azure.KeyVault.runtimeconfig.json +microsoft.azure.keyvault\2.3.2\microsoft.azure.keyvault.2.3.2.nupkg.sha512 +microsoft.azure.keyvault\2.3.2\microsoft.azure.keyvault.nuspec +microsoft.azure.services.appauthentication\1.0.1\build\Microsoft.Azure.Services.AppAuthentication.targets +microsoft.azure.services.appauthentication\1.0.1\lib\net452\Microsoft.Azure.Services.AppAuthentication.dll +microsoft.azure.services.appauthentication\1.0.1\lib\net452\Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json +microsoft.azure.services.appauthentication\1.0.1\lib\netstandard1.4\Microsoft.Azure.Services.AppAuthentication.dll +microsoft.azure.services.appauthentication\1.0.1\lib\netstandard1.4\Microsoft.Azure.Services.AppAuthentication.runtimeconfig.json +microsoft.azure.services.appauthentication\1.0.1\microsoft.azure.services.appauthentication.1.0.1.nupkg.sha512 +microsoft.azure.services.appauthentication\1.0.1\microsoft.azure.services.appauthentication.nuspec +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\vb\Microsoft.CodeAnalysis.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\analyzers\dotnet\vb\Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll +microsoft.codeanalysis.analyzers\1.1.0\microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512 +microsoft.codeanalysis.analyzers\1.1.0\microsoft.codeanalysis.analyzers.nuspec +microsoft.codeanalysis.analyzers\1.1.0\ThirdPartyNotices.rtf +microsoft.codeanalysis.analyzers\1.1.0\tools\install.ps1 +microsoft.codeanalysis.analyzers\1.1.0\tools\uninstall.ps1 +microsoft.codeanalysis.common\2.8.0\.signature.p7s +microsoft.codeanalysis.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.dll +microsoft.codeanalysis.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.pdb +microsoft.codeanalysis.common\2.8.0\microsoft.codeanalysis.common.2.8.0.nupkg.sha512 +microsoft.codeanalysis.common\2.8.0\microsoft.codeanalysis.common.nuspec +microsoft.codeanalysis.csharp.workspaces\2.8.0\.signature.p7s +microsoft.codeanalysis.csharp.workspaces\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +microsoft.codeanalysis.csharp.workspaces\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.pdb +microsoft.codeanalysis.csharp.workspaces\2.8.0\microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512 +microsoft.codeanalysis.csharp.workspaces\2.8.0\microsoft.codeanalysis.csharp.workspaces.nuspec +microsoft.codeanalysis.csharp\2.8.0\.signature.p7s +microsoft.codeanalysis.csharp\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll +microsoft.codeanalysis.csharp\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.pdb +microsoft.codeanalysis.csharp\2.8.0\microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512 +microsoft.codeanalysis.csharp\2.8.0\microsoft.codeanalysis.csharp.nuspec +microsoft.codeanalysis.razor\2.1.1\.signature.p7s +microsoft.codeanalysis.razor\2.1.1\lib\net46\Microsoft.CodeAnalysis.Razor.dll +microsoft.codeanalysis.razor\2.1.1\lib\netstandard2.0\Microsoft.CodeAnalysis.Razor.dll +microsoft.codeanalysis.razor\2.1.1\microsoft.codeanalysis.razor.2.1.1.nupkg.sha512 +microsoft.codeanalysis.razor\2.1.1\microsoft.codeanalysis.razor.nuspec +microsoft.codeanalysis.workspaces.common\2.8.0\.signature.p7s +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.Desktop.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.Desktop.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.dll +microsoft.codeanalysis.workspaces.common\2.8.0\lib\netstandard1.3\Microsoft.CodeAnalysis.Workspaces.pdb +microsoft.codeanalysis.workspaces.common\2.8.0\microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512 +microsoft.codeanalysis.workspaces.common\2.8.0\microsoft.codeanalysis.workspaces.common.nuspec +microsoft.csharp\4.0.1\dotnet_library_license.txt +microsoft.csharp\4.0.1\lib\MonoAndroid10\_._ +microsoft.csharp\4.0.1\lib\MonoTouch10\_._ +microsoft.csharp\4.0.1\lib\net45\_._ +microsoft.csharp\4.0.1\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.0.1\lib\win8\_._ +microsoft.csharp\4.0.1\lib\wp80\_._ +microsoft.csharp\4.0.1\lib\wpa81\_._ +microsoft.csharp\4.0.1\lib\xamarinios10\_._ +microsoft.csharp\4.0.1\lib\xamarinmac20\_._ +microsoft.csharp\4.0.1\lib\xamarintvos10\_._ +microsoft.csharp\4.0.1\lib\xamarinwatchos10\_._ +microsoft.csharp\4.0.1\microsoft.csharp.4.0.1.nupkg.sha512 +microsoft.csharp\4.0.1\microsoft.csharp.nuspec +microsoft.csharp\4.0.1\ref\MonoAndroid10\_._ +microsoft.csharp\4.0.1\ref\MonoTouch10\_._ +microsoft.csharp\4.0.1\ref\net45\_._ +microsoft.csharp\4.0.1\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.0.1\ref\win8\_._ +microsoft.csharp\4.0.1\ref\wp80\_._ +microsoft.csharp\4.0.1\ref\wpa81\_._ +microsoft.csharp\4.0.1\ref\xamarinios10\_._ +microsoft.csharp\4.0.1\ref\xamarinmac20\_._ +microsoft.csharp\4.0.1\ref\xamarintvos10\_._ +microsoft.csharp\4.0.1\ref\xamarinwatchos10\_._ +microsoft.csharp\4.0.1\ThirdPartyNotices.txt +microsoft.csharp\4.3.0\dotnet_library_license.txt +microsoft.csharp\4.3.0\lib\MonoAndroid10\_._ +microsoft.csharp\4.3.0\lib\MonoTouch10\_._ +microsoft.csharp\4.3.0\lib\net45\_._ +microsoft.csharp\4.3.0\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.3.0\lib\win8\_._ +microsoft.csharp\4.3.0\lib\wp80\_._ +microsoft.csharp\4.3.0\lib\wpa81\_._ +microsoft.csharp\4.3.0\lib\xamarinios10\_._ +microsoft.csharp\4.3.0\lib\xamarinmac20\_._ +microsoft.csharp\4.3.0\lib\xamarintvos10\_._ +microsoft.csharp\4.3.0\lib\xamarinwatchos10\_._ +microsoft.csharp\4.3.0\microsoft.csharp.4.3.0.nupkg.sha512 +microsoft.csharp\4.3.0\microsoft.csharp.nuspec +microsoft.csharp\4.3.0\ref\MonoAndroid10\_._ +microsoft.csharp\4.3.0\ref\MonoTouch10\_._ +microsoft.csharp\4.3.0\ref\net45\_._ +microsoft.csharp\4.3.0\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.3.0\ref\win8\_._ +microsoft.csharp\4.3.0\ref\wp80\_._ +microsoft.csharp\4.3.0\ref\wpa81\_._ +microsoft.csharp\4.3.0\ref\xamarinios10\_._ +microsoft.csharp\4.3.0\ref\xamarinmac20\_._ +microsoft.csharp\4.3.0\ref\xamarintvos10\_._ +microsoft.csharp\4.3.0\ref\xamarinwatchos10\_._ +microsoft.csharp\4.3.0\ThirdPartyNotices.txt +microsoft.csharp\4.5.0\.signature.p7s +microsoft.csharp\4.5.0\lib\MonoAndroid10\_._ +microsoft.csharp\4.5.0\lib\MonoTouch10\_._ +microsoft.csharp\4.5.0\lib\net45\_._ +microsoft.csharp\4.5.0\lib\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\netcoreapp2.0\_._ +microsoft.csharp\4.5.0\lib\netstandard1.3\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\netstandard2.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\lib\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.5.0\lib\uap10.0.16299\_._ +microsoft.csharp\4.5.0\lib\win8\_._ +microsoft.csharp\4.5.0\lib\wp80\_._ +microsoft.csharp\4.5.0\lib\wpa81\_._ +microsoft.csharp\4.5.0\lib\xamarinios10\_._ +microsoft.csharp\4.5.0\lib\xamarinmac20\_._ +microsoft.csharp\4.5.0\lib\xamarintvos10\_._ +microsoft.csharp\4.5.0\lib\xamarinwatchos10\_._ +microsoft.csharp\4.5.0\LICENSE.TXT +microsoft.csharp\4.5.0\microsoft.csharp.4.5.0.nupkg.sha512 +microsoft.csharp\4.5.0\microsoft.csharp.nuspec +microsoft.csharp\4.5.0\ref\MonoAndroid10\_._ +microsoft.csharp\4.5.0\ref\MonoTouch10\_._ +microsoft.csharp\4.5.0\ref\net45\_._ +microsoft.csharp\4.5.0\ref\netcore50\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\netcoreapp2.0\_._ +microsoft.csharp\4.5.0\ref\netstandard1.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\netstandard2.0\Microsoft.CSharp.dll +microsoft.csharp\4.5.0\ref\portable-net45+win8+wp8+wpa81\_._ +microsoft.csharp\4.5.0\ref\uap10.0.16299\_._ +microsoft.csharp\4.5.0\ref\win8\_._ +microsoft.csharp\4.5.0\ref\wp80\_._ +microsoft.csharp\4.5.0\ref\wpa81\_._ +microsoft.csharp\4.5.0\ref\xamarinios10\_._ +microsoft.csharp\4.5.0\ref\xamarinmac20\_._ +microsoft.csharp\4.5.0\ref\xamarintvos10\_._ +microsoft.csharp\4.5.0\ref\xamarinwatchos10\_._ +microsoft.csharp\4.5.0\THIRD-PARTY-NOTICES.TXT +microsoft.csharp\4.5.0\useSharedDesignerContext.txt +microsoft.csharp\4.5.0\version.txt +microsoft.data.edm\5.8.2\lib\net40\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\net40\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\net40\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\netstandard1.1\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\de\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\es\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\fr\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\it\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\ja\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\ko\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\Microsoft.Data.Edm.dll +microsoft.data.edm\5.8.2\lib\sl4\ru\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\zh-Hans\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\lib\sl4\zh-Hant\Microsoft.Data.Edm.resources.dll +microsoft.data.edm\5.8.2\microsoft.data.edm.5.8.2.nupkg.sha512 +microsoft.data.edm\5.8.2\microsoft.data.edm.nuspec +microsoft.data.odata\5.8.2\lib\net40\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\net40\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\net40\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\netstandard1.1\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\de\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\es\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\fr\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\it\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\ja\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\ko\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\Microsoft.Data.OData.dll +microsoft.data.odata\5.8.2\lib\sl4\ru\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\zh-Hans\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\lib\sl4\zh-Hant\Microsoft.Data.OData.resources.dll +microsoft.data.odata\5.8.2\microsoft.data.odata.5.8.2.nupkg.sha512 +microsoft.data.odata\5.8.2\microsoft.data.odata.nuspec +microsoft.data.sqlite.core\2.1.0\.signature.p7s +microsoft.data.sqlite.core\2.1.0\lib\netstandard2.0\Microsoft.Data.Sqlite.dll +microsoft.data.sqlite.core\2.1.0\microsoft.data.sqlite.core.2.1.0.nupkg.sha512 +microsoft.data.sqlite.core\2.1.0\microsoft.data.sqlite.core.nuspec +microsoft.data.sqlite\2.1.0\.signature.p7s +microsoft.data.sqlite\2.1.0\lib\netstandard2.0\_._ +microsoft.data.sqlite\2.1.0\microsoft.data.sqlite.2.1.0.nupkg.sha512 +microsoft.data.sqlite\2.1.0\microsoft.data.sqlite.nuspec +microsoft.dotnet.platformabstractions\2.1.0\.signature.p7s +microsoft.dotnet.platformabstractions\2.1.0\lib\net45\Microsoft.DotNet.PlatformAbstractions.dll +microsoft.dotnet.platformabstractions\2.1.0\lib\netstandard1.3\Microsoft.DotNet.PlatformAbstractions.dll +microsoft.dotnet.platformabstractions\2.1.0\LICENSE.TXT +microsoft.dotnet.platformabstractions\2.1.0\microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512 +microsoft.dotnet.platformabstractions\2.1.0\microsoft.dotnet.platformabstractions.nuspec +microsoft.dotnet.platformabstractions\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.entityframeworkcore.abstractions\2.1.1\.signature.p7s +microsoft.entityframeworkcore.abstractions\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll +microsoft.entityframeworkcore.abstractions\2.1.1\microsoft.entityframeworkcore.abstractions.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.abstractions\2.1.1\microsoft.entityframeworkcore.abstractions.nuspec +microsoft.entityframeworkcore.analyzers\2.1.1\.signature.p7s +microsoft.entityframeworkcore.analyzers\2.1.1\analyzers\dotnet\cs\Microsoft.EntityFrameworkCore.Analyzers.dll +microsoft.entityframeworkcore.analyzers\2.1.1\microsoft.entityframeworkcore.analyzers.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.analyzers\2.1.1\microsoft.entityframeworkcore.analyzers.nuspec +microsoft.entityframeworkcore.design\2.1.1\.signature.p7s +microsoft.entityframeworkcore.design\2.1.1\build\net461\Microsoft.EntityFrameworkCore.Design.props +microsoft.entityframeworkcore.design\2.1.1\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props +microsoft.entityframeworkcore.design\2.1.1\lib\net461\Microsoft.EntityFrameworkCore.Design.dll +microsoft.entityframeworkcore.design\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Design.dll +microsoft.entityframeworkcore.design\2.1.1\microsoft.entityframeworkcore.design.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.design\2.1.1\microsoft.entityframeworkcore.design.nuspec +microsoft.entityframeworkcore.inmemory\2.1.1\.signature.p7s +microsoft.entityframeworkcore.inmemory\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll +microsoft.entityframeworkcore.inmemory\2.1.1\microsoft.entityframeworkcore.inmemory.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.inmemory\2.1.1\microsoft.entityframeworkcore.inmemory.nuspec +microsoft.entityframeworkcore.relational\2.1.1\.signature.p7s +microsoft.entityframeworkcore.relational\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Relational.dll +microsoft.entityframeworkcore.relational\2.1.1\microsoft.entityframeworkcore.relational.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.relational\2.1.1\microsoft.entityframeworkcore.relational.nuspec +microsoft.entityframeworkcore.sqlite.core\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlite.core\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Sqlite.dll +microsoft.entityframeworkcore.sqlite.core\2.1.1\microsoft.entityframeworkcore.sqlite.core.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlite.core\2.1.1\microsoft.entityframeworkcore.sqlite.core.nuspec +microsoft.entityframeworkcore.sqlite\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlite\2.1.1\lib\netstandard2.0\_._ +microsoft.entityframeworkcore.sqlite\2.1.1\microsoft.entityframeworkcore.sqlite.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlite\2.1.1\microsoft.entityframeworkcore.sqlite.nuspec +microsoft.entityframeworkcore.sqlserver\2.1.1\.signature.p7s +microsoft.entityframeworkcore.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.SqlServer.dll +microsoft.entityframeworkcore.sqlserver\2.1.1\microsoft.entityframeworkcore.sqlserver.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.sqlserver\2.1.1\microsoft.entityframeworkcore.sqlserver.nuspec +microsoft.entityframeworkcore.tools\2.1.1\.signature.p7s +microsoft.entityframeworkcore.tools\2.1.1\lib\netstandard2.0\_._ +microsoft.entityframeworkcore.tools\2.1.1\microsoft.entityframeworkcore.tools.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore.tools\2.1.1\microsoft.entityframeworkcore.tools.nuspec +microsoft.entityframeworkcore.tools\2.1.1\tools\about_EntityFrameworkCore.help.txt +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.PowerShell2.psd1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.PowerShell2.psm1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.psd1 +microsoft.entityframeworkcore.tools\2.1.1\tools\EntityFrameworkCore.psm1 +microsoft.entityframeworkcore.tools\2.1.1\tools\init.ps1 +microsoft.entityframeworkcore.tools\2.1.1\tools\install.ps1 +microsoft.entityframeworkcore.tools\2.1.1\tools\net461\any\ef.exe +microsoft.entityframeworkcore.tools\2.1.1\tools\net461\win-x86\ef.exe +microsoft.entityframeworkcore.tools\2.1.1\tools\netcoreapp2.0\any\ef.dll +microsoft.entityframeworkcore.tools\2.1.1\tools\netcoreapp2.0\any\ef.runtimeconfig.json +microsoft.entityframeworkcore\2.1.1\.signature.p7s +microsoft.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll +microsoft.entityframeworkcore\2.1.1\microsoft.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.entityframeworkcore\2.1.1\microsoft.entityframeworkcore.nuspec +microsoft.extensions.caching.abstractions\2.1.1\.signature.p7s +microsoft.extensions.caching.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll +microsoft.extensions.caching.abstractions\2.1.1\microsoft.extensions.caching.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.caching.abstractions\2.1.1\microsoft.extensions.caching.abstractions.nuspec +microsoft.extensions.caching.memory\2.1.1\.signature.p7s +microsoft.extensions.caching.memory\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll +microsoft.extensions.caching.memory\2.1.1\microsoft.extensions.caching.memory.2.1.1.nupkg.sha512 +microsoft.extensions.caching.memory\2.1.1\microsoft.extensions.caching.memory.nuspec +microsoft.extensions.caching.redis\2.1.1\.signature.p7s +microsoft.extensions.caching.redis\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.Redis.dll +microsoft.extensions.caching.redis\2.1.1\microsoft.extensions.caching.redis.2.1.1.nupkg.sha512 +microsoft.extensions.caching.redis\2.1.1\microsoft.extensions.caching.redis.nuspec +microsoft.extensions.caching.sqlserver\2.1.1\.signature.p7s +microsoft.extensions.caching.sqlserver\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Caching.SqlServer.dll +microsoft.extensions.caching.sqlserver\2.1.1\microsoft.extensions.caching.sqlserver.2.1.1.nupkg.sha512 +microsoft.extensions.caching.sqlserver\2.1.1\microsoft.extensions.caching.sqlserver.nuspec +microsoft.extensions.configuration.abstractions\2.1.1\.signature.p7s +microsoft.extensions.configuration.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll +microsoft.extensions.configuration.abstractions\2.1.1\microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.abstractions\2.1.1\microsoft.extensions.configuration.abstractions.nuspec +microsoft.extensions.configuration.azurekeyvault\2.1.1\.signature.p7s +microsoft.extensions.configuration.azurekeyvault\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.AzureKeyVault.dll +microsoft.extensions.configuration.azurekeyvault\2.1.1\microsoft.extensions.configuration.azurekeyvault.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.azurekeyvault\2.1.1\microsoft.extensions.configuration.azurekeyvault.nuspec +microsoft.extensions.configuration.binder\2.1.1\.signature.p7s +microsoft.extensions.configuration.binder\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll +microsoft.extensions.configuration.binder\2.1.1\microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.binder\2.1.1\microsoft.extensions.configuration.binder.nuspec +microsoft.extensions.configuration.commandline\2.1.1\.signature.p7s +microsoft.extensions.configuration.commandline\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll +microsoft.extensions.configuration.commandline\2.1.1\microsoft.extensions.configuration.commandline.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.commandline\2.1.1\microsoft.extensions.configuration.commandline.nuspec +microsoft.extensions.configuration.environmentvariables\2.1.1\.signature.p7s +microsoft.extensions.configuration.environmentvariables\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +microsoft.extensions.configuration.environmentvariables\2.1.1\microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.environmentvariables\2.1.1\microsoft.extensions.configuration.environmentvariables.nuspec +microsoft.extensions.configuration.fileextensions\2.1.1\.signature.p7s +microsoft.extensions.configuration.fileextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll +microsoft.extensions.configuration.fileextensions\2.1.1\microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.fileextensions\2.1.1\microsoft.extensions.configuration.fileextensions.nuspec +microsoft.extensions.configuration.ini\2.1.1\.signature.p7s +microsoft.extensions.configuration.ini\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Ini.dll +microsoft.extensions.configuration.ini\2.1.1\microsoft.extensions.configuration.ini.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.ini\2.1.1\microsoft.extensions.configuration.ini.nuspec +microsoft.extensions.configuration.json\2.1.1\.signature.p7s +microsoft.extensions.configuration.json\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Json.dll +microsoft.extensions.configuration.json\2.1.1\microsoft.extensions.configuration.json.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.json\2.1.1\microsoft.extensions.configuration.json.nuspec +microsoft.extensions.configuration.keyperfile\2.1.1\.signature.p7s +microsoft.extensions.configuration.keyperfile\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.KeyPerFile.dll +microsoft.extensions.configuration.keyperfile\2.1.1\microsoft.extensions.configuration.keyperfile.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.keyperfile\2.1.1\microsoft.extensions.configuration.keyperfile.nuspec +microsoft.extensions.configuration.usersecrets\2.1.1\.signature.p7s +microsoft.extensions.configuration.usersecrets\2.1.1\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props +microsoft.extensions.configuration.usersecrets\2.1.1\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets +microsoft.extensions.configuration.usersecrets\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll +microsoft.extensions.configuration.usersecrets\2.1.1\microsoft.extensions.configuration.usersecrets.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.usersecrets\2.1.1\microsoft.extensions.configuration.usersecrets.nuspec +microsoft.extensions.configuration.xml\2.1.1\.signature.p7s +microsoft.extensions.configuration.xml\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.Xml.dll +microsoft.extensions.configuration.xml\2.1.1\microsoft.extensions.configuration.xml.2.1.1.nupkg.sha512 +microsoft.extensions.configuration.xml\2.1.1\microsoft.extensions.configuration.xml.nuspec +microsoft.extensions.configuration\2.1.1\.signature.p7s +microsoft.extensions.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll +microsoft.extensions.configuration\2.1.1\microsoft.extensions.configuration.2.1.1.nupkg.sha512 +microsoft.extensions.configuration\2.1.1\microsoft.extensions.configuration.nuspec +microsoft.extensions.dependencyinjection.abstractions\2.1.1\.signature.p7s +microsoft.extensions.dependencyinjection.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +microsoft.extensions.dependencyinjection.abstractions\2.1.1\microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.dependencyinjection.abstractions\2.1.1\microsoft.extensions.dependencyinjection.abstractions.nuspec +microsoft.extensions.dependencyinjection\2.1.1\.signature.p7s +microsoft.extensions.dependencyinjection\2.1.1\lib\net461\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\lib\netcoreapp2.0\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.dll +microsoft.extensions.dependencyinjection\2.1.1\microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512 +microsoft.extensions.dependencyinjection\2.1.1\microsoft.extensions.dependencyinjection.nuspec +microsoft.extensions.dependencymodel\2.1.0\.signature.p7s +microsoft.extensions.dependencymodel\2.1.0\lib\net451\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\lib\netstandard1.3\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\lib\netstandard1.6\Microsoft.Extensions.DependencyModel.dll +microsoft.extensions.dependencymodel\2.1.0\LICENSE.TXT +microsoft.extensions.dependencymodel\2.1.0\microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512 +microsoft.extensions.dependencymodel\2.1.0\microsoft.extensions.dependencymodel.nuspec +microsoft.extensions.dependencymodel\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.extensions.diagnosticadapter\2.1.0\.signature.p7s +microsoft.extensions.diagnosticadapter\2.1.0\lib\net461\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\lib\netcoreapp2.0\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\lib\netstandard2.0\Microsoft.Extensions.DiagnosticAdapter.dll +microsoft.extensions.diagnosticadapter\2.1.0\microsoft.extensions.diagnosticadapter.2.1.0.nupkg.sha512 +microsoft.extensions.diagnosticadapter\2.1.0\microsoft.extensions.diagnosticadapter.nuspec +microsoft.extensions.fileproviders.abstractions\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Abstractions.dll +microsoft.extensions.fileproviders.abstractions\2.1.1\microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.abstractions\2.1.1\microsoft.extensions.fileproviders.abstractions.nuspec +microsoft.extensions.fileproviders.composite\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.composite\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll +microsoft.extensions.fileproviders.composite\2.1.1\microsoft.extensions.fileproviders.composite.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.composite\2.1.1\microsoft.extensions.fileproviders.composite.nuspec +microsoft.extensions.fileproviders.embedded\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.embedded\2.1.1\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.props +microsoft.extensions.fileproviders.embedded\2.1.1\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets +microsoft.extensions.fileproviders.embedded\2.1.1\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.props +microsoft.extensions.fileproviders.embedded\2.1.1\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.targets +microsoft.extensions.fileproviders.embedded\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.dll +microsoft.extensions.fileproviders.embedded\2.1.1\microsoft.extensions.fileproviders.embedded.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.embedded\2.1.1\microsoft.extensions.fileproviders.embedded.nuspec +microsoft.extensions.fileproviders.embedded\2.1.1\tasks\net461\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll +microsoft.extensions.fileproviders.embedded\2.1.1\tasks\netstandard1.5\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll +microsoft.extensions.fileproviders.physical\2.1.1\.signature.p7s +microsoft.extensions.fileproviders.physical\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Physical.dll +microsoft.extensions.fileproviders.physical\2.1.1\microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512 +microsoft.extensions.fileproviders.physical\2.1.1\microsoft.extensions.fileproviders.physical.nuspec +microsoft.extensions.filesystemglobbing\2.1.1\.signature.p7s +microsoft.extensions.filesystemglobbing\2.1.1\lib\netstandard2.0\Microsoft.Extensions.FileSystemGlobbing.dll +microsoft.extensions.filesystemglobbing\2.1.1\microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512 +microsoft.extensions.filesystemglobbing\2.1.1\microsoft.extensions.filesystemglobbing.nuspec +microsoft.extensions.hosting.abstractions\2.1.1\.signature.p7s +microsoft.extensions.hosting.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.Abstractions.dll +microsoft.extensions.hosting.abstractions\2.1.1\microsoft.extensions.hosting.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.hosting.abstractions\2.1.1\microsoft.extensions.hosting.abstractions.nuspec +microsoft.extensions.hosting\2.1.1\.signature.p7s +microsoft.extensions.hosting\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Hosting.dll +microsoft.extensions.hosting\2.1.1\microsoft.extensions.hosting.2.1.1.nupkg.sha512 +microsoft.extensions.hosting\2.1.1\microsoft.extensions.hosting.nuspec +microsoft.extensions.http\2.1.1\.signature.p7s +microsoft.extensions.http\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Http.dll +microsoft.extensions.http\2.1.1\microsoft.extensions.http.2.1.1.nupkg.sha512 +microsoft.extensions.http\2.1.1\microsoft.extensions.http.nuspec +microsoft.extensions.identity.core\2.1.1\.signature.p7s +microsoft.extensions.identity.core\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Core.dll +microsoft.extensions.identity.core\2.1.1\microsoft.extensions.identity.core.2.1.1.nupkg.sha512 +microsoft.extensions.identity.core\2.1.1\microsoft.extensions.identity.core.nuspec +microsoft.extensions.identity.stores\2.1.1\.signature.p7s +microsoft.extensions.identity.stores\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll +microsoft.extensions.identity.stores\2.1.1\microsoft.extensions.identity.stores.2.1.1.nupkg.sha512 +microsoft.extensions.identity.stores\2.1.1\microsoft.extensions.identity.stores.nuspec +microsoft.extensions.localization.abstractions\2.1.1\.signature.p7s +microsoft.extensions.localization.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.Abstractions.dll +microsoft.extensions.localization.abstractions\2.1.1\microsoft.extensions.localization.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.localization.abstractions\2.1.1\microsoft.extensions.localization.abstractions.nuspec +microsoft.extensions.localization\2.1.1\.signature.p7s +microsoft.extensions.localization\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Localization.dll +microsoft.extensions.localization\2.1.1\microsoft.extensions.localization.2.1.1.nupkg.sha512 +microsoft.extensions.localization\2.1.1\microsoft.extensions.localization.nuspec +microsoft.extensions.logging.abstractions\2.1.1\.signature.p7s +microsoft.extensions.logging.abstractions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll +microsoft.extensions.logging.abstractions\2.1.1\microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512 +microsoft.extensions.logging.abstractions\2.1.1\microsoft.extensions.logging.abstractions.nuspec +microsoft.extensions.logging.azureappservices\2.1.1\.signature.p7s +microsoft.extensions.logging.azureappservices\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.AzureAppServices.dll +microsoft.extensions.logging.azureappservices\2.1.1\microsoft.extensions.logging.azureappservices.2.1.1.nupkg.sha512 +microsoft.extensions.logging.azureappservices\2.1.1\microsoft.extensions.logging.azureappservices.nuspec +microsoft.extensions.logging.configuration\2.1.1\.signature.p7s +microsoft.extensions.logging.configuration\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll +microsoft.extensions.logging.configuration\2.1.1\microsoft.extensions.logging.configuration.2.1.1.nupkg.sha512 +microsoft.extensions.logging.configuration\2.1.1\microsoft.extensions.logging.configuration.nuspec +microsoft.extensions.logging.console\2.1.1\.signature.p7s +microsoft.extensions.logging.console\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Console.dll +microsoft.extensions.logging.console\2.1.1\microsoft.extensions.logging.console.2.1.1.nupkg.sha512 +microsoft.extensions.logging.console\2.1.1\microsoft.extensions.logging.console.nuspec +microsoft.extensions.logging.debug\2.1.1\.signature.p7s +microsoft.extensions.logging.debug\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.Debug.dll +microsoft.extensions.logging.debug\2.1.1\microsoft.extensions.logging.debug.2.1.1.nupkg.sha512 +microsoft.extensions.logging.debug\2.1.1\microsoft.extensions.logging.debug.nuspec +microsoft.extensions.logging.eventsource\2.1.1\.signature.p7s +microsoft.extensions.logging.eventsource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.EventSource.dll +microsoft.extensions.logging.eventsource\2.1.1\microsoft.extensions.logging.eventsource.2.1.1.nupkg.sha512 +microsoft.extensions.logging.eventsource\2.1.1\microsoft.extensions.logging.eventsource.nuspec +microsoft.extensions.logging.tracesource\2.1.1\.signature.p7s +microsoft.extensions.logging.tracesource\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.TraceSource.dll +microsoft.extensions.logging.tracesource\2.1.1\microsoft.extensions.logging.tracesource.2.1.1.nupkg.sha512 +microsoft.extensions.logging.tracesource\2.1.1\microsoft.extensions.logging.tracesource.nuspec +microsoft.extensions.logging\2.1.1\.signature.p7s +microsoft.extensions.logging\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Logging.dll +microsoft.extensions.logging\2.1.1\microsoft.extensions.logging.2.1.1.nupkg.sha512 +microsoft.extensions.logging\2.1.1\microsoft.extensions.logging.nuspec +microsoft.extensions.objectpool\2.1.1\.signature.p7s +microsoft.extensions.objectpool\2.1.1\lib\netstandard2.0\Microsoft.Extensions.ObjectPool.dll +microsoft.extensions.objectpool\2.1.1\microsoft.extensions.objectpool.2.1.1.nupkg.sha512 +microsoft.extensions.objectpool\2.1.1\microsoft.extensions.objectpool.nuspec +microsoft.extensions.options.configurationextensions\2.1.1\.signature.p7s +microsoft.extensions.options.configurationextensions\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll +microsoft.extensions.options.configurationextensions\2.1.1\microsoft.extensions.options.configurationextensions.2.1.1.nupkg.sha512 +microsoft.extensions.options.configurationextensions\2.1.1\microsoft.extensions.options.configurationextensions.nuspec +microsoft.extensions.options\2.1.1\.signature.p7s +microsoft.extensions.options\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Options.dll +microsoft.extensions.options\2.1.1\microsoft.extensions.options.2.1.1.nupkg.sha512 +microsoft.extensions.options\2.1.1\microsoft.extensions.options.nuspec +microsoft.extensions.platformabstractions\1.1.0\lib\net451\Microsoft.Extensions.PlatformAbstractions.dll +microsoft.extensions.platformabstractions\1.1.0\lib\netstandard1.3\Microsoft.Extensions.PlatformAbstractions.dll +microsoft.extensions.platformabstractions\1.1.0\microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512 +microsoft.extensions.platformabstractions\1.1.0\microsoft.extensions.platformabstractions.nuspec +microsoft.extensions.primitives\2.1.1\.signature.p7s +microsoft.extensions.primitives\2.1.1\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll +microsoft.extensions.primitives\2.1.1\microsoft.extensions.primitives.2.1.1.nupkg.sha512 +microsoft.extensions.primitives\2.1.1\microsoft.extensions.primitives.nuspec +microsoft.extensions.webencoders\2.1.1\.signature.p7s +microsoft.extensions.webencoders\2.1.1\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll +microsoft.extensions.webencoders\2.1.1\microsoft.extensions.webencoders.2.1.1.nupkg.sha512 +microsoft.extensions.webencoders\2.1.1\microsoft.extensions.webencoders.nuspec +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\MonoAndroid10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\MonoAndroid10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll +microsoft.identitymodel.clients.activedirectory\3.14.2\microsoft.identitymodel.clients.activedirectory.3.14.2.nupkg.sha512 +microsoft.identitymodel.clients.activedirectory\3.14.2\microsoft.identitymodel.clients.activedirectory.nuspec +microsoft.identitymodel.logging\5.2.0\lib\net45\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\lib\net451\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.dll +microsoft.identitymodel.logging\5.2.0\microsoft.identitymodel.logging.5.2.0.nupkg.sha512 +microsoft.identitymodel.logging\5.2.0\microsoft.identitymodel.logging.nuspec +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +microsoft.identitymodel.protocols.openidconnect\5.2.0\microsoft.identitymodel.protocols.openidconnect.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols.openidconnect\5.2.0\microsoft.identitymodel.protocols.openidconnect.nuspec +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.dll +microsoft.identitymodel.protocols.wsfederation\5.2.0\microsoft.identitymodel.protocols.wsfederation.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols.wsfederation\5.2.0\microsoft.identitymodel.protocols.wsfederation.nuspec +microsoft.identitymodel.protocols\5.2.0\lib\net45\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\lib\net451\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.dll +microsoft.identitymodel.protocols\5.2.0\microsoft.identitymodel.protocols.5.2.0.nupkg.sha512 +microsoft.identitymodel.protocols\5.2.0\microsoft.identitymodel.protocols.nuspec +microsoft.identitymodel.tokens.saml\5.2.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.dll +microsoft.identitymodel.tokens.saml\5.2.0\microsoft.identitymodel.tokens.saml.5.2.0.nupkg.sha512 +microsoft.identitymodel.tokens.saml\5.2.0\microsoft.identitymodel.tokens.saml.nuspec +microsoft.identitymodel.tokens\5.2.0\lib\net45\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\lib\net451\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.dll +microsoft.identitymodel.tokens\5.2.0\microsoft.identitymodel.tokens.5.2.0.nupkg.sha512 +microsoft.identitymodel.tokens\5.2.0\microsoft.identitymodel.tokens.nuspec +microsoft.identitymodel.xml\5.2.0\lib\net45\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\lib\net451\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.dll +microsoft.identitymodel.xml\5.2.0\microsoft.identitymodel.xml.5.2.0.nupkg.sha512 +microsoft.identitymodel.xml\5.2.0\microsoft.identitymodel.xml.nuspec +microsoft.net.http.headers\2.1.1\.signature.p7s +microsoft.net.http.headers\2.1.1\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll +microsoft.net.http.headers\2.1.1\microsoft.net.http.headers.2.1.1.nupkg.sha512 +microsoft.net.http.headers\2.1.1\microsoft.net.http.headers.nuspec +microsoft.netcore.app\2.1.1\.signature.p7s +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.props +microsoft.netcore.app\2.1.1\build\netcoreapp2.1\Microsoft.NETCore.App.targets +microsoft.netcore.app\2.1.1\LICENSE.TXT +microsoft.netcore.app\2.1.1\microsoft.netcore.app.2.1.1.nupkg.sha512 +microsoft.netcore.app\2.1.1\microsoft.netcore.app.nuspec +microsoft.netcore.app\2.1.1\Microsoft.NETCore.App.versions.txt +microsoft.netcore.app\2.1.1\ref\netcoreapp\_._ +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.CSharp.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.VisualBasic.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\mscorlib.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\netstandard.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.AppContext.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Buffers.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Concurrent.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Immutable.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.NonGeneric.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Collections.Specialized.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Configuration.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Console.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Core.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Data.Common.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Data.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Debug.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Process.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Tools.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Drawing.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Drawing.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Dynamic.Runtime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.Calendars.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Globalization.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.Pipes.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Expressions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Parallel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Linq.Queryable.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Memory.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Http.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.HttpListener.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Mail.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.NameResolution.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.NetworkInformation.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Ping.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Requests.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Security.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.ServicePoint.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.Sockets.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebClient.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebProxy.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Net.WebSockets.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Numerics.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Numerics.Vectors.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ObjectModel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Metadata.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.Reader.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.ResourceManager.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Resources.Writer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Handles.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Loader.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Numerics.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Claims.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.Principal.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Security.SecureString.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ServiceModel.Web.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ServiceProcess.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.Encoding.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Text.RegularExpressions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Overlapped.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Thread.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.ThreadPool.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Threading.Timer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Transactions.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Transactions.Local.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.ValueTuple.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Web.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Web.HttpUtility.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Windows.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.Linq.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.Serialization.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XmlDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XPath.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll +microsoft.netcore.app\2.1.1\ref\netcoreapp2.1\WindowsBase.dll +microsoft.netcore.app\2.1.1\runtime.json +microsoft.netcore.app\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnetapphost\2.1.1\.signature.p7s +microsoft.netcore.dotnetapphost\2.1.1\LICENSE.TXT +microsoft.netcore.dotnetapphost\2.1.1\microsoft.netcore.dotnetapphost.2.1.1.nupkg.sha512 +microsoft.netcore.dotnetapphost\2.1.1\microsoft.netcore.dotnetapphost.nuspec +microsoft.netcore.dotnetapphost\2.1.1\runtime.json +microsoft.netcore.dotnetapphost\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnethostpolicy\2.1.1\.signature.p7s +microsoft.netcore.dotnethostpolicy\2.1.1\LICENSE.TXT +microsoft.netcore.dotnethostpolicy\2.1.1\microsoft.netcore.dotnethostpolicy.2.1.1.nupkg.sha512 +microsoft.netcore.dotnethostpolicy\2.1.1\microsoft.netcore.dotnethostpolicy.nuspec +microsoft.netcore.dotnethostpolicy\2.1.1\runtime.json +microsoft.netcore.dotnethostpolicy\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.dotnethostresolver\2.1.1\.signature.p7s +microsoft.netcore.dotnethostresolver\2.1.1\LICENSE.TXT +microsoft.netcore.dotnethostresolver\2.1.1\microsoft.netcore.dotnethostresolver.2.1.1.nupkg.sha512 +microsoft.netcore.dotnethostresolver\2.1.1\microsoft.netcore.dotnethostresolver.nuspec +microsoft.netcore.dotnethostresolver\2.1.1\runtime.json +microsoft.netcore.dotnethostresolver\2.1.1\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\1.0.1\dotnet_library_license.txt +microsoft.netcore.platforms\1.0.1\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.0.1\microsoft.netcore.platforms.1.0.1.nupkg.sha512 +microsoft.netcore.platforms\1.0.1\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.0.1\runtime.json +microsoft.netcore.platforms\1.0.1\ThirdPartyNotices.txt +microsoft.netcore.platforms\1.0.2\dotnet_library_license.txt +microsoft.netcore.platforms\1.0.2\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.0.2\microsoft.netcore.platforms.1.0.2.nupkg.sha512 +microsoft.netcore.platforms\1.0.2\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.0.2\runtime.json +microsoft.netcore.platforms\1.0.2\ThirdPartyNotices.txt +microsoft.netcore.platforms\1.1.0\dotnet_library_license.txt +microsoft.netcore.platforms\1.1.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\1.1.0\microsoft.netcore.platforms.1.1.0.nupkg.sha512 +microsoft.netcore.platforms\1.1.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\1.1.0\runtime.json +microsoft.netcore.platforms\1.1.0\ThirdPartyNotices.txt +microsoft.netcore.platforms\2.0.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\2.0.0\LICENSE.TXT +microsoft.netcore.platforms\2.0.0\microsoft.netcore.platforms.2.0.0.nupkg.sha512 +microsoft.netcore.platforms\2.0.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\2.0.0\runtime.json +microsoft.netcore.platforms\2.0.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\2.0.0\useSharedDesignerContext.txt +microsoft.netcore.platforms\2.0.0\version.txt +microsoft.netcore.platforms\2.1.0\.signature.p7s +microsoft.netcore.platforms\2.1.0\lib\netstandard1.0\_._ +microsoft.netcore.platforms\2.1.0\LICENSE.TXT +microsoft.netcore.platforms\2.1.0\microsoft.netcore.platforms.2.1.0.nupkg.sha512 +microsoft.netcore.platforms\2.1.0\microsoft.netcore.platforms.nuspec +microsoft.netcore.platforms\2.1.0\runtime.json +microsoft.netcore.platforms\2.1.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.platforms\2.1.0\useSharedDesignerContext.txt +microsoft.netcore.platforms\2.1.0\version.txt +microsoft.netcore.targets\1.0.1\dotnet_library_license.txt +microsoft.netcore.targets\1.0.1\lib\netstandard1.0\_._ +microsoft.netcore.targets\1.0.1\microsoft.netcore.targets.1.0.1.nupkg.sha512 +microsoft.netcore.targets\1.0.1\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\1.0.1\runtime.json +microsoft.netcore.targets\1.0.1\ThirdPartyNotices.txt +microsoft.netcore.targets\1.1.0\dotnet_library_license.txt +microsoft.netcore.targets\1.1.0\lib\netstandard1.0\_._ +microsoft.netcore.targets\1.1.0\microsoft.netcore.targets.1.1.0.nupkg.sha512 +microsoft.netcore.targets\1.1.0\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\1.1.0\runtime.json +microsoft.netcore.targets\1.1.0\ThirdPartyNotices.txt +microsoft.netcore.targets\2.0.0\lib\netstandard1.0\_._ +microsoft.netcore.targets\2.0.0\LICENSE.TXT +microsoft.netcore.targets\2.0.0\microsoft.netcore.targets.2.0.0.nupkg.sha512 +microsoft.netcore.targets\2.0.0\microsoft.netcore.targets.nuspec +microsoft.netcore.targets\2.0.0\runtime.json +microsoft.netcore.targets\2.0.0\THIRD-PARTY-NOTICES.TXT +microsoft.netcore.targets\2.0.0\useSharedDesignerContext.txt +microsoft.netcore.targets\2.0.0\version.txt +microsoft.rest.clientruntime.azure\3.3.7\lib\net452\Microsoft.Rest.ClientRuntime.Azure.dll +microsoft.rest.clientruntime.azure\3.3.7\lib\net452\Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +microsoft.rest.clientruntime.azure\3.3.7\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.Azure.dll +microsoft.rest.clientruntime.azure\3.3.7\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json +microsoft.rest.clientruntime.azure\3.3.7\microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512 +microsoft.rest.clientruntime.azure\3.3.7\microsoft.rest.clientruntime.azure.nuspec +microsoft.rest.clientruntime\2.3.8\lib\net452\Microsoft.Rest.ClientRuntime.dll +microsoft.rest.clientruntime\2.3.8\lib\net452\Microsoft.Rest.ClientRuntime.runtimeconfig.json +microsoft.rest.clientruntime\2.3.8\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.dll +microsoft.rest.clientruntime\2.3.8\lib\netstandard1.4\Microsoft.Rest.ClientRuntime.runtimeconfig.json +microsoft.rest.clientruntime\2.3.8\microsoft.rest.clientruntime.2.3.8.nupkg.sha512 +microsoft.rest.clientruntime\2.3.8\microsoft.rest.clientruntime.nuspec +microsoft.visualstudio.web.browserlink\2.1.1\.signature.p7s +microsoft.visualstudio.web.browserlink\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.BrowserLink.dll +microsoft.visualstudio.web.browserlink\2.1.1\microsoft.visualstudio.web.browserlink.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.browserlink\2.1.1\microsoft.visualstudio.web.browserlink.nuspec +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\microsoft.visualstudio.web.codegeneration.contracts.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.contracts\2.1.1\microsoft.visualstudio.web.codegeneration.contracts.nuspec +microsoft.visualstudio.web.codegeneration.core\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.core\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +microsoft.visualstudio.web.codegeneration.core\2.1.1\microsoft.visualstudio.web.codegeneration.core.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.core\2.1.1\microsoft.visualstudio.web.codegeneration.core.nuspec +microsoft.visualstudio.web.codegeneration.design\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll +microsoft.visualstudio.web.codegeneration.design\2.1.1\microsoft.visualstudio.web.codegeneration.design.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.design\2.1.1\microsoft.visualstudio.web.codegeneration.design.nuspec +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe +microsoft.visualstudio.web.codegeneration.design\2.1.1\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.xml +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec +microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.1\Templates\DbContext\NewLocalDbContext.cshtml +microsoft.visualstudio.web.codegeneration.templating\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.templating\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +microsoft.visualstudio.web.codegeneration.templating\2.1.1\microsoft.visualstudio.web.codegeneration.templating.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.templating\2.1.1\microsoft.visualstudio.web.codegeneration.templating.nuspec +microsoft.visualstudio.web.codegeneration.utils\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration.utils\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +microsoft.visualstudio.web.codegeneration.utils\2.1.1\microsoft.visualstudio.web.codegeneration.utils.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration.utils\2.1.1\microsoft.visualstudio.web.codegeneration.utils.nuspec +microsoft.visualstudio.web.codegeneration\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegeneration\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll +microsoft.visualstudio.web.codegeneration\2.1.1\microsoft.visualstudio.web.codegeneration.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegeneration\2.1.1\microsoft.visualstudio.web.codegeneration.nuspec +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\.signature.p7s +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\area.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\controller.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\identity.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\razorpage.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Generators\ParameterDefinitions\view.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\lib\netstandard2.0\identitygeneratorfilesconfig.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\microsoft.visualstudio.web.codegenerators.mvc.2.1.1.nupkg.sha512 +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\microsoft.visualstudio.web.codegenerators.mvc.nuspec +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiControllerWithActions.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiControllerWithContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ApiEmptyController.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\ControllerWithActions.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\EmptyController.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ControllerGenerator\MvcControllerWithContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\_LoginPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Data\ApplicationDbContext.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Data\ApplicationUser.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\IdentityHostingStartup.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\_ViewStart.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Lockout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Login.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Login.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Logout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Register.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.Register.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Error.cs.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\Pages\Error.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\ScaffoldingReadme.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._CookieConsentPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._ViewImports.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\SupportPages._ViewStart.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\css\site.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\css\site.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\favicon.ico +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner1.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner2.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\images\banner3.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\js\site.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\js\site.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2 +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\bootstrap\LICENSE +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\.bower.json +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\MvcLayout\_Layout.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\MvcLayout\Error.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Create.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\CreatePageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Delete.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\DeletePageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Details.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\DetailsPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Edit.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\EditPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\Empty.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\EmptyPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\List.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\RazorPageGenerator\ListPageModel.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Startup\ReadMe.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\Startup\Startup.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Create.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Delete.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Details.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Edit.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\Empty.cshtml +microsoft.visualstudio.web.codegenerators.mvc\2.1.1\Templates\ViewGenerator\List.cshtml +microsoft.win32.primitives\4.0.1\dotnet_library_license.txt +microsoft.win32.primitives\4.0.1\lib\MonoAndroid10\_._ +microsoft.win32.primitives\4.0.1\lib\MonoTouch10\_._ +microsoft.win32.primitives\4.0.1\lib\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\lib\xamarinios10\_._ +microsoft.win32.primitives\4.0.1\lib\xamarinmac20\_._ +microsoft.win32.primitives\4.0.1\lib\xamarintvos10\_._ +microsoft.win32.primitives\4.0.1\lib\xamarinwatchos10\_._ +microsoft.win32.primitives\4.0.1\microsoft.win32.primitives.4.0.1.nupkg.sha512 +microsoft.win32.primitives\4.0.1\microsoft.win32.primitives.nuspec +microsoft.win32.primitives\4.0.1\ref\MonoAndroid10\_._ +microsoft.win32.primitives\4.0.1\ref\MonoTouch10\_._ +microsoft.win32.primitives\4.0.1\ref\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\ref\netstandard1.3\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.0.1\ref\xamarinios10\_._ +microsoft.win32.primitives\4.0.1\ref\xamarinmac20\_._ +microsoft.win32.primitives\4.0.1\ref\xamarintvos10\_._ +microsoft.win32.primitives\4.0.1\ref\xamarinwatchos10\_._ +microsoft.win32.primitives\4.0.1\ThirdPartyNotices.txt +microsoft.win32.primitives\4.3.0\dotnet_library_license.txt +microsoft.win32.primitives\4.3.0\lib\MonoAndroid10\_._ +microsoft.win32.primitives\4.3.0\lib\MonoTouch10\_._ +microsoft.win32.primitives\4.3.0\lib\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\lib\xamarinios10\_._ +microsoft.win32.primitives\4.3.0\lib\xamarinmac20\_._ +microsoft.win32.primitives\4.3.0\lib\xamarintvos10\_._ +microsoft.win32.primitives\4.3.0\lib\xamarinwatchos10\_._ +microsoft.win32.primitives\4.3.0\microsoft.win32.primitives.4.3.0.nupkg.sha512 +microsoft.win32.primitives\4.3.0\microsoft.win32.primitives.nuspec +microsoft.win32.primitives\4.3.0\ref\MonoAndroid10\_._ +microsoft.win32.primitives\4.3.0\ref\MonoTouch10\_._ +microsoft.win32.primitives\4.3.0\ref\net46\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\ref\netstandard1.3\Microsoft.Win32.Primitives.dll +microsoft.win32.primitives\4.3.0\ref\xamarinios10\_._ +microsoft.win32.primitives\4.3.0\ref\xamarinmac20\_._ +microsoft.win32.primitives\4.3.0\ref\xamarintvos10\_._ +microsoft.win32.primitives\4.3.0\ref\xamarinwatchos10\_._ +microsoft.win32.primitives\4.3.0\ThirdPartyNotices.txt +microsoft.win32.registry\4.3.0\dotnet_library_license.txt +microsoft.win32.registry\4.3.0\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\microsoft.win32.registry.4.3.0.nupkg.sha512 +microsoft.win32.registry\4.3.0\microsoft.win32.registry.nuspec +microsoft.win32.registry\4.3.0\ref\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\ref\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\unix\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\win\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\runtimes\win\lib\netcore50\_._ +microsoft.win32.registry\4.3.0\runtimes\win\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.3.0\ThirdPartyNotices.txt +microsoft.win32.registry\4.5.0\.signature.p7s +microsoft.win32.registry\4.5.0\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\LICENSE.TXT +microsoft.win32.registry\4.5.0\microsoft.win32.registry.4.5.0.nupkg.sha512 +microsoft.win32.registry\4.5.0\microsoft.win32.registry.nuspec +microsoft.win32.registry\4.5.0\ref\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\ref\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\unix\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\net46\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\net461\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\netstandard1.3\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll +microsoft.win32.registry\4.5.0\THIRD-PARTY-NOTICES.TXT +microsoft.win32.registry\4.5.0\useSharedDesignerContext.txt +microsoft.win32.registry\4.5.0\version.txt +netstandard.library\1.6.0\dotnet_library_license.txt +netstandard.library\1.6.0\netstandard.library.1.6.0.nupkg.sha512 +netstandard.library\1.6.0\netstandard.library.nuspec +netstandard.library\1.6.0\ThirdPartyNotices.txt +netstandard.library\1.6.1\dotnet_library_license.txt +netstandard.library\1.6.1\netstandard.library.1.6.1.nupkg.sha512 +netstandard.library\1.6.1\netstandard.library.nuspec +netstandard.library\1.6.1\ThirdPartyNotices.txt +netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets +netstandard.library\2.0.3\build\netstandard2.0\ref\Microsoft.Win32.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\mscorlib.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\netstandard.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.AppContext.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.Concurrent.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.NonGeneric.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Collections.Specialized.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.Composition.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.EventBasedAsync.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ComponentModel.TypeConverter.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Console.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Core.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Data.Common.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Data.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Contracts.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Debug.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.FileVersionInfo.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Process.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.StackTrace.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.TextWriterTraceListener.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Tools.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.TraceSource.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Diagnostics.Tracing.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Drawing.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Drawing.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Dynamic.Runtime.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.Calendars.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Globalization.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.FileSystem.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Compression.ZipFile.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.DriveInfo.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.FileSystem.Watcher.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.IsolatedStorage.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.MemoryMappedFiles.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.Pipes.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.IO.UnmanagedMemoryStream.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Expressions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Parallel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Linq.Queryable.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Http.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.NameResolution.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.NetworkInformation.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Ping.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Requests.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Security.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.Sockets.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebHeaderCollection.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebSockets.Client.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Net.WebSockets.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Numerics.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ObjectModel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Reflection.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.Reader.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.ResourceManager.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Resources.Writer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.CompilerServices.VisualC.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Handles.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.InteropServices.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Numerics.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Formatters.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Json.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Runtime.Serialization.Xml.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Claims.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Algorithms.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Csp.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Encoding.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.Primitives.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Cryptography.X509Certificates.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.Principal.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Security.SecureString.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ServiceModel.Web.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.Encoding.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.Encoding.Extensions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Text.RegularExpressions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Overlapped.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Tasks.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Tasks.Parallel.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Thread.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.ThreadPool.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Threading.Timer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Transactions.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.ValueTuple.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Web.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Windows.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.Linq.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.ReaderWriter.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.Serialization.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XDocument.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XmlDocument.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XmlSerializer.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XPath.dll +netstandard.library\2.0.3\build\netstandard2.0\ref\System.Xml.XPath.XDocument.dll +netstandard.library\2.0.3\lib\netstandard1.0\_._ +netstandard.library\2.0.3\LICENSE.TXT +netstandard.library\2.0.3\netstandard.library.2.0.3.nupkg.sha512 +netstandard.library\2.0.3\netstandard.library.nuspec +netstandard.library\2.0.3\THIRD-PARTY-NOTICES.TXT +newtonsoft.json.bson\1.0.1\lib\net45\Newtonsoft.Json.Bson.dll +newtonsoft.json.bson\1.0.1\lib\netstandard1.3\Newtonsoft.Json.Bson.dll +newtonsoft.json.bson\1.0.1\newtonsoft.json.bson.1.0.1.nupkg.sha512 +newtonsoft.json.bson\1.0.1\newtonsoft.json.bson.nuspec +newtonsoft.json\10.0.1\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\netstandard1.3\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\lib\portable-net45+win8+wpa81+wp8\Newtonsoft.Json.dll +newtonsoft.json\10.0.1\newtonsoft.json.10.0.1.nupkg.sha512 +newtonsoft.json\10.0.1\newtonsoft.json.nuspec +newtonsoft.json\10.0.1\tools\install.ps1 +newtonsoft.json\11.0.2\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard1.3\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\netstandard2.0\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\portable-net40+sl5+win8+wp8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\lib\portable-net45+win8+wp8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\11.0.2\LICENSE.md +newtonsoft.json\11.0.2\newtonsoft.json.11.0.2.nupkg.sha512 +newtonsoft.json\11.0.2\newtonsoft.json.nuspec +newtonsoft.json\9.0.1\lib\net20\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net35\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net40\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\net45\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\netstandard1.0\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll +newtonsoft.json\9.0.1\newtonsoft.json.9.0.1.nupkg.sha512 +newtonsoft.json\9.0.1\newtonsoft.json.nuspec +newtonsoft.json\9.0.1\tools\install.ps1 +nuget.frameworks\4.7.0\.signature.p7s +nuget.frameworks\4.7.0\lib\net40\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\lib\net46\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\lib\netstandard1.6\NuGet.Frameworks.dll +nuget.frameworks\4.7.0\nuget.frameworks.4.7.0.nupkg.sha512 +nuget.frameworks\4.7.0\nuget.frameworks.nuspec +remotion.linq\2.2.0\lib\net35\Remotion.Linq.dll +remotion.linq\2.2.0\lib\net40\Remotion.Linq.dll +remotion.linq\2.2.0\lib\net45\Remotion.Linq.dll +remotion.linq\2.2.0\lib\netstandard1.0\Remotion.Linq.dll +remotion.linq\2.2.0\lib\portable-net45+win+wpa81+wp80\Remotion.Linq.dll +remotion.linq\2.2.0\remotion.linq.2.2.0.nupkg.sha512 +remotion.linq\2.2.0\remotion.linq.nuspec +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\debian.8-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\fedora.23-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\fedora.24-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.native.system.data.sqlclient.sni\4.4.0\LICENSE.TXT +runtime.native.system.data.sqlclient.sni\4.4.0\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.native.system.data.sqlclient.sni\4.4.0\runtime.native.system.data.sqlclient.sni.nuspec +runtime.native.system.data.sqlclient.sni\4.4.0\THIRD-PARTY-NOTICES.TXT +runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.native.system.io.compression\4.1.0\dotnet_library_license.txt +runtime.native.system.io.compression\4.1.0\lib\netstandard1.0\_._ +runtime.native.system.io.compression\4.1.0\runtime.native.system.io.compression.4.1.0.nupkg.sha512 +runtime.native.system.io.compression\4.1.0\runtime.native.system.io.compression.nuspec +runtime.native.system.io.compression\4.1.0\ThirdPartyNotices.txt +runtime.native.system.io.compression\4.3.0\dotnet_library_license.txt +runtime.native.system.io.compression\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.io.compression\4.3.0\runtime.native.system.io.compression.4.3.0.nupkg.sha512 +runtime.native.system.io.compression\4.3.0\runtime.native.system.io.compression.nuspec +runtime.native.system.io.compression\4.3.0\ThirdPartyNotices.txt +runtime.native.system.net.http\4.0.1\dotnet_library_license.txt +runtime.native.system.net.http\4.0.1\lib\netstandard1.0\_._ +runtime.native.system.net.http\4.0.1\runtime.native.system.net.http.4.0.1.nupkg.sha512 +runtime.native.system.net.http\4.0.1\runtime.native.system.net.http.nuspec +runtime.native.system.net.http\4.0.1\ThirdPartyNotices.txt +runtime.native.system.net.http\4.3.0\dotnet_library_license.txt +runtime.native.system.net.http\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.net.http\4.3.0\runtime.native.system.net.http.4.3.0.nupkg.sha512 +runtime.native.system.net.http\4.3.0\runtime.native.system.net.http.nuspec +runtime.native.system.net.http\4.3.0\ThirdPartyNotices.txt +runtime.native.system.net.security\4.3.0\dotnet_library_license.txt +runtime.native.system.net.security\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.net.security\4.3.0\runtime.native.system.net.security.4.3.0.nupkg.sha512 +runtime.native.system.net.security\4.3.0\runtime.native.system.net.security.nuspec +runtime.native.system.net.security\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography.apple\4.3.0\dotnet_library_license.txt +runtime.native.system.security.cryptography.apple\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography.apple\4.3.0\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +runtime.native.system.security.cryptography.apple\4.3.0\runtime.native.system.security.cryptography.apple.nuspec +runtime.native.system.security.cryptography.apple\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.native.system.security.cryptography.openssl\4.3.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography.openssl\4.3.0\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.native.system.security.cryptography.openssl\4.3.0\runtime.native.system.security.cryptography.openssl.nuspec +runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.native.system.security.cryptography\4.0.0\dotnet_library_license.txt +runtime.native.system.security.cryptography\4.0.0\lib\netstandard1.0\_._ +runtime.native.system.security.cryptography\4.0.0\runtime.native.system.security.cryptography.4.0.0.nupkg.sha512 +runtime.native.system.security.cryptography\4.0.0\runtime.native.system.security.cryptography.nuspec +runtime.native.system.security.cryptography\4.0.0\ThirdPartyNotices.txt +runtime.native.system\4.0.0\dotnet_library_license.txt +runtime.native.system\4.0.0\lib\netstandard1.0\_._ +runtime.native.system\4.0.0\runtime.native.system.4.0.0.nupkg.sha512 +runtime.native.system\4.0.0\runtime.native.system.nuspec +runtime.native.system\4.0.0\ThirdPartyNotices.txt +runtime.native.system\4.3.0\dotnet_library_license.txt +runtime.native.system\4.3.0\lib\netstandard1.0\_._ +runtime.native.system\4.3.0\runtime.native.system.4.3.0.nupkg.sha512 +runtime.native.system\4.3.0\runtime.native.system.nuspec +runtime.native.system\4.3.0\ThirdPartyNotices.txt +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\opensuse.13.2-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\opensuse.42.1-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\dotnet_library_license.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512 +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\runtimes\osx.10.10-x64\native\System.Security.Cryptography.Native.Apple.dylib +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\ThirdPartyNotices.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\osx.10.10-x64\native\System.Security.Cryptography.Native.OpenSsl.dylib +runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\rhel.7-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.14.04-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.16.04-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512 +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\runtimes\ubuntu.16.10-x64\native\System.Security.Cryptography.Native.OpenSsl.so +runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-arm64\native\sni.dll +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-x64\native\sni.dll +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\dotnet_library_license.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512 +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\runtimes\win-x86\native\sni.dll +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\ThirdPartyNotices.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\useSharedDesignerContext.txt +runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\version.txt +sqlitepclraw.bundle_green\1.1.11\build\wp8\SQLitePCLRaw.bundle_green.targets +sqlitepclraw.bundle_green\1.1.11\build\wp80\arm\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\arm\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\x86\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\build\wp80\x86\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\MonoAndroid\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\MonoAndroid\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net35\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net35\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net40\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net40\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\net45\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\net45\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\netcoreapp\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\netcoreapp\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\netstandard1.1\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\netstandard1.1\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\uap10.0\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\uap10.0\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\win8\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\win8\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\win81\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\win81\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\wp8\_._ +sqlitepclraw.bundle_green\1.1.11\lib\wpa81\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\wpa81\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.batteries_green.dll +sqlitepclraw.bundle_green\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.batteries_v2.dll +sqlitepclraw.bundle_green\1.1.11\sqlitepclraw.bundle_green.1.1.11.nupkg.sha512 +sqlitepclraw.bundle_green\1.1.11\sqlitepclraw.bundle_green.nuspec +sqlitepclraw.core\1.1.11\lib\MonoAndroid\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net35\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net40\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\net45\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\netstandard1.0\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\netstandard1.1\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\uap10.0\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\win8\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\win81\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\wpa81\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\Xamarin.iOS10\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\lib\Xamarin.Mac20\SQLitePCLRaw.core.dll +sqlitepclraw.core\1.1.11\sqlitepclraw.core.1.1.11.nupkg.sha512 +sqlitepclraw.core\1.1.11\sqlitepclraw.core.nuspec +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\alpine-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-arm\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-arm64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-armel\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-musl-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-x64\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\runtimes\linux-x86\native\libe_sqlite3.so +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\sqlitepclraw.lib.e_sqlite3.linux.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.linux\1.1.11\sqlitepclraw.lib.e_sqlite3.linux.nuspec +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\build\Xamarin.Mac20\SQLitePCLRaw.lib.e_sqlite3.osx.targets +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\lib\Xamarin.Mac20\_._ +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\runtimes\osx-x64\native\libe_sqlite3.dylib +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\sqlitepclraw.lib.e_sqlite3.osx.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.osx\1.1.11\sqlitepclraw.lib.e_sqlite3.osx.nuspec +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\net35\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\netstandard1.0\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\lib\netstandard2.0\_._ +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win-x64\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win-x86\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\runtimes\win8-arm\native\e_sqlite3.dll +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.11.nupkg.sha512 +sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\lib\netstandard1.1\SQLitePCLRaw.provider.e_sqlite3.dll +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.11.nupkg.sha512 +sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec +stackexchange.redis.strongname\1.2.4\lib\net45\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\lib\net46\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\lib\netstandard1.5\StackExchange.Redis.StrongName.dll +stackexchange.redis.strongname\1.2.4\stackexchange.redis.strongname.1.2.4.nupkg.sha512 +stackexchange.redis.strongname\1.2.4\stackexchange.redis.strongname.nuspec +system.appcontext\4.1.0\dotnet_library_license.txt +system.appcontext\4.1.0\lib\MonoAndroid10\_._ +system.appcontext\4.1.0\lib\MonoTouch10\_._ +system.appcontext\4.1.0\lib\net46\System.AppContext.dll +system.appcontext\4.1.0\lib\net463\System.AppContext.dll +system.appcontext\4.1.0\lib\netcore50\System.AppContext.dll +system.appcontext\4.1.0\lib\netstandard1.6\System.AppContext.dll +system.appcontext\4.1.0\lib\xamarinios10\_._ +system.appcontext\4.1.0\lib\xamarinmac20\_._ +system.appcontext\4.1.0\lib\xamarintvos10\_._ +system.appcontext\4.1.0\lib\xamarinwatchos10\_._ +system.appcontext\4.1.0\ref\MonoAndroid10\_._ +system.appcontext\4.1.0\ref\MonoTouch10\_._ +system.appcontext\4.1.0\ref\net46\System.AppContext.dll +system.appcontext\4.1.0\ref\net463\System.AppContext.dll +system.appcontext\4.1.0\ref\netstandard\_._ +system.appcontext\4.1.0\ref\netstandard1.3\System.AppContext.dll +system.appcontext\4.1.0\ref\netstandard1.6\System.AppContext.dll +system.appcontext\4.1.0\ref\xamarinios10\_._ +system.appcontext\4.1.0\ref\xamarinmac20\_._ +system.appcontext\4.1.0\ref\xamarintvos10\_._ +system.appcontext\4.1.0\ref\xamarinwatchos10\_._ +system.appcontext\4.1.0\runtimes\aot\lib\netcore50\System.AppContext.dll +system.appcontext\4.1.0\system.appcontext.4.1.0.nupkg.sha512 +system.appcontext\4.1.0\system.appcontext.nuspec +system.appcontext\4.1.0\ThirdPartyNotices.txt +system.appcontext\4.3.0\dotnet_library_license.txt +system.appcontext\4.3.0\lib\MonoAndroid10\_._ +system.appcontext\4.3.0\lib\MonoTouch10\_._ +system.appcontext\4.3.0\lib\net46\System.AppContext.dll +system.appcontext\4.3.0\lib\net463\System.AppContext.dll +system.appcontext\4.3.0\lib\netcore50\System.AppContext.dll +system.appcontext\4.3.0\lib\netstandard1.6\System.AppContext.dll +system.appcontext\4.3.0\lib\xamarinios10\_._ +system.appcontext\4.3.0\lib\xamarinmac20\_._ +system.appcontext\4.3.0\lib\xamarintvos10\_._ +system.appcontext\4.3.0\lib\xamarinwatchos10\_._ +system.appcontext\4.3.0\ref\MonoAndroid10\_._ +system.appcontext\4.3.0\ref\MonoTouch10\_._ +system.appcontext\4.3.0\ref\net46\System.AppContext.dll +system.appcontext\4.3.0\ref\net463\System.AppContext.dll +system.appcontext\4.3.0\ref\netstandard\_._ +system.appcontext\4.3.0\ref\netstandard1.3\System.AppContext.dll +system.appcontext\4.3.0\ref\netstandard1.6\System.AppContext.dll +system.appcontext\4.3.0\ref\xamarinios10\_._ +system.appcontext\4.3.0\ref\xamarinmac20\_._ +system.appcontext\4.3.0\ref\xamarintvos10\_._ +system.appcontext\4.3.0\ref\xamarinwatchos10\_._ +system.appcontext\4.3.0\runtimes\aot\lib\netcore50\System.AppContext.dll +system.appcontext\4.3.0\system.appcontext.4.3.0.nupkg.sha512 +system.appcontext\4.3.0\system.appcontext.nuspec +system.appcontext\4.3.0\ThirdPartyNotices.txt +system.buffers\4.0.0\dotnet_library_license.txt +system.buffers\4.0.0\lib\netstandard1.1\.xml +system.buffers\4.0.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.0.0\system.buffers.4.0.0.nupkg.sha512 +system.buffers\4.0.0\system.buffers.nuspec +system.buffers\4.0.0\ThirdPartyNotices.txt +system.buffers\4.3.0\dotnet_library_license.txt +system.buffers\4.3.0\lib\netstandard1.1\.xml +system.buffers\4.3.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.3.0\system.buffers.4.3.0.nupkg.sha512 +system.buffers\4.3.0\system.buffers.nuspec +system.buffers\4.3.0\ThirdPartyNotices.txt +system.buffers\4.5.0\.signature.p7s +system.buffers\4.5.0\lib\netcoreapp2.0\_._ +system.buffers\4.5.0\lib\netstandard1.1\System.Buffers.dll +system.buffers\4.5.0\lib\netstandard2.0\System.Buffers.dll +system.buffers\4.5.0\lib\uap10.0.16299\_._ +system.buffers\4.5.0\LICENSE.TXT +system.buffers\4.5.0\ref\net45\System.Buffers.dll +system.buffers\4.5.0\ref\netcoreapp2.0\_._ +system.buffers\4.5.0\ref\netstandard1.1\System.Buffers.dll +system.buffers\4.5.0\ref\netstandard2.0\System.Buffers.dll +system.buffers\4.5.0\ref\uap10.0.16299\_._ +system.buffers\4.5.0\system.buffers.4.5.0.nupkg.sha512 +system.buffers\4.5.0\system.buffers.nuspec +system.buffers\4.5.0\THIRD-PARTY-NOTICES.TXT +system.buffers\4.5.0\useSharedDesignerContext.txt +system.buffers\4.5.0\version.txt +system.collections.concurrent\4.0.12\dotnet_library_license.txt +system.collections.concurrent\4.0.12\lib\MonoAndroid10\_._ +system.collections.concurrent\4.0.12\lib\MonoTouch10\_._ +system.collections.concurrent\4.0.12\lib\net45\_._ +system.collections.concurrent\4.0.12\lib\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\lib\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\lib\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.0.12\lib\win8\_._ +system.collections.concurrent\4.0.12\lib\wpa81\_._ +system.collections.concurrent\4.0.12\lib\xamarinios10\_._ +system.collections.concurrent\4.0.12\lib\xamarinmac20\_._ +system.collections.concurrent\4.0.12\lib\xamarintvos10\_._ +system.collections.concurrent\4.0.12\lib\xamarinwatchos10\_._ +system.collections.concurrent\4.0.12\ref\MonoAndroid10\_._ +system.collections.concurrent\4.0.12\ref\MonoTouch10\_._ +system.collections.concurrent\4.0.12\ref\net45\_._ +system.collections.concurrent\4.0.12\ref\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\netstandard1.1\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.0.12\ref\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.0.12\ref\win8\_._ +system.collections.concurrent\4.0.12\ref\wpa81\_._ +system.collections.concurrent\4.0.12\ref\xamarinios10\_._ +system.collections.concurrent\4.0.12\ref\xamarinmac20\_._ +system.collections.concurrent\4.0.12\ref\xamarintvos10\_._ +system.collections.concurrent\4.0.12\ref\xamarinwatchos10\_._ +system.collections.concurrent\4.0.12\system.collections.concurrent.4.0.12.nupkg.sha512 +system.collections.concurrent\4.0.12\system.collections.concurrent.nuspec +system.collections.concurrent\4.0.12\ThirdPartyNotices.txt +system.collections.concurrent\4.3.0\dotnet_library_license.txt +system.collections.concurrent\4.3.0\lib\MonoAndroid10\_._ +system.collections.concurrent\4.3.0\lib\MonoTouch10\_._ +system.collections.concurrent\4.3.0\lib\net45\_._ +system.collections.concurrent\4.3.0\lib\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\lib\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.3.0\lib\win8\_._ +system.collections.concurrent\4.3.0\lib\wpa81\_._ +system.collections.concurrent\4.3.0\lib\xamarinios10\_._ +system.collections.concurrent\4.3.0\lib\xamarinmac20\_._ +system.collections.concurrent\4.3.0\lib\xamarintvos10\_._ +system.collections.concurrent\4.3.0\lib\xamarinwatchos10\_._ +system.collections.concurrent\4.3.0\ref\MonoAndroid10\_._ +system.collections.concurrent\4.3.0\ref\MonoTouch10\_._ +system.collections.concurrent\4.3.0\ref\net45\_._ +system.collections.concurrent\4.3.0\ref\netcore50\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\netstandard1.1\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\netstandard1.3\System.Collections.Concurrent.dll +system.collections.concurrent\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.collections.concurrent\4.3.0\ref\win8\_._ +system.collections.concurrent\4.3.0\ref\wpa81\_._ +system.collections.concurrent\4.3.0\ref\xamarinios10\_._ +system.collections.concurrent\4.3.0\ref\xamarinmac20\_._ +system.collections.concurrent\4.3.0\ref\xamarintvos10\_._ +system.collections.concurrent\4.3.0\ref\xamarinwatchos10\_._ +system.collections.concurrent\4.3.0\system.collections.concurrent.4.3.0.nupkg.sha512 +system.collections.concurrent\4.3.0\system.collections.concurrent.nuspec +system.collections.concurrent\4.3.0\ThirdPartyNotices.txt +system.collections.immutable\1.3.0\dotnet_library_license.txt +system.collections.immutable\1.3.0\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.3.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.3.0\system.collections.immutable.1.3.0.nupkg.sha512 +system.collections.immutable\1.3.0\system.collections.immutable.nuspec +system.collections.immutable\1.3.0\ThirdPartyNotices.txt +system.collections.immutable\1.3.1\dotnet_library_license.txt +system.collections.immutable\1.3.1\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.3.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.3.1\system.collections.immutable.1.3.1.nupkg.sha512 +system.collections.immutable\1.3.1\system.collections.immutable.nuspec +system.collections.immutable\1.3.1\ThirdPartyNotices.txt +system.collections.immutable\1.5.0\.signature.p7s +system.collections.immutable\1.5.0\lib\netstandard1.0\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\netstandard1.3\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll +system.collections.immutable\1.5.0\LICENSE.TXT +system.collections.immutable\1.5.0\system.collections.immutable.1.5.0.nupkg.sha512 +system.collections.immutable\1.5.0\system.collections.immutable.nuspec +system.collections.immutable\1.5.0\THIRD-PARTY-NOTICES.TXT +system.collections.immutable\1.5.0\useSharedDesignerContext.txt +system.collections.immutable\1.5.0\version.txt +system.collections.nongeneric\4.3.0\dotnet_library_license.txt +system.collections.nongeneric\4.3.0\lib\MonoAndroid10\_._ +system.collections.nongeneric\4.3.0\lib\MonoTouch10\_._ +system.collections.nongeneric\4.3.0\lib\net46\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\lib\netstandard1.3\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\lib\xamarinios10\_._ +system.collections.nongeneric\4.3.0\lib\xamarinmac20\_._ +system.collections.nongeneric\4.3.0\lib\xamarintvos10\_._ +system.collections.nongeneric\4.3.0\lib\xamarinwatchos10\_._ +system.collections.nongeneric\4.3.0\ref\MonoAndroid10\_._ +system.collections.nongeneric\4.3.0\ref\MonoTouch10\_._ +system.collections.nongeneric\4.3.0\ref\net46\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\ref\netstandard1.3\System.Collections.NonGeneric.dll +system.collections.nongeneric\4.3.0\ref\xamarinios10\_._ +system.collections.nongeneric\4.3.0\ref\xamarinmac20\_._ +system.collections.nongeneric\4.3.0\ref\xamarintvos10\_._ +system.collections.nongeneric\4.3.0\ref\xamarinwatchos10\_._ +system.collections.nongeneric\4.3.0\system.collections.nongeneric.4.3.0.nupkg.sha512 +system.collections.nongeneric\4.3.0\system.collections.nongeneric.nuspec +system.collections.nongeneric\4.3.0\ThirdPartyNotices.txt +system.collections.specialized\4.3.0\dotnet_library_license.txt +system.collections.specialized\4.3.0\lib\MonoAndroid10\_._ +system.collections.specialized\4.3.0\lib\MonoTouch10\_._ +system.collections.specialized\4.3.0\lib\net46\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\lib\netstandard1.3\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\lib\xamarinios10\_._ +system.collections.specialized\4.3.0\lib\xamarinmac20\_._ +system.collections.specialized\4.3.0\lib\xamarintvos10\_._ +system.collections.specialized\4.3.0\lib\xamarinwatchos10\_._ +system.collections.specialized\4.3.0\ref\MonoAndroid10\_._ +system.collections.specialized\4.3.0\ref\MonoTouch10\_._ +system.collections.specialized\4.3.0\ref\net46\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\ref\netstandard1.3\System.Collections.Specialized.dll +system.collections.specialized\4.3.0\ref\xamarinios10\_._ +system.collections.specialized\4.3.0\ref\xamarinmac20\_._ +system.collections.specialized\4.3.0\ref\xamarintvos10\_._ +system.collections.specialized\4.3.0\ref\xamarinwatchos10\_._ +system.collections.specialized\4.3.0\system.collections.specialized.4.3.0.nupkg.sha512 +system.collections.specialized\4.3.0\system.collections.specialized.nuspec +system.collections.specialized\4.3.0\ThirdPartyNotices.txt +system.collections\4.0.11\dotnet_library_license.txt +system.collections\4.0.11\lib\MonoAndroid10\_._ +system.collections\4.0.11\lib\MonoTouch10\_._ +system.collections\4.0.11\lib\net45\_._ +system.collections\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.0.11\lib\win8\_._ +system.collections\4.0.11\lib\wp80\_._ +system.collections\4.0.11\lib\wpa81\_._ +system.collections\4.0.11\lib\xamarinios10\_._ +system.collections\4.0.11\lib\xamarinmac20\_._ +system.collections\4.0.11\lib\xamarintvos10\_._ +system.collections\4.0.11\lib\xamarinwatchos10\_._ +system.collections\4.0.11\ref\MonoAndroid10\_._ +system.collections\4.0.11\ref\MonoTouch10\_._ +system.collections\4.0.11\ref\net45\_._ +system.collections\4.0.11\ref\netcore50\System.Collections.dll +system.collections\4.0.11\ref\netstandard1.0\System.Collections.dll +system.collections\4.0.11\ref\netstandard1.3\System.Collections.dll +system.collections\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.0.11\ref\win8\_._ +system.collections\4.0.11\ref\wp80\_._ +system.collections\4.0.11\ref\wpa81\_._ +system.collections\4.0.11\ref\xamarinios10\_._ +system.collections\4.0.11\ref\xamarinmac20\_._ +system.collections\4.0.11\ref\xamarintvos10\_._ +system.collections\4.0.11\ref\xamarinwatchos10\_._ +system.collections\4.0.11\system.collections.4.0.11.nupkg.sha512 +system.collections\4.0.11\system.collections.nuspec +system.collections\4.0.11\ThirdPartyNotices.txt +system.collections\4.3.0\dotnet_library_license.txt +system.collections\4.3.0\lib\MonoAndroid10\_._ +system.collections\4.3.0\lib\MonoTouch10\_._ +system.collections\4.3.0\lib\net45\_._ +system.collections\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.3.0\lib\win8\_._ +system.collections\4.3.0\lib\wp80\_._ +system.collections\4.3.0\lib\wpa81\_._ +system.collections\4.3.0\lib\xamarinios10\_._ +system.collections\4.3.0\lib\xamarinmac20\_._ +system.collections\4.3.0\lib\xamarintvos10\_._ +system.collections\4.3.0\lib\xamarinwatchos10\_._ +system.collections\4.3.0\ref\MonoAndroid10\_._ +system.collections\4.3.0\ref\MonoTouch10\_._ +system.collections\4.3.0\ref\net45\_._ +system.collections\4.3.0\ref\netcore50\System.Collections.dll +system.collections\4.3.0\ref\netstandard1.0\System.Collections.dll +system.collections\4.3.0\ref\netstandard1.3\System.Collections.dll +system.collections\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.collections\4.3.0\ref\win8\_._ +system.collections\4.3.0\ref\wp80\_._ +system.collections\4.3.0\ref\wpa81\_._ +system.collections\4.3.0\ref\xamarinios10\_._ +system.collections\4.3.0\ref\xamarinmac20\_._ +system.collections\4.3.0\ref\xamarintvos10\_._ +system.collections\4.3.0\ref\xamarinwatchos10\_._ +system.collections\4.3.0\system.collections.4.3.0.nupkg.sha512 +system.collections\4.3.0\system.collections.nuspec +system.collections\4.3.0\ThirdPartyNotices.txt +system.componentmodel.annotations\4.5.0\.signature.p7s +system.componentmodel.annotations\4.5.0\lib\MonoAndroid10\_._ +system.componentmodel.annotations\4.5.0\lib\MonoTouch10\_._ +system.componentmodel.annotations\4.5.0\lib\net45\_._ +system.componentmodel.annotations\4.5.0\lib\net461\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netcore50\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netcoreapp2.0\_._ +system.componentmodel.annotations\4.5.0\lib\netstandard1.4\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\netstandard2.0\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\lib\portable-net45+win8\_._ +system.componentmodel.annotations\4.5.0\lib\uap10.0.16299\_._ +system.componentmodel.annotations\4.5.0\lib\win8\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinios10\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinmac20\_._ +system.componentmodel.annotations\4.5.0\lib\xamarintvos10\_._ +system.componentmodel.annotations\4.5.0\lib\xamarinwatchos10\_._ +system.componentmodel.annotations\4.5.0\LICENSE.TXT +system.componentmodel.annotations\4.5.0\ref\MonoAndroid10\_._ +system.componentmodel.annotations\4.5.0\ref\MonoTouch10\_._ +system.componentmodel.annotations\4.5.0\ref\net45\_._ +system.componentmodel.annotations\4.5.0\ref\net461\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netcore50\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netcoreapp2.0\_._ +system.componentmodel.annotations\4.5.0\ref\netstandard1.1\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard1.3\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard1.4\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\netstandard2.0\System.ComponentModel.Annotations.dll +system.componentmodel.annotations\4.5.0\ref\portable-net45+win8\_._ +system.componentmodel.annotations\4.5.0\ref\uap10.0.16299\_._ +system.componentmodel.annotations\4.5.0\ref\win8\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinios10\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinmac20\_._ +system.componentmodel.annotations\4.5.0\ref\xamarintvos10\_._ +system.componentmodel.annotations\4.5.0\ref\xamarinwatchos10\_._ +system.componentmodel.annotations\4.5.0\system.componentmodel.annotations.4.5.0.nupkg.sha512 +system.componentmodel.annotations\4.5.0\system.componentmodel.annotations.nuspec +system.componentmodel.annotations\4.5.0\THIRD-PARTY-NOTICES.TXT +system.componentmodel.annotations\4.5.0\useSharedDesignerContext.txt +system.componentmodel.annotations\4.5.0\version.txt +system.componentmodel.primitives\4.3.0\dotnet_library_license.txt +system.componentmodel.primitives\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel.primitives\4.3.0\lib\MonoTouch10\_._ +system.componentmodel.primitives\4.3.0\lib\net45\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\lib\netstandard1.0\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\lib\xamarinios10\_._ +system.componentmodel.primitives\4.3.0\lib\xamarinmac20\_._ +system.componentmodel.primitives\4.3.0\lib\xamarintvos10\_._ +system.componentmodel.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel.primitives\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel.primitives\4.3.0\ref\MonoTouch10\_._ +system.componentmodel.primitives\4.3.0\ref\net45\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\ref\netstandard1.0\System.ComponentModel.Primitives.dll +system.componentmodel.primitives\4.3.0\ref\xamarinios10\_._ +system.componentmodel.primitives\4.3.0\ref\xamarinmac20\_._ +system.componentmodel.primitives\4.3.0\ref\xamarintvos10\_._ +system.componentmodel.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel.primitives\4.3.0\system.componentmodel.primitives.4.3.0.nupkg.sha512 +system.componentmodel.primitives\4.3.0\system.componentmodel.primitives.nuspec +system.componentmodel.primitives\4.3.0\ThirdPartyNotices.txt +system.componentmodel.typeconverter\4.3.0\dotnet_library_license.txt +system.componentmodel.typeconverter\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel.typeconverter\4.3.0\lib\MonoTouch10\_._ +system.componentmodel.typeconverter\4.3.0\lib\net45\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\net462\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\netstandard1.0\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\netstandard1.5\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\lib\xamarinios10\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarinmac20\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarintvos10\_._ +system.componentmodel.typeconverter\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel.typeconverter\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel.typeconverter\4.3.0\ref\MonoTouch10\_._ +system.componentmodel.typeconverter\4.3.0\ref\net45\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\net462\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\netstandard1.0\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\netstandard1.5\System.ComponentModel.TypeConverter.dll +system.componentmodel.typeconverter\4.3.0\ref\xamarinios10\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarinmac20\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarintvos10\_._ +system.componentmodel.typeconverter\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel.typeconverter\4.3.0\system.componentmodel.typeconverter.4.3.0.nupkg.sha512 +system.componentmodel.typeconverter\4.3.0\system.componentmodel.typeconverter.nuspec +system.componentmodel.typeconverter\4.3.0\ThirdPartyNotices.txt +system.componentmodel\4.3.0\dotnet_library_license.txt +system.componentmodel\4.3.0\lib\MonoAndroid10\_._ +system.componentmodel\4.3.0\lib\MonoTouch10\_._ +system.componentmodel\4.3.0\lib\net45\_._ +system.componentmodel\4.3.0\lib\netcore50\System.ComponentModel.dll +system.componentmodel\4.3.0\lib\netstandard1.3\System.ComponentModel.dll +system.componentmodel\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.componentmodel\4.3.0\lib\win8\_._ +system.componentmodel\4.3.0\lib\wp80\_._ +system.componentmodel\4.3.0\lib\wpa81\_._ +system.componentmodel\4.3.0\lib\xamarinios10\_._ +system.componentmodel\4.3.0\lib\xamarinmac20\_._ +system.componentmodel\4.3.0\lib\xamarintvos10\_._ +system.componentmodel\4.3.0\lib\xamarinwatchos10\_._ +system.componentmodel\4.3.0\ref\MonoAndroid10\_._ +system.componentmodel\4.3.0\ref\MonoTouch10\_._ +system.componentmodel\4.3.0\ref\net45\_._ +system.componentmodel\4.3.0\ref\netcore50\System.ComponentModel.dll +system.componentmodel\4.3.0\ref\netstandard1.0\System.ComponentModel.dll +system.componentmodel\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.componentmodel\4.3.0\ref\win8\_._ +system.componentmodel\4.3.0\ref\wp80\_._ +system.componentmodel\4.3.0\ref\wpa81\_._ +system.componentmodel\4.3.0\ref\xamarinios10\_._ +system.componentmodel\4.3.0\ref\xamarinmac20\_._ +system.componentmodel\4.3.0\ref\xamarintvos10\_._ +system.componentmodel\4.3.0\ref\xamarinwatchos10\_._ +system.componentmodel\4.3.0\system.componentmodel.4.3.0.nupkg.sha512 +system.componentmodel\4.3.0\system.componentmodel.nuspec +system.componentmodel\4.3.0\ThirdPartyNotices.txt +system.composition.attributedmodel\1.0.31\dotnet_library_license.txt +system.composition.attributedmodel\1.0.31\lib\netstandard1.0\System.Composition.AttributedModel.dll +system.composition.attributedmodel\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll +system.composition.attributedmodel\1.0.31\system.composition.attributedmodel.1.0.31.nupkg.sha512 +system.composition.attributedmodel\1.0.31\system.composition.attributedmodel.nuspec +system.composition.attributedmodel\1.0.31\ThirdPartyNotices.txt +system.composition.convention\1.0.31\dotnet_library_license.txt +system.composition.convention\1.0.31\lib\netstandard1.0\System.Composition.Convention.dll +system.composition.convention\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll +system.composition.convention\1.0.31\system.composition.convention.1.0.31.nupkg.sha512 +system.composition.convention\1.0.31\system.composition.convention.nuspec +system.composition.convention\1.0.31\ThirdPartyNotices.txt +system.composition.hosting\1.0.31\dotnet_library_license.txt +system.composition.hosting\1.0.31\lib\netstandard1.0\System.Composition.Hosting.dll +system.composition.hosting\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll +system.composition.hosting\1.0.31\system.composition.hosting.1.0.31.nupkg.sha512 +system.composition.hosting\1.0.31\system.composition.hosting.nuspec +system.composition.hosting\1.0.31\ThirdPartyNotices.txt +system.composition.runtime\1.0.31\dotnet_library_license.txt +system.composition.runtime\1.0.31\lib\netstandard1.0\System.Composition.Runtime.dll +system.composition.runtime\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll +system.composition.runtime\1.0.31\system.composition.runtime.1.0.31.nupkg.sha512 +system.composition.runtime\1.0.31\system.composition.runtime.nuspec +system.composition.runtime\1.0.31\ThirdPartyNotices.txt +system.composition.typedparts\1.0.31\dotnet_library_license.txt +system.composition.typedparts\1.0.31\lib\netstandard1.0\System.Composition.TypedParts.dll +system.composition.typedparts\1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll +system.composition.typedparts\1.0.31\system.composition.typedparts.1.0.31.nupkg.sha512 +system.composition.typedparts\1.0.31\system.composition.typedparts.nuspec +system.composition.typedparts\1.0.31\ThirdPartyNotices.txt +system.composition\1.0.31\dotnet_library_license.txt +system.composition\1.0.31\system.composition.1.0.31.nupkg.sha512 +system.composition\1.0.31\system.composition.nuspec +system.composition\1.0.31\ThirdPartyNotices.txt +system.console\4.0.0\dotnet_library_license.txt +system.console\4.0.0\lib\MonoAndroid10\_._ +system.console\4.0.0\lib\MonoTouch10\_._ +system.console\4.0.0\lib\net46\System.Console.dll +system.console\4.0.0\lib\xamarinios10\_._ +system.console\4.0.0\lib\xamarinmac20\_._ +system.console\4.0.0\lib\xamarintvos10\_._ +system.console\4.0.0\lib\xamarinwatchos10\_._ +system.console\4.0.0\ref\MonoAndroid10\_._ +system.console\4.0.0\ref\MonoTouch10\_._ +system.console\4.0.0\ref\net46\System.Console.dll +system.console\4.0.0\ref\netstandard1.3\System.Console.dll +system.console\4.0.0\ref\xamarinios10\_._ +system.console\4.0.0\ref\xamarinmac20\_._ +system.console\4.0.0\ref\xamarintvos10\_._ +system.console\4.0.0\ref\xamarinwatchos10\_._ +system.console\4.0.0\system.console.4.0.0.nupkg.sha512 +system.console\4.0.0\system.console.nuspec +system.console\4.0.0\ThirdPartyNotices.txt +system.console\4.3.0\dotnet_library_license.txt +system.console\4.3.0\lib\MonoAndroid10\_._ +system.console\4.3.0\lib\MonoTouch10\_._ +system.console\4.3.0\lib\net46\System.Console.dll +system.console\4.3.0\lib\xamarinios10\_._ +system.console\4.3.0\lib\xamarinmac20\_._ +system.console\4.3.0\lib\xamarintvos10\_._ +system.console\4.3.0\lib\xamarinwatchos10\_._ +system.console\4.3.0\ref\MonoAndroid10\_._ +system.console\4.3.0\ref\MonoTouch10\_._ +system.console\4.3.0\ref\net46\System.Console.dll +system.console\4.3.0\ref\netstandard1.3\System.Console.dll +system.console\4.3.0\ref\xamarinios10\_._ +system.console\4.3.0\ref\xamarinmac20\_._ +system.console\4.3.0\ref\xamarintvos10\_._ +system.console\4.3.0\ref\xamarinwatchos10\_._ +system.console\4.3.0\system.console.4.3.0.nupkg.sha512 +system.console\4.3.0\system.console.nuspec +system.console\4.3.0\ThirdPartyNotices.txt +system.data.sqlclient\4.5.1\.signature.p7s +system.data.sqlclient\4.5.1\lib\MonoAndroid10\_._ +system.data.sqlclient\4.5.1\lib\MonoTouch10\_._ +system.data.sqlclient\4.5.1\lib\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard1.2\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\lib\xamarinios10\_._ +system.data.sqlclient\4.5.1\lib\xamarinmac20\_._ +system.data.sqlclient\4.5.1\lib\xamarintvos10\_._ +system.data.sqlclient\4.5.1\lib\xamarinwatchos10\_._ +system.data.sqlclient\4.5.1\LICENSE.TXT +system.data.sqlclient\4.5.1\ref\MonoAndroid10\_._ +system.data.sqlclient\4.5.1\ref\MonoTouch10\_._ +system.data.sqlclient\4.5.1\ref\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard1.2\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\ref\xamarinios10\_._ +system.data.sqlclient\4.5.1\ref\xamarinmac20\_._ +system.data.sqlclient\4.5.1\ref\xamarintvos10\_._ +system.data.sqlclient\4.5.1\ref\xamarinwatchos10\_._ +system.data.sqlclient\4.5.1\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\unix\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net451\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net46\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\net461\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netstandard1.3\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\runtimes\win\lib\uap10.0.16299\System.Data.SqlClient.dll +system.data.sqlclient\4.5.1\system.data.sqlclient.4.5.1.nupkg.sha512 +system.data.sqlclient\4.5.1\system.data.sqlclient.nuspec +system.data.sqlclient\4.5.1\THIRD-PARTY-NOTICES.TXT +system.data.sqlclient\4.5.1\useSharedDesignerContext.txt +system.data.sqlclient\4.5.1\version.txt +system.diagnostics.contracts\4.3.0\dotnet_library_license.txt +system.diagnostics.contracts\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.contracts\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.contracts\4.3.0\lib\net45\_._ +system.diagnostics.contracts\4.3.0\lib\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\lib\netstandard1.0\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.contracts\4.3.0\lib\win8\_._ +system.diagnostics.contracts\4.3.0\lib\wp80\_._ +system.diagnostics.contracts\4.3.0\lib\wpa81\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinios10\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.contracts\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.contracts\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.contracts\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.contracts\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.contracts\4.3.0\ref\net45\_._ +system.diagnostics.contracts\4.3.0\ref\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\ref\netstandard1.0\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.contracts\4.3.0\ref\win8\_._ +system.diagnostics.contracts\4.3.0\ref\wp80\_._ +system.diagnostics.contracts\4.3.0\ref\wpa81\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinios10\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.contracts\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.contracts\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.contracts\4.3.0\runtimes\aot\lib\netcore50\System.Diagnostics.Contracts.dll +system.diagnostics.contracts\4.3.0\system.diagnostics.contracts.4.3.0.nupkg.sha512 +system.diagnostics.contracts\4.3.0\system.diagnostics.contracts.nuspec +system.diagnostics.contracts\4.3.0\ThirdPartyNotices.txt +system.diagnostics.debug\4.0.11\dotnet_library_license.txt +system.diagnostics.debug\4.0.11\lib\MonoAndroid10\_._ +system.diagnostics.debug\4.0.11\lib\MonoTouch10\_._ +system.diagnostics.debug\4.0.11\lib\net45\_._ +system.diagnostics.debug\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.0.11\lib\win8\_._ +system.diagnostics.debug\4.0.11\lib\wp80\_._ +system.diagnostics.debug\4.0.11\lib\wpa81\_._ +system.diagnostics.debug\4.0.11\lib\xamarinios10\_._ +system.diagnostics.debug\4.0.11\lib\xamarinmac20\_._ +system.diagnostics.debug\4.0.11\lib\xamarintvos10\_._ +system.diagnostics.debug\4.0.11\lib\xamarinwatchos10\_._ +system.diagnostics.debug\4.0.11\ref\MonoAndroid10\_._ +system.diagnostics.debug\4.0.11\ref\MonoTouch10\_._ +system.diagnostics.debug\4.0.11\ref\net45\_._ +system.diagnostics.debug\4.0.11\ref\netcore50\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\netstandard1.0\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\netstandard1.3\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.0.11\ref\win8\_._ +system.diagnostics.debug\4.0.11\ref\wp80\_._ +system.diagnostics.debug\4.0.11\ref\wpa81\_._ +system.diagnostics.debug\4.0.11\ref\xamarinios10\_._ +system.diagnostics.debug\4.0.11\ref\xamarinmac20\_._ +system.diagnostics.debug\4.0.11\ref\xamarintvos10\_._ +system.diagnostics.debug\4.0.11\ref\xamarinwatchos10\_._ +system.diagnostics.debug\4.0.11\system.diagnostics.debug.4.0.11.nupkg.sha512 +system.diagnostics.debug\4.0.11\system.diagnostics.debug.nuspec +system.diagnostics.debug\4.0.11\ThirdPartyNotices.txt +system.diagnostics.debug\4.3.0\dotnet_library_license.txt +system.diagnostics.debug\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.debug\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.debug\4.3.0\lib\net45\_._ +system.diagnostics.debug\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.3.0\lib\win8\_._ +system.diagnostics.debug\4.3.0\lib\wp80\_._ +system.diagnostics.debug\4.3.0\lib\wpa81\_._ +system.diagnostics.debug\4.3.0\lib\xamarinios10\_._ +system.diagnostics.debug\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.debug\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.debug\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.debug\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.debug\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.debug\4.3.0\ref\net45\_._ +system.diagnostics.debug\4.3.0\ref\netcore50\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\netstandard1.0\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\netstandard1.3\System.Diagnostics.Debug.dll +system.diagnostics.debug\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.debug\4.3.0\ref\win8\_._ +system.diagnostics.debug\4.3.0\ref\wp80\_._ +system.diagnostics.debug\4.3.0\ref\wpa81\_._ +system.diagnostics.debug\4.3.0\ref\xamarinios10\_._ +system.diagnostics.debug\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.debug\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.debug\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.debug\4.3.0\system.diagnostics.debug.4.3.0.nupkg.sha512 +system.diagnostics.debug\4.3.0\system.diagnostics.debug.nuspec +system.diagnostics.debug\4.3.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.0.0\dotnet_library_license.txt +system.diagnostics.diagnosticsource\4.0.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.0.0\system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.0.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.0.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.3.0\dotnet_library_license.txt +system.diagnostics.diagnosticsource\4.3.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.3.0\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.3.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.3.0\ThirdPartyNotices.txt +system.diagnostics.diagnosticsource\4.4.0\lib\net45\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\netcoreapp2.0\_._ +system.diagnostics.diagnosticsource\4.4.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.4.0\LICENSE.TXT +system.diagnostics.diagnosticsource\4.4.0\ref\netcoreapp2.0\_._ +system.diagnostics.diagnosticsource\4.4.0\system.diagnostics.diagnosticsource.4.4.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.4.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.4.0\THIRD-PARTY-NOTICES.TXT +system.diagnostics.diagnosticsource\4.4.0\useSharedDesignerContext.txt +system.diagnostics.diagnosticsource\4.4.0\version.txt +system.diagnostics.diagnosticsource\4.5.0\.signature.p7s +system.diagnostics.diagnosticsource\4.5.0\lib\net45\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\net46\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\netstandard1.1\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\netstandard1.3\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\lib\portable-net45+win8+wpa81\System.Diagnostics.DiagnosticSource.dll +system.diagnostics.diagnosticsource\4.5.0\LICENSE.TXT +system.diagnostics.diagnosticsource\4.5.0\system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512 +system.diagnostics.diagnosticsource\4.5.0\system.diagnostics.diagnosticsource.nuspec +system.diagnostics.diagnosticsource\4.5.0\THIRD-PARTY-NOTICES.TXT +system.diagnostics.diagnosticsource\4.5.0\useSharedDesignerContext.txt +system.diagnostics.diagnosticsource\4.5.0\version.txt +system.diagnostics.fileversioninfo\4.3.0\dotnet_library_license.txt +system.diagnostics.fileversioninfo\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinios10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.fileversioninfo\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\ref\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinios10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.fileversioninfo\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.fileversioninfo\4.3.0\runtimes\unix\lib\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\net46\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\netcore50\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\runtimes\win\lib\netstandard1.3\System.Diagnostics.FileVersionInfo.dll +system.diagnostics.fileversioninfo\4.3.0\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512 +system.diagnostics.fileversioninfo\4.3.0\system.diagnostics.fileversioninfo.nuspec +system.diagnostics.fileversioninfo\4.3.0\ThirdPartyNotices.txt +system.diagnostics.process\4.3.0\dotnet_library_license.txt +system.diagnostics.process\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.process\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.process\4.3.0\lib\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\lib\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\lib\xamarinios10\_._ +system.diagnostics.process\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.process\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.process\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.process\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.process\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.process\4.3.0\ref\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\netstandard1.3\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\ref\xamarinios10\_._ +system.diagnostics.process\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.process\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.process\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.process\4.3.0\runtimes\linux\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\osx\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\net46\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\net461\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win\lib\netstandard1.4\System.Diagnostics.Process.dll +system.diagnostics.process\4.3.0\runtimes\win7\lib\netcore50\_._ +system.diagnostics.process\4.3.0\system.diagnostics.process.4.3.0.nupkg.sha512 +system.diagnostics.process\4.3.0\system.diagnostics.process.nuspec +system.diagnostics.process\4.3.0\ThirdPartyNotices.txt +system.diagnostics.stacktrace\4.3.0\dotnet_library_license.txt +system.diagnostics.stacktrace\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.stacktrace\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.stacktrace\4.3.0\lib\net46\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\lib\netstandard1.3\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\lib\xamarinios10\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.stacktrace\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.stacktrace\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.stacktrace\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.stacktrace\4.3.0\ref\net46\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\ref\netstandard1.3\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\ref\xamarinios10\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.stacktrace\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.stacktrace\4.3.0\runtimes\aot\lib\netcore50\System.Diagnostics.StackTrace.dll +system.diagnostics.stacktrace\4.3.0\system.diagnostics.stacktrace.4.3.0.nupkg.sha512 +system.diagnostics.stacktrace\4.3.0\system.diagnostics.stacktrace.nuspec +system.diagnostics.stacktrace\4.3.0\ThirdPartyNotices.txt +system.diagnostics.tools\4.0.1\dotnet_library_license.txt +system.diagnostics.tools\4.0.1\lib\MonoAndroid10\_._ +system.diagnostics.tools\4.0.1\lib\MonoTouch10\_._ +system.diagnostics.tools\4.0.1\lib\net45\_._ +system.diagnostics.tools\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.0.1\lib\win8\_._ +system.diagnostics.tools\4.0.1\lib\wp80\_._ +system.diagnostics.tools\4.0.1\lib\wpa81\_._ +system.diagnostics.tools\4.0.1\lib\xamarinios10\_._ +system.diagnostics.tools\4.0.1\lib\xamarinmac20\_._ +system.diagnostics.tools\4.0.1\lib\xamarintvos10\_._ +system.diagnostics.tools\4.0.1\lib\xamarinwatchos10\_._ +system.diagnostics.tools\4.0.1\ref\MonoAndroid10\_._ +system.diagnostics.tools\4.0.1\ref\MonoTouch10\_._ +system.diagnostics.tools\4.0.1\ref\net45\_._ +system.diagnostics.tools\4.0.1\ref\netcore50\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.0.1\ref\netstandard1.0\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.0.1\ref\win8\_._ +system.diagnostics.tools\4.0.1\ref\wp80\_._ +system.diagnostics.tools\4.0.1\ref\wpa81\_._ +system.diagnostics.tools\4.0.1\ref\xamarinios10\_._ +system.diagnostics.tools\4.0.1\ref\xamarinmac20\_._ +system.diagnostics.tools\4.0.1\ref\xamarintvos10\_._ +system.diagnostics.tools\4.0.1\ref\xamarinwatchos10\_._ +system.diagnostics.tools\4.0.1\system.diagnostics.tools.4.0.1.nupkg.sha512 +system.diagnostics.tools\4.0.1\system.diagnostics.tools.nuspec +system.diagnostics.tools\4.0.1\ThirdPartyNotices.txt +system.diagnostics.tools\4.3.0\dotnet_library_license.txt +system.diagnostics.tools\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.tools\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.tools\4.3.0\lib\net45\_._ +system.diagnostics.tools\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.3.0\lib\win8\_._ +system.diagnostics.tools\4.3.0\lib\wp80\_._ +system.diagnostics.tools\4.3.0\lib\wpa81\_._ +system.diagnostics.tools\4.3.0\lib\xamarinios10\_._ +system.diagnostics.tools\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.tools\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.tools\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.tools\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.tools\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.tools\4.3.0\ref\net45\_._ +system.diagnostics.tools\4.3.0\ref\netcore50\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.3.0\ref\netstandard1.0\System.Diagnostics.Tools.dll +system.diagnostics.tools\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.diagnostics.tools\4.3.0\ref\win8\_._ +system.diagnostics.tools\4.3.0\ref\wp80\_._ +system.diagnostics.tools\4.3.0\ref\wpa81\_._ +system.diagnostics.tools\4.3.0\ref\xamarinios10\_._ +system.diagnostics.tools\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.tools\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.tools\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.tools\4.3.0\system.diagnostics.tools.4.3.0.nupkg.sha512 +system.diagnostics.tools\4.3.0\system.diagnostics.tools.nuspec +system.diagnostics.tools\4.3.0\ThirdPartyNotices.txt +system.diagnostics.tracing\4.1.0\dotnet_library_license.txt +system.diagnostics.tracing\4.1.0\lib\MonoAndroid10\_._ +system.diagnostics.tracing\4.1.0\lib\MonoTouch10\_._ +system.diagnostics.tracing\4.1.0\lib\net45\_._ +system.diagnostics.tracing\4.1.0\lib\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.1.0\lib\win8\_._ +system.diagnostics.tracing\4.1.0\lib\wpa81\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinios10\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinmac20\_._ +system.diagnostics.tracing\4.1.0\lib\xamarintvos10\_._ +system.diagnostics.tracing\4.1.0\lib\xamarinwatchos10\_._ +system.diagnostics.tracing\4.1.0\ref\MonoAndroid10\_._ +system.diagnostics.tracing\4.1.0\ref\MonoTouch10\_._ +system.diagnostics.tracing\4.1.0\ref\net45\_._ +system.diagnostics.tracing\4.1.0\ref\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netcore50\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.1\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.2\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.3\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\netstandard1.5\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.1.0\ref\win8\_._ +system.diagnostics.tracing\4.1.0\ref\wpa81\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinios10\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinmac20\_._ +system.diagnostics.tracing\4.1.0\ref\xamarintvos10\_._ +system.diagnostics.tracing\4.1.0\ref\xamarinwatchos10\_._ +system.diagnostics.tracing\4.1.0\system.diagnostics.tracing.4.1.0.nupkg.sha512 +system.diagnostics.tracing\4.1.0\system.diagnostics.tracing.nuspec +system.diagnostics.tracing\4.1.0\ThirdPartyNotices.txt +system.diagnostics.tracing\4.3.0\dotnet_library_license.txt +system.diagnostics.tracing\4.3.0\lib\MonoAndroid10\_._ +system.diagnostics.tracing\4.3.0\lib\MonoTouch10\_._ +system.diagnostics.tracing\4.3.0\lib\net45\_._ +system.diagnostics.tracing\4.3.0\lib\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.3.0\lib\win8\_._ +system.diagnostics.tracing\4.3.0\lib\wpa81\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinios10\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinmac20\_._ +system.diagnostics.tracing\4.3.0\lib\xamarintvos10\_._ +system.diagnostics.tracing\4.3.0\lib\xamarinwatchos10\_._ +system.diagnostics.tracing\4.3.0\ref\MonoAndroid10\_._ +system.diagnostics.tracing\4.3.0\ref\MonoTouch10\_._ +system.diagnostics.tracing\4.3.0\ref\net45\_._ +system.diagnostics.tracing\4.3.0\ref\net462\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netcore50\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.1\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.2\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.3\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\netstandard1.5\System.Diagnostics.Tracing.dll +system.diagnostics.tracing\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.diagnostics.tracing\4.3.0\ref\win8\_._ +system.diagnostics.tracing\4.3.0\ref\wpa81\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinios10\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinmac20\_._ +system.diagnostics.tracing\4.3.0\ref\xamarintvos10\_._ +system.diagnostics.tracing\4.3.0\ref\xamarinwatchos10\_._ +system.diagnostics.tracing\4.3.0\system.diagnostics.tracing.4.3.0.nupkg.sha512 +system.diagnostics.tracing\4.3.0\system.diagnostics.tracing.nuspec +system.diagnostics.tracing\4.3.0\ThirdPartyNotices.txt +system.dynamic.runtime\4.0.11\dotnet_library_license.txt +system.dynamic.runtime\4.0.11\lib\MonoAndroid10\_._ +system.dynamic.runtime\4.0.11\lib\MonoTouch10\_._ +system.dynamic.runtime\4.0.11\lib\net45\_._ +system.dynamic.runtime\4.0.11\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\lib\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.0.11\lib\win8\_._ +system.dynamic.runtime\4.0.11\lib\wp80\_._ +system.dynamic.runtime\4.0.11\lib\wpa81\_._ +system.dynamic.runtime\4.0.11\lib\xamarinios10\_._ +system.dynamic.runtime\4.0.11\lib\xamarinmac20\_._ +system.dynamic.runtime\4.0.11\lib\xamarintvos10\_._ +system.dynamic.runtime\4.0.11\lib\xamarinwatchos10\_._ +system.dynamic.runtime\4.0.11\ref\MonoAndroid10\_._ +system.dynamic.runtime\4.0.11\ref\MonoTouch10\_._ +system.dynamic.runtime\4.0.11\ref\net45\_._ +system.dynamic.runtime\4.0.11\ref\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\netstandard1.0\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.0.11\ref\win8\_._ +system.dynamic.runtime\4.0.11\ref\wp80\_._ +system.dynamic.runtime\4.0.11\ref\wpa81\_._ +system.dynamic.runtime\4.0.11\ref\xamarinios10\_._ +system.dynamic.runtime\4.0.11\ref\xamarinmac20\_._ +system.dynamic.runtime\4.0.11\ref\xamarintvos10\_._ +system.dynamic.runtime\4.0.11\ref\xamarinwatchos10\_._ +system.dynamic.runtime\4.0.11\runtimes\aot\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.0.11\system.dynamic.runtime.4.0.11.nupkg.sha512 +system.dynamic.runtime\4.0.11\system.dynamic.runtime.nuspec +system.dynamic.runtime\4.0.11\ThirdPartyNotices.txt +system.dynamic.runtime\4.3.0\dotnet_library_license.txt +system.dynamic.runtime\4.3.0\lib\MonoAndroid10\_._ +system.dynamic.runtime\4.3.0\lib\MonoTouch10\_._ +system.dynamic.runtime\4.3.0\lib\net45\_._ +system.dynamic.runtime\4.3.0\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\lib\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.3.0\lib\win8\_._ +system.dynamic.runtime\4.3.0\lib\wp80\_._ +system.dynamic.runtime\4.3.0\lib\wpa81\_._ +system.dynamic.runtime\4.3.0\lib\xamarinios10\_._ +system.dynamic.runtime\4.3.0\lib\xamarinmac20\_._ +system.dynamic.runtime\4.3.0\lib\xamarintvos10\_._ +system.dynamic.runtime\4.3.0\lib\xamarinwatchos10\_._ +system.dynamic.runtime\4.3.0\ref\MonoAndroid10\_._ +system.dynamic.runtime\4.3.0\ref\MonoTouch10\_._ +system.dynamic.runtime\4.3.0\ref\net45\_._ +system.dynamic.runtime\4.3.0\ref\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\netstandard1.0\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\netstandard1.3\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.dynamic.runtime\4.3.0\ref\win8\_._ +system.dynamic.runtime\4.3.0\ref\wp80\_._ +system.dynamic.runtime\4.3.0\ref\wpa81\_._ +system.dynamic.runtime\4.3.0\ref\xamarinios10\_._ +system.dynamic.runtime\4.3.0\ref\xamarinmac20\_._ +system.dynamic.runtime\4.3.0\ref\xamarintvos10\_._ +system.dynamic.runtime\4.3.0\ref\xamarinwatchos10\_._ +system.dynamic.runtime\4.3.0\runtimes\aot\lib\netcore50\System.Dynamic.Runtime.dll +system.dynamic.runtime\4.3.0\system.dynamic.runtime.4.3.0.nupkg.sha512 +system.dynamic.runtime\4.3.0\system.dynamic.runtime.nuspec +system.dynamic.runtime\4.3.0\ThirdPartyNotices.txt +system.globalization.calendars\4.0.1\dotnet_library_license.txt +system.globalization.calendars\4.0.1\lib\MonoAndroid10\_._ +system.globalization.calendars\4.0.1\lib\MonoTouch10\_._ +system.globalization.calendars\4.0.1\lib\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\lib\xamarinios10\_._ +system.globalization.calendars\4.0.1\lib\xamarinmac20\_._ +system.globalization.calendars\4.0.1\lib\xamarintvos10\_._ +system.globalization.calendars\4.0.1\lib\xamarinwatchos10\_._ +system.globalization.calendars\4.0.1\ref\MonoAndroid10\_._ +system.globalization.calendars\4.0.1\ref\MonoTouch10\_._ +system.globalization.calendars\4.0.1\ref\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\ref\netstandard1.3\System.Globalization.Calendars.dll +system.globalization.calendars\4.0.1\ref\xamarinios10\_._ +system.globalization.calendars\4.0.1\ref\xamarinmac20\_._ +system.globalization.calendars\4.0.1\ref\xamarintvos10\_._ +system.globalization.calendars\4.0.1\ref\xamarinwatchos10\_._ +system.globalization.calendars\4.0.1\system.globalization.calendars.4.0.1.nupkg.sha512 +system.globalization.calendars\4.0.1\system.globalization.calendars.nuspec +system.globalization.calendars\4.0.1\ThirdPartyNotices.txt +system.globalization.calendars\4.3.0\dotnet_library_license.txt +system.globalization.calendars\4.3.0\lib\MonoAndroid10\_._ +system.globalization.calendars\4.3.0\lib\MonoTouch10\_._ +system.globalization.calendars\4.3.0\lib\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\lib\xamarinios10\_._ +system.globalization.calendars\4.3.0\lib\xamarinmac20\_._ +system.globalization.calendars\4.3.0\lib\xamarintvos10\_._ +system.globalization.calendars\4.3.0\lib\xamarinwatchos10\_._ +system.globalization.calendars\4.3.0\ref\MonoAndroid10\_._ +system.globalization.calendars\4.3.0\ref\MonoTouch10\_._ +system.globalization.calendars\4.3.0\ref\net46\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\ref\netstandard1.3\System.Globalization.Calendars.dll +system.globalization.calendars\4.3.0\ref\xamarinios10\_._ +system.globalization.calendars\4.3.0\ref\xamarinmac20\_._ +system.globalization.calendars\4.3.0\ref\xamarintvos10\_._ +system.globalization.calendars\4.3.0\ref\xamarinwatchos10\_._ +system.globalization.calendars\4.3.0\system.globalization.calendars.4.3.0.nupkg.sha512 +system.globalization.calendars\4.3.0\system.globalization.calendars.nuspec +system.globalization.calendars\4.3.0\ThirdPartyNotices.txt +system.globalization.extensions\4.0.1\dotnet_library_license.txt +system.globalization.extensions\4.0.1\lib\MonoAndroid10\_._ +system.globalization.extensions\4.0.1\lib\MonoTouch10\_._ +system.globalization.extensions\4.0.1\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\lib\xamarinios10\_._ +system.globalization.extensions\4.0.1\lib\xamarinmac20\_._ +system.globalization.extensions\4.0.1\lib\xamarintvos10\_._ +system.globalization.extensions\4.0.1\lib\xamarinwatchos10\_._ +system.globalization.extensions\4.0.1\ref\MonoAndroid10\_._ +system.globalization.extensions\4.0.1\ref\MonoTouch10\_._ +system.globalization.extensions\4.0.1\ref\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\ref\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\ref\xamarinios10\_._ +system.globalization.extensions\4.0.1\ref\xamarinmac20\_._ +system.globalization.extensions\4.0.1\ref\xamarintvos10\_._ +system.globalization.extensions\4.0.1\ref\xamarinwatchos10\_._ +system.globalization.extensions\4.0.1\runtimes\unix\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\runtimes\win\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\runtimes\win\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.0.1\system.globalization.extensions.4.0.1.nupkg.sha512 +system.globalization.extensions\4.0.1\system.globalization.extensions.nuspec +system.globalization.extensions\4.0.1\ThirdPartyNotices.txt +system.globalization.extensions\4.3.0\dotnet_library_license.txt +system.globalization.extensions\4.3.0\lib\MonoAndroid10\_._ +system.globalization.extensions\4.3.0\lib\MonoTouch10\_._ +system.globalization.extensions\4.3.0\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\lib\xamarinios10\_._ +system.globalization.extensions\4.3.0\lib\xamarinmac20\_._ +system.globalization.extensions\4.3.0\lib\xamarintvos10\_._ +system.globalization.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.globalization.extensions\4.3.0\ref\MonoAndroid10\_._ +system.globalization.extensions\4.3.0\ref\MonoTouch10\_._ +system.globalization.extensions\4.3.0\ref\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\ref\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\ref\xamarinios10\_._ +system.globalization.extensions\4.3.0\ref\xamarinmac20\_._ +system.globalization.extensions\4.3.0\ref\xamarintvos10\_._ +system.globalization.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.globalization.extensions\4.3.0\runtimes\unix\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\runtimes\win\lib\net46\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\runtimes\win\lib\netstandard1.3\System.Globalization.Extensions.dll +system.globalization.extensions\4.3.0\system.globalization.extensions.4.3.0.nupkg.sha512 +system.globalization.extensions\4.3.0\system.globalization.extensions.nuspec +system.globalization.extensions\4.3.0\ThirdPartyNotices.txt +system.globalization\4.0.11\dotnet_library_license.txt +system.globalization\4.0.11\lib\MonoAndroid10\_._ +system.globalization\4.0.11\lib\MonoTouch10\_._ +system.globalization\4.0.11\lib\net45\_._ +system.globalization\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.0.11\lib\win8\_._ +system.globalization\4.0.11\lib\wp80\_._ +system.globalization\4.0.11\lib\wpa81\_._ +system.globalization\4.0.11\lib\xamarinios10\_._ +system.globalization\4.0.11\lib\xamarinmac20\_._ +system.globalization\4.0.11\lib\xamarintvos10\_._ +system.globalization\4.0.11\lib\xamarinwatchos10\_._ +system.globalization\4.0.11\ref\MonoAndroid10\_._ +system.globalization\4.0.11\ref\MonoTouch10\_._ +system.globalization\4.0.11\ref\net45\_._ +system.globalization\4.0.11\ref\netcore50\System.Globalization.dll +system.globalization\4.0.11\ref\netstandard1.0\System.Globalization.dll +system.globalization\4.0.11\ref\netstandard1.3\System.Globalization.dll +system.globalization\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.0.11\ref\win8\_._ +system.globalization\4.0.11\ref\wp80\_._ +system.globalization\4.0.11\ref\wpa81\_._ +system.globalization\4.0.11\ref\xamarinios10\_._ +system.globalization\4.0.11\ref\xamarinmac20\_._ +system.globalization\4.0.11\ref\xamarintvos10\_._ +system.globalization\4.0.11\ref\xamarinwatchos10\_._ +system.globalization\4.0.11\system.globalization.4.0.11.nupkg.sha512 +system.globalization\4.0.11\system.globalization.nuspec +system.globalization\4.0.11\ThirdPartyNotices.txt +system.globalization\4.3.0\dotnet_library_license.txt +system.globalization\4.3.0\lib\MonoAndroid10\_._ +system.globalization\4.3.0\lib\MonoTouch10\_._ +system.globalization\4.3.0\lib\net45\_._ +system.globalization\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.3.0\lib\win8\_._ +system.globalization\4.3.0\lib\wp80\_._ +system.globalization\4.3.0\lib\wpa81\_._ +system.globalization\4.3.0\lib\xamarinios10\_._ +system.globalization\4.3.0\lib\xamarinmac20\_._ +system.globalization\4.3.0\lib\xamarintvos10\_._ +system.globalization\4.3.0\lib\xamarinwatchos10\_._ +system.globalization\4.3.0\ref\MonoAndroid10\_._ +system.globalization\4.3.0\ref\MonoTouch10\_._ +system.globalization\4.3.0\ref\net45\_._ +system.globalization\4.3.0\ref\netcore50\System.Globalization.dll +system.globalization\4.3.0\ref\netstandard1.0\System.Globalization.dll +system.globalization\4.3.0\ref\netstandard1.3\System.Globalization.dll +system.globalization\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.globalization\4.3.0\ref\win8\_._ +system.globalization\4.3.0\ref\wp80\_._ +system.globalization\4.3.0\ref\wpa81\_._ +system.globalization\4.3.0\ref\xamarinios10\_._ +system.globalization\4.3.0\ref\xamarinmac20\_._ +system.globalization\4.3.0\ref\xamarintvos10\_._ +system.globalization\4.3.0\ref\xamarinwatchos10\_._ +system.globalization\4.3.0\system.globalization.4.3.0.nupkg.sha512 +system.globalization\4.3.0\system.globalization.nuspec +system.globalization\4.3.0\ThirdPartyNotices.txt +system.identitymodel.tokens.jwt\5.2.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\lib\net451\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.dll +system.identitymodel.tokens.jwt\5.2.0\system.identitymodel.tokens.jwt.5.2.0.nupkg.sha512 +system.identitymodel.tokens.jwt\5.2.0\system.identitymodel.tokens.jwt.nuspec +system.interactive.async\3.1.1\lib\net45\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\net46\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\netstandard1.0\System.Interactive.Async.dll +system.interactive.async\3.1.1\lib\netstandard1.3\System.Interactive.Async.dll +system.interactive.async\3.1.1\system.interactive.async.3.1.1.nupkg.sha512 +system.interactive.async\3.1.1\system.interactive.async.nuspec +system.io.compression.zipfile\4.0.1\dotnet_library_license.txt +system.io.compression.zipfile\4.0.1\lib\MonoAndroid10\_._ +system.io.compression.zipfile\4.0.1\lib\MonoTouch10\_._ +system.io.compression.zipfile\4.0.1\lib\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\lib\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\lib\xamarinios10\_._ +system.io.compression.zipfile\4.0.1\lib\xamarinmac20\_._ +system.io.compression.zipfile\4.0.1\lib\xamarintvos10\_._ +system.io.compression.zipfile\4.0.1\lib\xamarinwatchos10\_._ +system.io.compression.zipfile\4.0.1\ref\MonoAndroid10\_._ +system.io.compression.zipfile\4.0.1\ref\MonoTouch10\_._ +system.io.compression.zipfile\4.0.1\ref\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\ref\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.0.1\ref\xamarinios10\_._ +system.io.compression.zipfile\4.0.1\ref\xamarinmac20\_._ +system.io.compression.zipfile\4.0.1\ref\xamarintvos10\_._ +system.io.compression.zipfile\4.0.1\ref\xamarinwatchos10\_._ +system.io.compression.zipfile\4.0.1\system.io.compression.zipfile.4.0.1.nupkg.sha512 +system.io.compression.zipfile\4.0.1\system.io.compression.zipfile.nuspec +system.io.compression.zipfile\4.0.1\ThirdPartyNotices.txt +system.io.compression.zipfile\4.3.0\dotnet_library_license.txt +system.io.compression.zipfile\4.3.0\lib\MonoAndroid10\_._ +system.io.compression.zipfile\4.3.0\lib\MonoTouch10\_._ +system.io.compression.zipfile\4.3.0\lib\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\lib\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\lib\xamarinios10\_._ +system.io.compression.zipfile\4.3.0\lib\xamarinmac20\_._ +system.io.compression.zipfile\4.3.0\lib\xamarintvos10\_._ +system.io.compression.zipfile\4.3.0\lib\xamarinwatchos10\_._ +system.io.compression.zipfile\4.3.0\ref\MonoAndroid10\_._ +system.io.compression.zipfile\4.3.0\ref\MonoTouch10\_._ +system.io.compression.zipfile\4.3.0\ref\net46\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\ref\netstandard1.3\System.IO.Compression.ZipFile.dll +system.io.compression.zipfile\4.3.0\ref\xamarinios10\_._ +system.io.compression.zipfile\4.3.0\ref\xamarinmac20\_._ +system.io.compression.zipfile\4.3.0\ref\xamarintvos10\_._ +system.io.compression.zipfile\4.3.0\ref\xamarinwatchos10\_._ +system.io.compression.zipfile\4.3.0\system.io.compression.zipfile.4.3.0.nupkg.sha512 +system.io.compression.zipfile\4.3.0\system.io.compression.zipfile.nuspec +system.io.compression.zipfile\4.3.0\ThirdPartyNotices.txt +system.io.compression\4.1.0\dotnet_library_license.txt +system.io.compression\4.1.0\lib\MonoAndroid10\_._ +system.io.compression\4.1.0\lib\MonoTouch10\_._ +system.io.compression\4.1.0\lib\net45\_._ +system.io.compression\4.1.0\lib\net46\System.IO.Compression.dll +system.io.compression\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.io.compression\4.1.0\lib\win8\_._ +system.io.compression\4.1.0\lib\wpa81\_._ +system.io.compression\4.1.0\lib\xamarinios10\_._ +system.io.compression\4.1.0\lib\xamarinmac20\_._ +system.io.compression\4.1.0\lib\xamarintvos10\_._ +system.io.compression\4.1.0\lib\xamarinwatchos10\_._ +system.io.compression\4.1.0\ref\MonoAndroid10\_._ +system.io.compression\4.1.0\ref\MonoTouch10\_._ +system.io.compression\4.1.0\ref\net45\_._ +system.io.compression\4.1.0\ref\net46\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netcore50\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netstandard1.1\System.IO.Compression.dll +system.io.compression\4.1.0\ref\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.io.compression\4.1.0\ref\win8\_._ +system.io.compression\4.1.0\ref\wpa81\_._ +system.io.compression\4.1.0\ref\xamarinios10\_._ +system.io.compression\4.1.0\ref\xamarinmac20\_._ +system.io.compression\4.1.0\ref\xamarintvos10\_._ +system.io.compression\4.1.0\ref\xamarinwatchos10\_._ +system.io.compression\4.1.0\runtimes\unix\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\runtimes\win\lib\net46\System.IO.Compression.dll +system.io.compression\4.1.0\runtimes\win\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.1.0\system.io.compression.4.1.0.nupkg.sha512 +system.io.compression\4.1.0\system.io.compression.nuspec +system.io.compression\4.1.0\ThirdPartyNotices.txt +system.io.compression\4.3.0\dotnet_library_license.txt +system.io.compression\4.3.0\lib\MonoAndroid10\_._ +system.io.compression\4.3.0\lib\MonoTouch10\_._ +system.io.compression\4.3.0\lib\net45\_._ +system.io.compression\4.3.0\lib\net46\System.IO.Compression.dll +system.io.compression\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.io.compression\4.3.0\lib\win8\_._ +system.io.compression\4.3.0\lib\wpa81\_._ +system.io.compression\4.3.0\lib\xamarinios10\_._ +system.io.compression\4.3.0\lib\xamarinmac20\_._ +system.io.compression\4.3.0\lib\xamarintvos10\_._ +system.io.compression\4.3.0\lib\xamarinwatchos10\_._ +system.io.compression\4.3.0\ref\MonoAndroid10\_._ +system.io.compression\4.3.0\ref\MonoTouch10\_._ +system.io.compression\4.3.0\ref\net45\_._ +system.io.compression\4.3.0\ref\net46\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netcore50\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netstandard1.1\System.IO.Compression.dll +system.io.compression\4.3.0\ref\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.io.compression\4.3.0\ref\win8\_._ +system.io.compression\4.3.0\ref\wpa81\_._ +system.io.compression\4.3.0\ref\xamarinios10\_._ +system.io.compression\4.3.0\ref\xamarinmac20\_._ +system.io.compression\4.3.0\ref\xamarintvos10\_._ +system.io.compression\4.3.0\ref\xamarinwatchos10\_._ +system.io.compression\4.3.0\runtimes\unix\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\runtimes\win\lib\net46\System.IO.Compression.dll +system.io.compression\4.3.0\runtimes\win\lib\netstandard1.3\System.IO.Compression.dll +system.io.compression\4.3.0\system.io.compression.4.3.0.nupkg.sha512 +system.io.compression\4.3.0\system.io.compression.nuspec +system.io.compression\4.3.0\ThirdPartyNotices.txt +system.io.filesystem.primitives\4.0.1\dotnet_library_license.txt +system.io.filesystem.primitives\4.0.1\lib\MonoAndroid10\_._ +system.io.filesystem.primitives\4.0.1\lib\MonoTouch10\_._ +system.io.filesystem.primitives\4.0.1\lib\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\lib\xamarinios10\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarinmac20\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarintvos10\_._ +system.io.filesystem.primitives\4.0.1\lib\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.0.1\ref\MonoAndroid10\_._ +system.io.filesystem.primitives\4.0.1\ref\MonoTouch10\_._ +system.io.filesystem.primitives\4.0.1\ref\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.0.1\ref\xamarinios10\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarinmac20\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarintvos10\_._ +system.io.filesystem.primitives\4.0.1\ref\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.0.1\system.io.filesystem.primitives.4.0.1.nupkg.sha512 +system.io.filesystem.primitives\4.0.1\system.io.filesystem.primitives.nuspec +system.io.filesystem.primitives\4.0.1\ThirdPartyNotices.txt +system.io.filesystem.primitives\4.3.0\dotnet_library_license.txt +system.io.filesystem.primitives\4.3.0\lib\MonoAndroid10\_._ +system.io.filesystem.primitives\4.3.0\lib\MonoTouch10\_._ +system.io.filesystem.primitives\4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\lib\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\lib\xamarinios10\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarinmac20\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarintvos10\_._ +system.io.filesystem.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.3.0\ref\MonoAndroid10\_._ +system.io.filesystem.primitives\4.3.0\ref\MonoTouch10\_._ +system.io.filesystem.primitives\4.3.0\ref\net46\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\ref\netstandard1.3\System.IO.FileSystem.Primitives.dll +system.io.filesystem.primitives\4.3.0\ref\xamarinios10\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarinmac20\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarintvos10\_._ +system.io.filesystem.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.io.filesystem.primitives\4.3.0\system.io.filesystem.primitives.4.3.0.nupkg.sha512 +system.io.filesystem.primitives\4.3.0\system.io.filesystem.primitives.nuspec +system.io.filesystem.primitives\4.3.0\ThirdPartyNotices.txt +system.io.filesystem\4.0.1\dotnet_library_license.txt +system.io.filesystem\4.0.1\lib\MonoAndroid10\_._ +system.io.filesystem\4.0.1\lib\MonoTouch10\_._ +system.io.filesystem\4.0.1\lib\net46\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\lib\xamarinios10\_._ +system.io.filesystem\4.0.1\lib\xamarinmac20\_._ +system.io.filesystem\4.0.1\lib\xamarintvos10\_._ +system.io.filesystem\4.0.1\lib\xamarinwatchos10\_._ +system.io.filesystem\4.0.1\ref\MonoAndroid10\_._ +system.io.filesystem\4.0.1\ref\MonoTouch10\_._ +system.io.filesystem\4.0.1\ref\net46\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\ref\netstandard1.3\System.IO.FileSystem.dll +system.io.filesystem\4.0.1\ref\xamarinios10\_._ +system.io.filesystem\4.0.1\ref\xamarinmac20\_._ +system.io.filesystem\4.0.1\ref\xamarintvos10\_._ +system.io.filesystem\4.0.1\ref\xamarinwatchos10\_._ +system.io.filesystem\4.0.1\system.io.filesystem.4.0.1.nupkg.sha512 +system.io.filesystem\4.0.1\system.io.filesystem.nuspec +system.io.filesystem\4.0.1\ThirdPartyNotices.txt +system.io.filesystem\4.3.0\dotnet_library_license.txt +system.io.filesystem\4.3.0\lib\MonoAndroid10\_._ +system.io.filesystem\4.3.0\lib\MonoTouch10\_._ +system.io.filesystem\4.3.0\lib\net46\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\lib\xamarinios10\_._ +system.io.filesystem\4.3.0\lib\xamarinmac20\_._ +system.io.filesystem\4.3.0\lib\xamarintvos10\_._ +system.io.filesystem\4.3.0\lib\xamarinwatchos10\_._ +system.io.filesystem\4.3.0\ref\MonoAndroid10\_._ +system.io.filesystem\4.3.0\ref\MonoTouch10\_._ +system.io.filesystem\4.3.0\ref\net46\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\ref\netstandard1.3\System.IO.FileSystem.dll +system.io.filesystem\4.3.0\ref\xamarinios10\_._ +system.io.filesystem\4.3.0\ref\xamarinmac20\_._ +system.io.filesystem\4.3.0\ref\xamarintvos10\_._ +system.io.filesystem\4.3.0\ref\xamarinwatchos10\_._ +system.io.filesystem\4.3.0\system.io.filesystem.4.3.0.nupkg.sha512 +system.io.filesystem\4.3.0\system.io.filesystem.nuspec +system.io.filesystem\4.3.0\ThirdPartyNotices.txt +system.io.pipelines\4.5.0\.signature.p7s +system.io.pipelines\4.5.0\lib\netcoreapp2.1\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\lib\netstandard1.3\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\lib\netstandard2.0\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\LICENSE.TXT +system.io.pipelines\4.5.0\ref\netstandard1.3\System.IO.Pipelines.dll +system.io.pipelines\4.5.0\system.io.pipelines.4.5.0.nupkg.sha512 +system.io.pipelines\4.5.0\system.io.pipelines.nuspec +system.io.pipelines\4.5.0\THIRD-PARTY-NOTICES.TXT +system.io.pipelines\4.5.0\useSharedDesignerContext.txt +system.io.pipelines\4.5.0\version.txt +system.io\4.1.0\dotnet_library_license.txt +system.io\4.1.0\lib\MonoAndroid10\_._ +system.io\4.1.0\lib\MonoTouch10\_._ +system.io\4.1.0\lib\net45\_._ +system.io\4.1.0\lib\net462\System.IO.dll +system.io\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.io\4.1.0\lib\win8\_._ +system.io\4.1.0\lib\wp80\_._ +system.io\4.1.0\lib\wpa81\_._ +system.io\4.1.0\lib\xamarinios10\_._ +system.io\4.1.0\lib\xamarinmac20\_._ +system.io\4.1.0\lib\xamarintvos10\_._ +system.io\4.1.0\lib\xamarinwatchos10\_._ +system.io\4.1.0\ref\MonoAndroid10\_._ +system.io\4.1.0\ref\MonoTouch10\_._ +system.io\4.1.0\ref\net45\_._ +system.io\4.1.0\ref\net462\System.IO.dll +system.io\4.1.0\ref\netcore50\System.IO.dll +system.io\4.1.0\ref\netstandard1.0\System.IO.dll +system.io\4.1.0\ref\netstandard1.3\System.IO.dll +system.io\4.1.0\ref\netstandard1.5\System.IO.dll +system.io\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.io\4.1.0\ref\win8\_._ +system.io\4.1.0\ref\wp80\_._ +system.io\4.1.0\ref\wpa81\_._ +system.io\4.1.0\ref\xamarinios10\_._ +system.io\4.1.0\ref\xamarinmac20\_._ +system.io\4.1.0\ref\xamarintvos10\_._ +system.io\4.1.0\ref\xamarinwatchos10\_._ +system.io\4.1.0\system.io.4.1.0.nupkg.sha512 +system.io\4.1.0\system.io.nuspec +system.io\4.1.0\ThirdPartyNotices.txt +system.io\4.3.0\dotnet_library_license.txt +system.io\4.3.0\lib\MonoAndroid10\_._ +system.io\4.3.0\lib\MonoTouch10\_._ +system.io\4.3.0\lib\net45\_._ +system.io\4.3.0\lib\net462\System.IO.dll +system.io\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.io\4.3.0\lib\win8\_._ +system.io\4.3.0\lib\wp80\_._ +system.io\4.3.0\lib\wpa81\_._ +system.io\4.3.0\lib\xamarinios10\_._ +system.io\4.3.0\lib\xamarinmac20\_._ +system.io\4.3.0\lib\xamarintvos10\_._ +system.io\4.3.0\lib\xamarinwatchos10\_._ +system.io\4.3.0\ref\MonoAndroid10\_._ +system.io\4.3.0\ref\MonoTouch10\_._ +system.io\4.3.0\ref\net45\_._ +system.io\4.3.0\ref\net462\System.IO.dll +system.io\4.3.0\ref\netcore50\System.IO.dll +system.io\4.3.0\ref\netstandard1.0\System.IO.dll +system.io\4.3.0\ref\netstandard1.3\System.IO.dll +system.io\4.3.0\ref\netstandard1.5\System.IO.dll +system.io\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.io\4.3.0\ref\win8\_._ +system.io\4.3.0\ref\wp80\_._ +system.io\4.3.0\ref\wpa81\_._ +system.io\4.3.0\ref\xamarinios10\_._ +system.io\4.3.0\ref\xamarinmac20\_._ +system.io\4.3.0\ref\xamarintvos10\_._ +system.io\4.3.0\ref\xamarinwatchos10\_._ +system.io\4.3.0\system.io.4.3.0.nupkg.sha512 +system.io\4.3.0\system.io.nuspec +system.io\4.3.0\ThirdPartyNotices.txt +system.linq.expressions\4.1.0\dotnet_library_license.txt +system.linq.expressions\4.1.0\lib\MonoAndroid10\_._ +system.linq.expressions\4.1.0\lib\MonoTouch10\_._ +system.linq.expressions\4.1.0\lib\net45\_._ +system.linq.expressions\4.1.0\lib\net463\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.1.0\lib\win8\_._ +system.linq.expressions\4.1.0\lib\wp80\_._ +system.linq.expressions\4.1.0\lib\wpa81\_._ +system.linq.expressions\4.1.0\lib\xamarinios10\_._ +system.linq.expressions\4.1.0\lib\xamarinmac20\_._ +system.linq.expressions\4.1.0\lib\xamarintvos10\_._ +system.linq.expressions\4.1.0\lib\xamarinwatchos10\_._ +system.linq.expressions\4.1.0\ref\MonoAndroid10\_._ +system.linq.expressions\4.1.0\ref\MonoTouch10\_._ +system.linq.expressions\4.1.0\ref\net45\_._ +system.linq.expressions\4.1.0\ref\net463\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.0\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.3\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.1.0\ref\win8\_._ +system.linq.expressions\4.1.0\ref\wp80\_._ +system.linq.expressions\4.1.0\ref\wpa81\_._ +system.linq.expressions\4.1.0\ref\xamarinios10\_._ +system.linq.expressions\4.1.0\ref\xamarinmac20\_._ +system.linq.expressions\4.1.0\ref\xamarintvos10\_._ +system.linq.expressions\4.1.0\ref\xamarinwatchos10\_._ +system.linq.expressions\4.1.0\runtimes\aot\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.1.0\system.linq.expressions.4.1.0.nupkg.sha512 +system.linq.expressions\4.1.0\system.linq.expressions.nuspec +system.linq.expressions\4.1.0\ThirdPartyNotices.txt +system.linq.expressions\4.3.0\dotnet_library_license.txt +system.linq.expressions\4.3.0\lib\MonoAndroid10\_._ +system.linq.expressions\4.3.0\lib\MonoTouch10\_._ +system.linq.expressions\4.3.0\lib\net45\_._ +system.linq.expressions\4.3.0\lib\net463\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.3.0\lib\win8\_._ +system.linq.expressions\4.3.0\lib\wp80\_._ +system.linq.expressions\4.3.0\lib\wpa81\_._ +system.linq.expressions\4.3.0\lib\xamarinios10\_._ +system.linq.expressions\4.3.0\lib\xamarinmac20\_._ +system.linq.expressions\4.3.0\lib\xamarintvos10\_._ +system.linq.expressions\4.3.0\lib\xamarinwatchos10\_._ +system.linq.expressions\4.3.0\ref\MonoAndroid10\_._ +system.linq.expressions\4.3.0\ref\MonoTouch10\_._ +system.linq.expressions\4.3.0\ref\net45\_._ +system.linq.expressions\4.3.0\ref\net463\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.0\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.3\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\netstandard1.6\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.expressions\4.3.0\ref\win8\_._ +system.linq.expressions\4.3.0\ref\wp80\_._ +system.linq.expressions\4.3.0\ref\wpa81\_._ +system.linq.expressions\4.3.0\ref\xamarinios10\_._ +system.linq.expressions\4.3.0\ref\xamarinmac20\_._ +system.linq.expressions\4.3.0\ref\xamarintvos10\_._ +system.linq.expressions\4.3.0\ref\xamarinwatchos10\_._ +system.linq.expressions\4.3.0\runtimes\aot\lib\netcore50\System.Linq.Expressions.dll +system.linq.expressions\4.3.0\system.linq.expressions.4.3.0.nupkg.sha512 +system.linq.expressions\4.3.0\system.linq.expressions.nuspec +system.linq.expressions\4.3.0\ThirdPartyNotices.txt +system.linq.parallel\4.3.0\dotnet_library_license.txt +system.linq.parallel\4.3.0\lib\MonoAndroid10\_._ +system.linq.parallel\4.3.0\lib\MonoTouch10\_._ +system.linq.parallel\4.3.0\lib\net45\_._ +system.linq.parallel\4.3.0\lib\netcore50\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\lib\netstandard1.3\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.linq.parallel\4.3.0\lib\win8\_._ +system.linq.parallel\4.3.0\lib\wpa81\_._ +system.linq.parallel\4.3.0\lib\xamarinios10\_._ +system.linq.parallel\4.3.0\lib\xamarinmac20\_._ +system.linq.parallel\4.3.0\lib\xamarintvos10\_._ +system.linq.parallel\4.3.0\lib\xamarinwatchos10\_._ +system.linq.parallel\4.3.0\ref\MonoAndroid10\_._ +system.linq.parallel\4.3.0\ref\MonoTouch10\_._ +system.linq.parallel\4.3.0\ref\net45\_._ +system.linq.parallel\4.3.0\ref\netcore50\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\ref\netstandard1.1\System.Linq.Parallel.dll +system.linq.parallel\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.linq.parallel\4.3.0\ref\win8\_._ +system.linq.parallel\4.3.0\ref\wpa81\_._ +system.linq.parallel\4.3.0\ref\xamarinios10\_._ +system.linq.parallel\4.3.0\ref\xamarinmac20\_._ +system.linq.parallel\4.3.0\ref\xamarintvos10\_._ +system.linq.parallel\4.3.0\ref\xamarinwatchos10\_._ +system.linq.parallel\4.3.0\system.linq.parallel.4.3.0.nupkg.sha512 +system.linq.parallel\4.3.0\system.linq.parallel.nuspec +system.linq.parallel\4.3.0\ThirdPartyNotices.txt +system.linq.queryable\4.0.1\dotnet_library_license.txt +system.linq.queryable\4.0.1\lib\monoandroid10\_._ +system.linq.queryable\4.0.1\lib\monotouch10\_._ +system.linq.queryable\4.0.1\lib\net45\_._ +system.linq.queryable\4.0.1\lib\netcore50\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\lib\netstandard1.3\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq.queryable\4.0.1\lib\win8\_._ +system.linq.queryable\4.0.1\lib\wp80\_._ +system.linq.queryable\4.0.1\lib\wpa81\_._ +system.linq.queryable\4.0.1\lib\xamarinios10\_._ +system.linq.queryable\4.0.1\lib\xamarinmac20\_._ +system.linq.queryable\4.0.1\lib\xamarintvos10\_._ +system.linq.queryable\4.0.1\lib\xamarinwatchos10\_._ +system.linq.queryable\4.0.1\ref\monoandroid10\_._ +system.linq.queryable\4.0.1\ref\monotouch10\_._ +system.linq.queryable\4.0.1\ref\net45\_._ +system.linq.queryable\4.0.1\ref\netcore50\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\ref\netstandard1.0\System.Linq.Queryable.dll +system.linq.queryable\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq.queryable\4.0.1\ref\win8\_._ +system.linq.queryable\4.0.1\ref\wp80\_._ +system.linq.queryable\4.0.1\ref\wpa81\_._ +system.linq.queryable\4.0.1\ref\xamarinios10\_._ +system.linq.queryable\4.0.1\ref\xamarinmac20\_._ +system.linq.queryable\4.0.1\ref\xamarintvos10\_._ +system.linq.queryable\4.0.1\ref\xamarinwatchos10\_._ +system.linq.queryable\4.0.1\system.linq.queryable.4.0.1.nupkg.sha512 +system.linq.queryable\4.0.1\system.linq.queryable.nuspec +system.linq.queryable\4.0.1\ThirdPartyNotices.txt +system.linq\4.1.0\dotnet_library_license.txt +system.linq\4.1.0\lib\MonoAndroid10\_._ +system.linq\4.1.0\lib\MonoTouch10\_._ +system.linq\4.1.0\lib\net45\_._ +system.linq\4.1.0\lib\net463\System.Linq.dll +system.linq\4.1.0\lib\netcore50\System.Linq.dll +system.linq\4.1.0\lib\netstandard1.6\System.Linq.dll +system.linq\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.1.0\lib\win8\_._ +system.linq\4.1.0\lib\wp80\_._ +system.linq\4.1.0\lib\wpa81\_._ +system.linq\4.1.0\lib\xamarinios10\_._ +system.linq\4.1.0\lib\xamarinmac20\_._ +system.linq\4.1.0\lib\xamarintvos10\_._ +system.linq\4.1.0\lib\xamarinwatchos10\_._ +system.linq\4.1.0\ref\MonoAndroid10\_._ +system.linq\4.1.0\ref\MonoTouch10\_._ +system.linq\4.1.0\ref\net45\_._ +system.linq\4.1.0\ref\net463\System.Linq.dll +system.linq\4.1.0\ref\netcore50\System.Linq.dll +system.linq\4.1.0\ref\netstandard1.0\System.Linq.dll +system.linq\4.1.0\ref\netstandard1.6\System.Linq.dll +system.linq\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.1.0\ref\win8\_._ +system.linq\4.1.0\ref\wp80\_._ +system.linq\4.1.0\ref\wpa81\_._ +system.linq\4.1.0\ref\xamarinios10\_._ +system.linq\4.1.0\ref\xamarinmac20\_._ +system.linq\4.1.0\ref\xamarintvos10\_._ +system.linq\4.1.0\ref\xamarinwatchos10\_._ +system.linq\4.1.0\system.linq.4.1.0.nupkg.sha512 +system.linq\4.1.0\system.linq.nuspec +system.linq\4.1.0\ThirdPartyNotices.txt +system.linq\4.3.0\dotnet_library_license.txt +system.linq\4.3.0\lib\MonoAndroid10\_._ +system.linq\4.3.0\lib\MonoTouch10\_._ +system.linq\4.3.0\lib\net45\_._ +system.linq\4.3.0\lib\net463\System.Linq.dll +system.linq\4.3.0\lib\netcore50\System.Linq.dll +system.linq\4.3.0\lib\netstandard1.6\System.Linq.dll +system.linq\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.3.0\lib\win8\_._ +system.linq\4.3.0\lib\wp80\_._ +system.linq\4.3.0\lib\wpa81\_._ +system.linq\4.3.0\lib\xamarinios10\_._ +system.linq\4.3.0\lib\xamarinmac20\_._ +system.linq\4.3.0\lib\xamarintvos10\_._ +system.linq\4.3.0\lib\xamarinwatchos10\_._ +system.linq\4.3.0\ref\MonoAndroid10\_._ +system.linq\4.3.0\ref\MonoTouch10\_._ +system.linq\4.3.0\ref\net45\_._ +system.linq\4.3.0\ref\net463\System.Linq.dll +system.linq\4.3.0\ref\netcore50\System.Linq.dll +system.linq\4.3.0\ref\netstandard1.0\System.Linq.dll +system.linq\4.3.0\ref\netstandard1.6\System.Linq.dll +system.linq\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.linq\4.3.0\ref\win8\_._ +system.linq\4.3.0\ref\wp80\_._ +system.linq\4.3.0\ref\wpa81\_._ +system.linq\4.3.0\ref\xamarinios10\_._ +system.linq\4.3.0\ref\xamarinmac20\_._ +system.linq\4.3.0\ref\xamarintvos10\_._ +system.linq\4.3.0\ref\xamarinwatchos10\_._ +system.linq\4.3.0\system.linq.4.3.0.nupkg.sha512 +system.linq\4.3.0\system.linq.nuspec +system.linq\4.3.0\ThirdPartyNotices.txt +system.memory\4.5.1\.signature.p7s +system.memory\4.5.1\lib\netcoreapp2.1\_._ +system.memory\4.5.1\lib\netstandard1.1\System.Memory.dll +system.memory\4.5.1\lib\netstandard2.0\System.Memory.dll +system.memory\4.5.1\LICENSE.TXT +system.memory\4.5.1\ref\netcoreapp2.1\_._ +system.memory\4.5.1\ref\netstandard1.1\System.Memory.dll +system.memory\4.5.1\ref\netstandard2.0\System.Memory.dll +system.memory\4.5.1\system.memory.4.5.1.nupkg.sha512 +system.memory\4.5.1\system.memory.nuspec +system.memory\4.5.1\THIRD-PARTY-NOTICES.TXT +system.memory\4.5.1\useSharedDesignerContext.txt +system.memory\4.5.1\version.txt +system.net.http\4.1.0\dotnet_library_license.txt +system.net.http\4.1.0\lib\monoandroid10\_._ +system.net.http\4.1.0\lib\monotouch10\_._ +system.net.http\4.1.0\lib\net45\_._ +system.net.http\4.1.0\lib\net46\System.Net.Http.dll +system.net.http\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.net.http\4.1.0\lib\win8\_._ +system.net.http\4.1.0\lib\wpa81\_._ +system.net.http\4.1.0\lib\xamarinios10\_._ +system.net.http\4.1.0\lib\Xamarinmac20\_._ +system.net.http\4.1.0\lib\xamarintvos10\_._ +system.net.http\4.1.0\lib\xamarinwatchos10\_._ +system.net.http\4.1.0\ref\monoandroid10\_._ +system.net.http\4.1.0\ref\monotouch10\_._ +system.net.http\4.1.0\ref\net45\_._ +system.net.http\4.1.0\ref\net46\System.Net.Http.dll +system.net.http\4.1.0\ref\netcore50\System.Net.Http.dll +system.net.http\4.1.0\ref\netstandard1.1\System.Net.Http.dll +system.net.http\4.1.0\ref\netstandard1.3\System.Net.Http.dll +system.net.http\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.net.http\4.1.0\ref\win8\_._ +system.net.http\4.1.0\ref\wpa81\_._ +system.net.http\4.1.0\ref\xamarinios10\_._ +system.net.http\4.1.0\ref\Xamarinmac20\_._ +system.net.http\4.1.0\ref\xamarintvos10\_._ +system.net.http\4.1.0\ref\xamarinwatchos10\_._ +system.net.http\4.1.0\runtimes\unix\lib\netstandard1.6\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\net46\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\netcore50\System.Net.Http.dll +system.net.http\4.1.0\runtimes\win\lib\netstandard1.3\System.Net.Http.dll +system.net.http\4.1.0\system.net.http.4.1.0.nupkg.sha512 +system.net.http\4.1.0\system.net.http.nuspec +system.net.http\4.1.0\ThirdPartyNotices.txt +system.net.http\4.3.0\dotnet_library_license.txt +system.net.http\4.3.0\lib\monoandroid10\_._ +system.net.http\4.3.0\lib\monotouch10\_._ +system.net.http\4.3.0\lib\net45\_._ +system.net.http\4.3.0\lib\net46\System.Net.Http.dll +system.net.http\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.net.http\4.3.0\lib\win8\_._ +system.net.http\4.3.0\lib\wpa81\_._ +system.net.http\4.3.0\lib\xamarinios10\_._ +system.net.http\4.3.0\lib\Xamarinmac20\_._ +system.net.http\4.3.0\lib\xamarintvos10\_._ +system.net.http\4.3.0\lib\xamarinwatchos10\_._ +system.net.http\4.3.0\ref\monoandroid10\_._ +system.net.http\4.3.0\ref\monotouch10\_._ +system.net.http\4.3.0\ref\net45\_._ +system.net.http\4.3.0\ref\net46\System.Net.Http.dll +system.net.http\4.3.0\ref\netcore50\System.Net.Http.dll +system.net.http\4.3.0\ref\netstandard1.1\System.Net.Http.dll +system.net.http\4.3.0\ref\netstandard1.3\System.Net.Http.dll +system.net.http\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.net.http\4.3.0\ref\win8\_._ +system.net.http\4.3.0\ref\wpa81\_._ +system.net.http\4.3.0\ref\xamarinios10\_._ +system.net.http\4.3.0\ref\Xamarinmac20\_._ +system.net.http\4.3.0\ref\xamarintvos10\_._ +system.net.http\4.3.0\ref\xamarinwatchos10\_._ +system.net.http\4.3.0\runtimes\unix\lib\netstandard1.6\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\net46\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\netcore50\System.Net.Http.dll +system.net.http\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.Http.dll +system.net.http\4.3.0\system.net.http.4.3.0.nupkg.sha512 +system.net.http\4.3.0\system.net.http.nuspec +system.net.http\4.3.0\ThirdPartyNotices.txt +system.net.nameresolution\4.3.0\dotnet_library_license.txt +system.net.nameresolution\4.3.0\lib\MonoAndroid10\_._ +system.net.nameresolution\4.3.0\lib\MonoTouch10\_._ +system.net.nameresolution\4.3.0\lib\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\lib\xamarinios10\_._ +system.net.nameresolution\4.3.0\lib\xamarinmac20\_._ +system.net.nameresolution\4.3.0\lib\xamarintvos10\_._ +system.net.nameresolution\4.3.0\lib\xamarinwatchos10\_._ +system.net.nameresolution\4.3.0\ref\MonoAndroid10\_._ +system.net.nameresolution\4.3.0\ref\MonoTouch10\_._ +system.net.nameresolution\4.3.0\ref\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\ref\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\ref\xamarinios10\_._ +system.net.nameresolution\4.3.0\ref\xamarinmac20\_._ +system.net.nameresolution\4.3.0\ref\xamarintvos10\_._ +system.net.nameresolution\4.3.0\ref\xamarinwatchos10\_._ +system.net.nameresolution\4.3.0\runtimes\unix\lib\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\net46\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\netcore50\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.NameResolution.dll +system.net.nameresolution\4.3.0\system.net.nameresolution.4.3.0.nupkg.sha512 +system.net.nameresolution\4.3.0\system.net.nameresolution.nuspec +system.net.nameresolution\4.3.0\ThirdPartyNotices.txt +system.net.primitives\4.0.11\dotnet_library_license.txt +system.net.primitives\4.0.11\lib\MonoAndroid10\_._ +system.net.primitives\4.0.11\lib\MonoTouch10\_._ +system.net.primitives\4.0.11\lib\net45\_._ +system.net.primitives\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.0.11\lib\win8\_._ +system.net.primitives\4.0.11\lib\wp80\_._ +system.net.primitives\4.0.11\lib\wpa81\_._ +system.net.primitives\4.0.11\lib\xamarinios10\_._ +system.net.primitives\4.0.11\lib\xamarinmac20\_._ +system.net.primitives\4.0.11\lib\xamarintvos10\_._ +system.net.primitives\4.0.11\lib\xamarinwatchos10\_._ +system.net.primitives\4.0.11\ref\MonoAndroid10\_._ +system.net.primitives\4.0.11\ref\MonoTouch10\_._ +system.net.primitives\4.0.11\ref\net45\_._ +system.net.primitives\4.0.11\ref\netcore50\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.0\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.1\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\netstandard1.3\System.Net.Primitives.dll +system.net.primitives\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.0.11\ref\win8\_._ +system.net.primitives\4.0.11\ref\wp80\_._ +system.net.primitives\4.0.11\ref\wpa81\_._ +system.net.primitives\4.0.11\ref\xamarinios10\_._ +system.net.primitives\4.0.11\ref\xamarinmac20\_._ +system.net.primitives\4.0.11\ref\xamarintvos10\_._ +system.net.primitives\4.0.11\ref\xamarinwatchos10\_._ +system.net.primitives\4.0.11\system.net.primitives.4.0.11.nupkg.sha512 +system.net.primitives\4.0.11\system.net.primitives.nuspec +system.net.primitives\4.0.11\ThirdPartyNotices.txt +system.net.primitives\4.3.0\dotnet_library_license.txt +system.net.primitives\4.3.0\lib\MonoAndroid10\_._ +system.net.primitives\4.3.0\lib\MonoTouch10\_._ +system.net.primitives\4.3.0\lib\net45\_._ +system.net.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.3.0\lib\win8\_._ +system.net.primitives\4.3.0\lib\wp80\_._ +system.net.primitives\4.3.0\lib\wpa81\_._ +system.net.primitives\4.3.0\lib\xamarinios10\_._ +system.net.primitives\4.3.0\lib\xamarinmac20\_._ +system.net.primitives\4.3.0\lib\xamarintvos10\_._ +system.net.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.net.primitives\4.3.0\ref\MonoAndroid10\_._ +system.net.primitives\4.3.0\ref\MonoTouch10\_._ +system.net.primitives\4.3.0\ref\net45\_._ +system.net.primitives\4.3.0\ref\netcore50\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.0\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.1\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\netstandard1.3\System.Net.Primitives.dll +system.net.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.net.primitives\4.3.0\ref\win8\_._ +system.net.primitives\4.3.0\ref\wp80\_._ +system.net.primitives\4.3.0\ref\wpa81\_._ +system.net.primitives\4.3.0\ref\xamarinios10\_._ +system.net.primitives\4.3.0\ref\xamarinmac20\_._ +system.net.primitives\4.3.0\ref\xamarintvos10\_._ +system.net.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.net.primitives\4.3.0\system.net.primitives.4.3.0.nupkg.sha512 +system.net.primitives\4.3.0\system.net.primitives.nuspec +system.net.primitives\4.3.0\ThirdPartyNotices.txt +system.net.security\4.3.0\dotnet_library_license.txt +system.net.security\4.3.0\lib\MonoAndroid10\_._ +system.net.security\4.3.0\lib\MonoTouch10\_._ +system.net.security\4.3.0\lib\net46\System.Net.Security.dll +system.net.security\4.3.0\lib\xamarinios10\_._ +system.net.security\4.3.0\lib\xamarinmac20\_._ +system.net.security\4.3.0\lib\xamarintvos10\_._ +system.net.security\4.3.0\lib\xamarinwatchos10\_._ +system.net.security\4.3.0\ref\MonoAndroid10\_._ +system.net.security\4.3.0\ref\MonoTouch10\_._ +system.net.security\4.3.0\ref\net46\System.Net.Security.dll +system.net.security\4.3.0\ref\netstandard1.3\System.Net.Security.dll +system.net.security\4.3.0\ref\xamarinios10\_._ +system.net.security\4.3.0\ref\xamarinmac20\_._ +system.net.security\4.3.0\ref\xamarintvos10\_._ +system.net.security\4.3.0\ref\xamarinwatchos10\_._ +system.net.security\4.3.0\runtimes\unix\lib\netstandard1.6\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win\lib\net46\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win\lib\netstandard1.3\System.Net.Security.dll +system.net.security\4.3.0\runtimes\win7\lib\netcore50\_._ +system.net.security\4.3.0\system.net.security.4.3.0.nupkg.sha512 +system.net.security\4.3.0\system.net.security.nuspec +system.net.security\4.3.0\ThirdPartyNotices.txt +system.net.sockets\4.1.0\dotnet_library_license.txt +system.net.sockets\4.1.0\lib\MonoAndroid10\_._ +system.net.sockets\4.1.0\lib\MonoTouch10\_._ +system.net.sockets\4.1.0\lib\net46\System.Net.Sockets.dll +system.net.sockets\4.1.0\lib\xamarinios10\_._ +system.net.sockets\4.1.0\lib\xamarinmac20\_._ +system.net.sockets\4.1.0\lib\xamarintvos10\_._ +system.net.sockets\4.1.0\lib\xamarinwatchos10\_._ +system.net.sockets\4.1.0\ref\MonoAndroid10\_._ +system.net.sockets\4.1.0\ref\MonoTouch10\_._ +system.net.sockets\4.1.0\ref\net46\System.Net.Sockets.dll +system.net.sockets\4.1.0\ref\netstandard1.3\System.Net.Sockets.dll +system.net.sockets\4.1.0\ref\xamarinios10\_._ +system.net.sockets\4.1.0\ref\xamarinmac20\_._ +system.net.sockets\4.1.0\ref\xamarintvos10\_._ +system.net.sockets\4.1.0\ref\xamarinwatchos10\_._ +system.net.sockets\4.1.0\system.net.sockets.4.1.0.nupkg.sha512 +system.net.sockets\4.1.0\system.net.sockets.nuspec +system.net.sockets\4.1.0\ThirdPartyNotices.txt +system.net.sockets\4.3.0\dotnet_library_license.txt +system.net.sockets\4.3.0\lib\MonoAndroid10\_._ +system.net.sockets\4.3.0\lib\MonoTouch10\_._ +system.net.sockets\4.3.0\lib\net46\System.Net.Sockets.dll +system.net.sockets\4.3.0\lib\xamarinios10\_._ +system.net.sockets\4.3.0\lib\xamarinmac20\_._ +system.net.sockets\4.3.0\lib\xamarintvos10\_._ +system.net.sockets\4.3.0\lib\xamarinwatchos10\_._ +system.net.sockets\4.3.0\ref\MonoAndroid10\_._ +system.net.sockets\4.3.0\ref\MonoTouch10\_._ +system.net.sockets\4.3.0\ref\net46\System.Net.Sockets.dll +system.net.sockets\4.3.0\ref\netstandard1.3\System.Net.Sockets.dll +system.net.sockets\4.3.0\ref\xamarinios10\_._ +system.net.sockets\4.3.0\ref\xamarinmac20\_._ +system.net.sockets\4.3.0\ref\xamarintvos10\_._ +system.net.sockets\4.3.0\ref\xamarinwatchos10\_._ +system.net.sockets\4.3.0\system.net.sockets.4.3.0.nupkg.sha512 +system.net.sockets\4.3.0\system.net.sockets.nuspec +system.net.sockets\4.3.0\ThirdPartyNotices.txt +system.net.websockets.websocketprotocol\4.5.1\.signature.p7s +system.net.websockets.websocketprotocol\4.5.1\lib\netcoreapp2.1\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\lib\netstandard2.0\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\LICENSE.TXT +system.net.websockets.websocketprotocol\4.5.1\ref\netstandard2.0\System.Net.WebSockets.WebSocketProtocol.dll +system.net.websockets.websocketprotocol\4.5.1\system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512 +system.net.websockets.websocketprotocol\4.5.1\system.net.websockets.websocketprotocol.nuspec +system.net.websockets.websocketprotocol\4.5.1\THIRD-PARTY-NOTICES.TXT +system.net.websockets.websocketprotocol\4.5.1\useSharedDesignerContext.txt +system.net.websockets.websocketprotocol\4.5.1\version.txt +system.numerics.vectors\4.5.0\.signature.p7s +system.numerics.vectors\4.5.0\lib\MonoAndroid10\_._ +system.numerics.vectors\4.5.0\lib\MonoTouch10\_._ +system.numerics.vectors\4.5.0\lib\net46\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\netcoreapp2.0\_._ +system.numerics.vectors\4.5.0\lib\netstandard1.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\netstandard2.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\portable-net45+win8+wp8+wpa81\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\lib\uap10.0.16299\_._ +system.numerics.vectors\4.5.0\lib\xamarinios10\_._ +system.numerics.vectors\4.5.0\lib\xamarinmac20\_._ +system.numerics.vectors\4.5.0\lib\xamarintvos10\_._ +system.numerics.vectors\4.5.0\lib\xamarinwatchos10\_._ +system.numerics.vectors\4.5.0\LICENSE.TXT +system.numerics.vectors\4.5.0\ref\MonoAndroid10\_._ +system.numerics.vectors\4.5.0\ref\MonoTouch10\_._ +system.numerics.vectors\4.5.0\ref\net45\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\net46\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\netcoreapp2.0\_._ +system.numerics.vectors\4.5.0\ref\netstandard1.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\netstandard2.0\System.Numerics.Vectors.dll +system.numerics.vectors\4.5.0\ref\uap10.0.16299\_._ +system.numerics.vectors\4.5.0\ref\xamarinios10\_._ +system.numerics.vectors\4.5.0\ref\xamarinmac20\_._ +system.numerics.vectors\4.5.0\ref\xamarintvos10\_._ +system.numerics.vectors\4.5.0\ref\xamarinwatchos10\_._ +system.numerics.vectors\4.5.0\system.numerics.vectors.4.5.0.nupkg.sha512 +system.numerics.vectors\4.5.0\system.numerics.vectors.nuspec +system.numerics.vectors\4.5.0\THIRD-PARTY-NOTICES.TXT +system.numerics.vectors\4.5.0\useSharedDesignerContext.txt +system.numerics.vectors\4.5.0\version.txt +system.objectmodel\4.0.12\dotnet_library_license.txt +system.objectmodel\4.0.12\lib\MonoAndroid10\_._ +system.objectmodel\4.0.12\lib\MonoTouch10\_._ +system.objectmodel\4.0.12\lib\net45\_._ +system.objectmodel\4.0.12\lib\netcore50\System.ObjectModel.dll +system.objectmodel\4.0.12\lib\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.0.12\lib\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.0.12\lib\win8\_._ +system.objectmodel\4.0.12\lib\wp80\_._ +system.objectmodel\4.0.12\lib\wpa81\_._ +system.objectmodel\4.0.12\lib\xamarinios10\_._ +system.objectmodel\4.0.12\lib\xamarinmac20\_._ +system.objectmodel\4.0.12\lib\xamarintvos10\_._ +system.objectmodel\4.0.12\lib\xamarinwatchos10\_._ +system.objectmodel\4.0.12\ref\MonoAndroid10\_._ +system.objectmodel\4.0.12\ref\MonoTouch10\_._ +system.objectmodel\4.0.12\ref\net45\_._ +system.objectmodel\4.0.12\ref\netcore50\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\netstandard1.0\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.0.12\ref\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.0.12\ref\win8\_._ +system.objectmodel\4.0.12\ref\wp80\_._ +system.objectmodel\4.0.12\ref\wpa81\_._ +system.objectmodel\4.0.12\ref\xamarinios10\_._ +system.objectmodel\4.0.12\ref\xamarinmac20\_._ +system.objectmodel\4.0.12\ref\xamarintvos10\_._ +system.objectmodel\4.0.12\ref\xamarinwatchos10\_._ +system.objectmodel\4.0.12\system.objectmodel.4.0.12.nupkg.sha512 +system.objectmodel\4.0.12\system.objectmodel.nuspec +system.objectmodel\4.0.12\ThirdPartyNotices.txt +system.objectmodel\4.3.0\dotnet_library_license.txt +system.objectmodel\4.3.0\lib\MonoAndroid10\_._ +system.objectmodel\4.3.0\lib\MonoTouch10\_._ +system.objectmodel\4.3.0\lib\net45\_._ +system.objectmodel\4.3.0\lib\netcore50\System.ObjectModel.dll +system.objectmodel\4.3.0\lib\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.3.0\lib\win8\_._ +system.objectmodel\4.3.0\lib\wp80\_._ +system.objectmodel\4.3.0\lib\wpa81\_._ +system.objectmodel\4.3.0\lib\xamarinios10\_._ +system.objectmodel\4.3.0\lib\xamarinmac20\_._ +system.objectmodel\4.3.0\lib\xamarintvos10\_._ +system.objectmodel\4.3.0\lib\xamarinwatchos10\_._ +system.objectmodel\4.3.0\ref\MonoAndroid10\_._ +system.objectmodel\4.3.0\ref\MonoTouch10\_._ +system.objectmodel\4.3.0\ref\net45\_._ +system.objectmodel\4.3.0\ref\netcore50\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\netstandard1.0\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\netstandard1.3\System.ObjectModel.dll +system.objectmodel\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.objectmodel\4.3.0\ref\win8\_._ +system.objectmodel\4.3.0\ref\wp80\_._ +system.objectmodel\4.3.0\ref\wpa81\_._ +system.objectmodel\4.3.0\ref\xamarinios10\_._ +system.objectmodel\4.3.0\ref\xamarinmac20\_._ +system.objectmodel\4.3.0\ref\xamarintvos10\_._ +system.objectmodel\4.3.0\ref\xamarinwatchos10\_._ +system.objectmodel\4.3.0\system.objectmodel.4.3.0.nupkg.sha512 +system.objectmodel\4.3.0\system.objectmodel.nuspec +system.objectmodel\4.3.0\ThirdPartyNotices.txt +system.private.datacontractserialization\4.1.1\dotnet_library_license.txt +system.private.datacontractserialization\4.1.1\lib\netstandard1.3\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.1.1\ref\netstandard\_._ +system.private.datacontractserialization\4.1.1\runtimes\aot\lib\netcore50\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.1.1\system.private.datacontractserialization.4.1.1.nupkg.sha512 +system.private.datacontractserialization\4.1.1\system.private.datacontractserialization.nuspec +system.private.datacontractserialization\4.1.1\ThirdPartyNotices.txt +system.private.datacontractserialization\4.3.0\dotnet_library_license.txt +system.private.datacontractserialization\4.3.0\lib\netstandard1.3\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.3.0\ref\netstandard\_._ +system.private.datacontractserialization\4.3.0\runtimes\aot\lib\netcore50\System.Private.DataContractSerialization.dll +system.private.datacontractserialization\4.3.0\system.private.datacontractserialization.4.3.0.nupkg.sha512 +system.private.datacontractserialization\4.3.0\system.private.datacontractserialization.nuspec +system.private.datacontractserialization\4.3.0\ThirdPartyNotices.txt +system.reflection.emit.ilgeneration\4.0.1\dotnet_library_license.txt +system.reflection.emit.ilgeneration\4.0.1\lib\net45\_._ +system.reflection.emit.ilgeneration\4.0.1\lib\netcore50\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\lib\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.0.1\lib\wp80\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\net45\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.0.1\ref\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.0.1\ref\wp80\_._ +system.reflection.emit.ilgeneration\4.0.1\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.ilgeneration\4.0.1\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512 +system.reflection.emit.ilgeneration\4.0.1\system.reflection.emit.ilgeneration.nuspec +system.reflection.emit.ilgeneration\4.0.1\ThirdPartyNotices.txt +system.reflection.emit.ilgeneration\4.3.0\dotnet_library_license.txt +system.reflection.emit.ilgeneration\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\MonoTouch10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\net45\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\netcore50\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\lib\netstandard1.3\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\lib\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\wp80\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinios10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit.ilgeneration\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\MonoTouch10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\net45\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\netstandard1.0\System.Reflection.Emit.ILGeneration.dll +system.reflection.emit.ilgeneration\4.3.0\ref\portable-net45+wp8\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\wp80\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinios10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarintvos10\_._ +system.reflection.emit.ilgeneration\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.emit.ilgeneration\4.3.0\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.ilgeneration\4.3.0\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512 +system.reflection.emit.ilgeneration\4.3.0\system.reflection.emit.ilgeneration.nuspec +system.reflection.emit.ilgeneration\4.3.0\ThirdPartyNotices.txt +system.reflection.emit.lightweight\4.0.1\dotnet_library_license.txt +system.reflection.emit.lightweight\4.0.1\lib\net45\_._ +system.reflection.emit.lightweight\4.0.1\lib\netcore50\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\lib\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.0.1\lib\wp80\_._ +system.reflection.emit.lightweight\4.0.1\ref\net45\_._ +system.reflection.emit.lightweight\4.0.1\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.0.1\ref\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.0.1\ref\wp80\_._ +system.reflection.emit.lightweight\4.0.1\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.lightweight\4.0.1\system.reflection.emit.lightweight.4.0.1.nupkg.sha512 +system.reflection.emit.lightweight\4.0.1\system.reflection.emit.lightweight.nuspec +system.reflection.emit.lightweight\4.0.1\ThirdPartyNotices.txt +system.reflection.emit.lightweight\4.3.0\dotnet_library_license.txt +system.reflection.emit.lightweight\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit.lightweight\4.3.0\lib\MonoTouch10\_._ +system.reflection.emit.lightweight\4.3.0\lib\net45\_._ +system.reflection.emit.lightweight\4.3.0\lib\netcore50\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\lib\netstandard1.3\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\lib\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.3.0\lib\wp80\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinios10\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit.lightweight\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit.lightweight\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit.lightweight\4.3.0\ref\MonoTouch10\_._ +system.reflection.emit.lightweight\4.3.0\ref\net45\_._ +system.reflection.emit.lightweight\4.3.0\ref\netstandard1.0\System.Reflection.Emit.Lightweight.dll +system.reflection.emit.lightweight\4.3.0\ref\portable-net45+wp8\_._ +system.reflection.emit.lightweight\4.3.0\ref\wp80\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinios10\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarintvos10\_._ +system.reflection.emit.lightweight\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.emit.lightweight\4.3.0\runtimes\aot\lib\netcore50\_._ +system.reflection.emit.lightweight\4.3.0\system.reflection.emit.lightweight.4.3.0.nupkg.sha512 +system.reflection.emit.lightweight\4.3.0\system.reflection.emit.lightweight.nuspec +system.reflection.emit.lightweight\4.3.0\ThirdPartyNotices.txt +system.reflection.emit\4.0.1\dotnet_library_license.txt +system.reflection.emit\4.0.1\lib\MonoAndroid10\_._ +system.reflection.emit\4.0.1\lib\net45\_._ +system.reflection.emit\4.0.1\lib\netcore50\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\lib\netstandard1.3\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\lib\xamarinmac20\_._ +system.reflection.emit\4.0.1\ref\MonoAndroid10\_._ +system.reflection.emit\4.0.1\ref\net45\_._ +system.reflection.emit\4.0.1\ref\netstandard1.1\System.Reflection.Emit.dll +system.reflection.emit\4.0.1\ref\xamarinmac20\_._ +system.reflection.emit\4.0.1\system.reflection.emit.4.0.1.nupkg.sha512 +system.reflection.emit\4.0.1\system.reflection.emit.nuspec +system.reflection.emit\4.0.1\ThirdPartyNotices.txt +system.reflection.emit\4.3.0\dotnet_library_license.txt +system.reflection.emit\4.3.0\lib\MonoAndroid10\_._ +system.reflection.emit\4.3.0\lib\monotouch10\_._ +system.reflection.emit\4.3.0\lib\net45\_._ +system.reflection.emit\4.3.0\lib\netcore50\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\lib\netstandard1.3\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\lib\xamarinios10\_._ +system.reflection.emit\4.3.0\lib\xamarinmac20\_._ +system.reflection.emit\4.3.0\lib\xamarintvos10\_._ +system.reflection.emit\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.emit\4.3.0\ref\MonoAndroid10\_._ +system.reflection.emit\4.3.0\ref\net45\_._ +system.reflection.emit\4.3.0\ref\netstandard1.1\System.Reflection.Emit.dll +system.reflection.emit\4.3.0\ref\xamarinmac20\_._ +system.reflection.emit\4.3.0\system.reflection.emit.4.3.0.nupkg.sha512 +system.reflection.emit\4.3.0\system.reflection.emit.nuspec +system.reflection.emit\4.3.0\ThirdPartyNotices.txt +system.reflection.extensions\4.0.1\dotnet_library_license.txt +system.reflection.extensions\4.0.1\lib\MonoAndroid10\_._ +system.reflection.extensions\4.0.1\lib\MonoTouch10\_._ +system.reflection.extensions\4.0.1\lib\net45\_._ +system.reflection.extensions\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.0.1\lib\win8\_._ +system.reflection.extensions\4.0.1\lib\wp80\_._ +system.reflection.extensions\4.0.1\lib\wpa81\_._ +system.reflection.extensions\4.0.1\lib\xamarinios10\_._ +system.reflection.extensions\4.0.1\lib\xamarinmac20\_._ +system.reflection.extensions\4.0.1\lib\xamarintvos10\_._ +system.reflection.extensions\4.0.1\lib\xamarinwatchos10\_._ +system.reflection.extensions\4.0.1\ref\MonoAndroid10\_._ +system.reflection.extensions\4.0.1\ref\MonoTouch10\_._ +system.reflection.extensions\4.0.1\ref\net45\_._ +system.reflection.extensions\4.0.1\ref\netcore50\System.Reflection.Extensions.dll +system.reflection.extensions\4.0.1\ref\netstandard1.0\System.Reflection.Extensions.dll +system.reflection.extensions\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.0.1\ref\win8\_._ +system.reflection.extensions\4.0.1\ref\wp80\_._ +system.reflection.extensions\4.0.1\ref\wpa81\_._ +system.reflection.extensions\4.0.1\ref\xamarinios10\_._ +system.reflection.extensions\4.0.1\ref\xamarinmac20\_._ +system.reflection.extensions\4.0.1\ref\xamarintvos10\_._ +system.reflection.extensions\4.0.1\ref\xamarinwatchos10\_._ +system.reflection.extensions\4.0.1\system.reflection.extensions.4.0.1.nupkg.sha512 +system.reflection.extensions\4.0.1\system.reflection.extensions.nuspec +system.reflection.extensions\4.0.1\ThirdPartyNotices.txt +system.reflection.extensions\4.3.0\dotnet_library_license.txt +system.reflection.extensions\4.3.0\lib\MonoAndroid10\_._ +system.reflection.extensions\4.3.0\lib\MonoTouch10\_._ +system.reflection.extensions\4.3.0\lib\net45\_._ +system.reflection.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.3.0\lib\win8\_._ +system.reflection.extensions\4.3.0\lib\wp80\_._ +system.reflection.extensions\4.3.0\lib\wpa81\_._ +system.reflection.extensions\4.3.0\lib\xamarinios10\_._ +system.reflection.extensions\4.3.0\lib\xamarinmac20\_._ +system.reflection.extensions\4.3.0\lib\xamarintvos10\_._ +system.reflection.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.extensions\4.3.0\ref\MonoAndroid10\_._ +system.reflection.extensions\4.3.0\ref\MonoTouch10\_._ +system.reflection.extensions\4.3.0\ref\net45\_._ +system.reflection.extensions\4.3.0\ref\netcore50\System.Reflection.Extensions.dll +system.reflection.extensions\4.3.0\ref\netstandard1.0\System.Reflection.Extensions.dll +system.reflection.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.extensions\4.3.0\ref\win8\_._ +system.reflection.extensions\4.3.0\ref\wp80\_._ +system.reflection.extensions\4.3.0\ref\wpa81\_._ +system.reflection.extensions\4.3.0\ref\xamarinios10\_._ +system.reflection.extensions\4.3.0\ref\xamarinmac20\_._ +system.reflection.extensions\4.3.0\ref\xamarintvos10\_._ +system.reflection.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.extensions\4.3.0\system.reflection.extensions.4.3.0.nupkg.sha512 +system.reflection.extensions\4.3.0\system.reflection.extensions.nuspec +system.reflection.extensions\4.3.0\ThirdPartyNotices.txt +system.reflection.metadata\1.4.1\dotnet_library_license.txt +system.reflection.metadata\1.4.1\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.1\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.1\system.reflection.metadata.1.4.1.nupkg.sha512 +system.reflection.metadata\1.4.1\system.reflection.metadata.nuspec +system.reflection.metadata\1.4.1\ThirdPartyNotices.txt +system.reflection.metadata\1.4.2\dotnet_library_license.txt +system.reflection.metadata\1.4.2\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.2\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.4.2\system.reflection.metadata.1.4.2.nupkg.sha512 +system.reflection.metadata\1.4.2\system.reflection.metadata.nuspec +system.reflection.metadata\1.4.2\ThirdPartyNotices.txt +system.reflection.metadata\1.6.0\.signature.p7s +system.reflection.metadata\1.6.0\lib\netstandard1.1\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\lib\netstandard2.0\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\lib\portable-net45+win8\System.Reflection.Metadata.dll +system.reflection.metadata\1.6.0\LICENSE.TXT +system.reflection.metadata\1.6.0\system.reflection.metadata.1.6.0.nupkg.sha512 +system.reflection.metadata\1.6.0\system.reflection.metadata.nuspec +system.reflection.metadata\1.6.0\THIRD-PARTY-NOTICES.TXT +system.reflection.metadata\1.6.0\useSharedDesignerContext.txt +system.reflection.metadata\1.6.0\version.txt +system.reflection.primitives\4.0.1\dotnet_library_license.txt +system.reflection.primitives\4.0.1\lib\MonoAndroid10\_._ +system.reflection.primitives\4.0.1\lib\MonoTouch10\_._ +system.reflection.primitives\4.0.1\lib\net45\_._ +system.reflection.primitives\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.0.1\lib\win8\_._ +system.reflection.primitives\4.0.1\lib\wp80\_._ +system.reflection.primitives\4.0.1\lib\wpa81\_._ +system.reflection.primitives\4.0.1\lib\xamarinios10\_._ +system.reflection.primitives\4.0.1\lib\xamarinmac20\_._ +system.reflection.primitives\4.0.1\lib\xamarintvos10\_._ +system.reflection.primitives\4.0.1\lib\xamarinwatchos10\_._ +system.reflection.primitives\4.0.1\ref\MonoAndroid10\_._ +system.reflection.primitives\4.0.1\ref\MonoTouch10\_._ +system.reflection.primitives\4.0.1\ref\net45\_._ +system.reflection.primitives\4.0.1\ref\netcore50\System.Reflection.Primitives.dll +system.reflection.primitives\4.0.1\ref\netstandard1.0\System.Reflection.Primitives.dll +system.reflection.primitives\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.0.1\ref\win8\_._ +system.reflection.primitives\4.0.1\ref\wp80\_._ +system.reflection.primitives\4.0.1\ref\wpa81\_._ +system.reflection.primitives\4.0.1\ref\xamarinios10\_._ +system.reflection.primitives\4.0.1\ref\xamarinmac20\_._ +system.reflection.primitives\4.0.1\ref\xamarintvos10\_._ +system.reflection.primitives\4.0.1\ref\xamarinwatchos10\_._ +system.reflection.primitives\4.0.1\system.reflection.primitives.4.0.1.nupkg.sha512 +system.reflection.primitives\4.0.1\system.reflection.primitives.nuspec +system.reflection.primitives\4.0.1\ThirdPartyNotices.txt +system.reflection.primitives\4.3.0\dotnet_library_license.txt +system.reflection.primitives\4.3.0\lib\MonoAndroid10\_._ +system.reflection.primitives\4.3.0\lib\MonoTouch10\_._ +system.reflection.primitives\4.3.0\lib\net45\_._ +system.reflection.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.3.0\lib\win8\_._ +system.reflection.primitives\4.3.0\lib\wp80\_._ +system.reflection.primitives\4.3.0\lib\wpa81\_._ +system.reflection.primitives\4.3.0\lib\xamarinios10\_._ +system.reflection.primitives\4.3.0\lib\xamarinmac20\_._ +system.reflection.primitives\4.3.0\lib\xamarintvos10\_._ +system.reflection.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.primitives\4.3.0\ref\MonoAndroid10\_._ +system.reflection.primitives\4.3.0\ref\MonoTouch10\_._ +system.reflection.primitives\4.3.0\ref\net45\_._ +system.reflection.primitives\4.3.0\ref\netcore50\System.Reflection.Primitives.dll +system.reflection.primitives\4.3.0\ref\netstandard1.0\System.Reflection.Primitives.dll +system.reflection.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection.primitives\4.3.0\ref\win8\_._ +system.reflection.primitives\4.3.0\ref\wp80\_._ +system.reflection.primitives\4.3.0\ref\wpa81\_._ +system.reflection.primitives\4.3.0\ref\xamarinios10\_._ +system.reflection.primitives\4.3.0\ref\xamarinmac20\_._ +system.reflection.primitives\4.3.0\ref\xamarintvos10\_._ +system.reflection.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.primitives\4.3.0\system.reflection.primitives.4.3.0.nupkg.sha512 +system.reflection.primitives\4.3.0\system.reflection.primitives.nuspec +system.reflection.primitives\4.3.0\ThirdPartyNotices.txt +system.reflection.typeextensions\4.1.0\dotnet_library_license.txt +system.reflection.typeextensions\4.1.0\lib\MonoAndroid10\_._ +system.reflection.typeextensions\4.1.0\lib\MonoTouch10\_._ +system.reflection.typeextensions\4.1.0\lib\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\lib\xamarinios10\_._ +system.reflection.typeextensions\4.1.0\lib\xamarinmac20\_._ +system.reflection.typeextensions\4.1.0\lib\xamarintvos10\_._ +system.reflection.typeextensions\4.1.0\lib\xamarinwatchos10\_._ +system.reflection.typeextensions\4.1.0\ref\MonoAndroid10\_._ +system.reflection.typeextensions\4.1.0\ref\MonoTouch10\_._ +system.reflection.typeextensions\4.1.0\ref\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\netstandard1.3\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\ref\xamarinios10\_._ +system.reflection.typeextensions\4.1.0\ref\xamarinmac20\_._ +system.reflection.typeextensions\4.1.0\ref\xamarintvos10\_._ +system.reflection.typeextensions\4.1.0\ref\xamarinwatchos10\_._ +system.reflection.typeextensions\4.1.0\runtimes\aot\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.1.0\system.reflection.typeextensions.4.1.0.nupkg.sha512 +system.reflection.typeextensions\4.1.0\system.reflection.typeextensions.nuspec +system.reflection.typeextensions\4.1.0\ThirdPartyNotices.txt +system.reflection.typeextensions\4.3.0\dotnet_library_license.txt +system.reflection.typeextensions\4.3.0\lib\MonoAndroid10\_._ +system.reflection.typeextensions\4.3.0\lib\MonoTouch10\_._ +system.reflection.typeextensions\4.3.0\lib\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\lib\xamarinios10\_._ +system.reflection.typeextensions\4.3.0\lib\xamarinmac20\_._ +system.reflection.typeextensions\4.3.0\lib\xamarintvos10\_._ +system.reflection.typeextensions\4.3.0\lib\xamarinwatchos10\_._ +system.reflection.typeextensions\4.3.0\ref\MonoAndroid10\_._ +system.reflection.typeextensions\4.3.0\ref\MonoTouch10\_._ +system.reflection.typeextensions\4.3.0\ref\net46\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\net462\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\netstandard1.3\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\netstandard1.5\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\ref\xamarinios10\_._ +system.reflection.typeextensions\4.3.0\ref\xamarinmac20\_._ +system.reflection.typeextensions\4.3.0\ref\xamarintvos10\_._ +system.reflection.typeextensions\4.3.0\ref\xamarinwatchos10\_._ +system.reflection.typeextensions\4.3.0\runtimes\aot\lib\netcore50\System.Reflection.TypeExtensions.dll +system.reflection.typeextensions\4.3.0\system.reflection.typeextensions.4.3.0.nupkg.sha512 +system.reflection.typeextensions\4.3.0\system.reflection.typeextensions.nuspec +system.reflection.typeextensions\4.3.0\ThirdPartyNotices.txt +system.reflection\4.1.0\dotnet_library_license.txt +system.reflection\4.1.0\lib\MonoAndroid10\_._ +system.reflection\4.1.0\lib\MonoTouch10\_._ +system.reflection\4.1.0\lib\net45\_._ +system.reflection\4.1.0\lib\net462\System.Reflection.dll +system.reflection\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.1.0\lib\win8\_._ +system.reflection\4.1.0\lib\wp80\_._ +system.reflection\4.1.0\lib\wpa81\_._ +system.reflection\4.1.0\lib\xamarinios10\_._ +system.reflection\4.1.0\lib\xamarinmac20\_._ +system.reflection\4.1.0\lib\xamarintvos10\_._ +system.reflection\4.1.0\lib\xamarinwatchos10\_._ +system.reflection\4.1.0\ref\MonoAndroid10\_._ +system.reflection\4.1.0\ref\MonoTouch10\_._ +system.reflection\4.1.0\ref\net45\_._ +system.reflection\4.1.0\ref\net462\System.Reflection.dll +system.reflection\4.1.0\ref\netcore50\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.0\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.3\System.Reflection.dll +system.reflection\4.1.0\ref\netstandard1.5\System.Reflection.dll +system.reflection\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.1.0\ref\win8\_._ +system.reflection\4.1.0\ref\wp80\_._ +system.reflection\4.1.0\ref\wpa81\_._ +system.reflection\4.1.0\ref\xamarinios10\_._ +system.reflection\4.1.0\ref\xamarinmac20\_._ +system.reflection\4.1.0\ref\xamarintvos10\_._ +system.reflection\4.1.0\ref\xamarinwatchos10\_._ +system.reflection\4.1.0\system.reflection.4.1.0.nupkg.sha512 +system.reflection\4.1.0\system.reflection.nuspec +system.reflection\4.1.0\ThirdPartyNotices.txt +system.reflection\4.3.0\dotnet_library_license.txt +system.reflection\4.3.0\lib\MonoAndroid10\_._ +system.reflection\4.3.0\lib\MonoTouch10\_._ +system.reflection\4.3.0\lib\net45\_._ +system.reflection\4.3.0\lib\net462\System.Reflection.dll +system.reflection\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.3.0\lib\win8\_._ +system.reflection\4.3.0\lib\wp80\_._ +system.reflection\4.3.0\lib\wpa81\_._ +system.reflection\4.3.0\lib\xamarinios10\_._ +system.reflection\4.3.0\lib\xamarinmac20\_._ +system.reflection\4.3.0\lib\xamarintvos10\_._ +system.reflection\4.3.0\lib\xamarinwatchos10\_._ +system.reflection\4.3.0\ref\MonoAndroid10\_._ +system.reflection\4.3.0\ref\MonoTouch10\_._ +system.reflection\4.3.0\ref\net45\_._ +system.reflection\4.3.0\ref\net462\System.Reflection.dll +system.reflection\4.3.0\ref\netcore50\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.0\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.3\System.Reflection.dll +system.reflection\4.3.0\ref\netstandard1.5\System.Reflection.dll +system.reflection\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.reflection\4.3.0\ref\win8\_._ +system.reflection\4.3.0\ref\wp80\_._ +system.reflection\4.3.0\ref\wpa81\_._ +system.reflection\4.3.0\ref\xamarinios10\_._ +system.reflection\4.3.0\ref\xamarinmac20\_._ +system.reflection\4.3.0\ref\xamarintvos10\_._ +system.reflection\4.3.0\ref\xamarinwatchos10\_._ +system.reflection\4.3.0\system.reflection.4.3.0.nupkg.sha512 +system.reflection\4.3.0\system.reflection.nuspec +system.reflection\4.3.0\ThirdPartyNotices.txt +system.resources.resourcemanager\4.0.1\dotnet_library_license.txt +system.resources.resourcemanager\4.0.1\lib\MonoAndroid10\_._ +system.resources.resourcemanager\4.0.1\lib\MonoTouch10\_._ +system.resources.resourcemanager\4.0.1\lib\net45\_._ +system.resources.resourcemanager\4.0.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.0.1\lib\win8\_._ +system.resources.resourcemanager\4.0.1\lib\wp80\_._ +system.resources.resourcemanager\4.0.1\lib\wpa81\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinios10\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinmac20\_._ +system.resources.resourcemanager\4.0.1\lib\xamarintvos10\_._ +system.resources.resourcemanager\4.0.1\lib\xamarinwatchos10\_._ +system.resources.resourcemanager\4.0.1\ref\MonoAndroid10\_._ +system.resources.resourcemanager\4.0.1\ref\MonoTouch10\_._ +system.resources.resourcemanager\4.0.1\ref\net45\_._ +system.resources.resourcemanager\4.0.1\ref\netcore50\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.0.1\ref\netstandard1.0\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.0.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.0.1\ref\win8\_._ +system.resources.resourcemanager\4.0.1\ref\wp80\_._ +system.resources.resourcemanager\4.0.1\ref\wpa81\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinios10\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinmac20\_._ +system.resources.resourcemanager\4.0.1\ref\xamarintvos10\_._ +system.resources.resourcemanager\4.0.1\ref\xamarinwatchos10\_._ +system.resources.resourcemanager\4.0.1\system.resources.resourcemanager.4.0.1.nupkg.sha512 +system.resources.resourcemanager\4.0.1\system.resources.resourcemanager.nuspec +system.resources.resourcemanager\4.0.1\ThirdPartyNotices.txt +system.resources.resourcemanager\4.3.0\dotnet_library_license.txt +system.resources.resourcemanager\4.3.0\lib\MonoAndroid10\_._ +system.resources.resourcemanager\4.3.0\lib\MonoTouch10\_._ +system.resources.resourcemanager\4.3.0\lib\net45\_._ +system.resources.resourcemanager\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.3.0\lib\win8\_._ +system.resources.resourcemanager\4.3.0\lib\wp80\_._ +system.resources.resourcemanager\4.3.0\lib\wpa81\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinios10\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinmac20\_._ +system.resources.resourcemanager\4.3.0\lib\xamarintvos10\_._ +system.resources.resourcemanager\4.3.0\lib\xamarinwatchos10\_._ +system.resources.resourcemanager\4.3.0\ref\MonoAndroid10\_._ +system.resources.resourcemanager\4.3.0\ref\MonoTouch10\_._ +system.resources.resourcemanager\4.3.0\ref\net45\_._ +system.resources.resourcemanager\4.3.0\ref\netcore50\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.3.0\ref\netstandard1.0\System.Resources.ResourceManager.dll +system.resources.resourcemanager\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.resources.resourcemanager\4.3.0\ref\win8\_._ +system.resources.resourcemanager\4.3.0\ref\wp80\_._ +system.resources.resourcemanager\4.3.0\ref\wpa81\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinios10\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinmac20\_._ +system.resources.resourcemanager\4.3.0\ref\xamarintvos10\_._ +system.resources.resourcemanager\4.3.0\ref\xamarinwatchos10\_._ +system.resources.resourcemanager\4.3.0\system.resources.resourcemanager.4.3.0.nupkg.sha512 +system.resources.resourcemanager\4.3.0\system.resources.resourcemanager.nuspec +system.resources.resourcemanager\4.3.0\ThirdPartyNotices.txt +system.runtime.compilerservices.unsafe\4.5.0\.signature.p7s +system.runtime.compilerservices.unsafe\4.5.0\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\lib\uap10.0.16300\_._ +system.runtime.compilerservices.unsafe\4.5.0\LICENSE.TXT +system.runtime.compilerservices.unsafe\4.5.0\ref\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.0\ref\uap10.0.16300\_._ +system.runtime.compilerservices.unsafe\4.5.0\system.runtime.compilerservices.unsafe.4.5.0.nupkg.sha512 +system.runtime.compilerservices.unsafe\4.5.0\system.runtime.compilerservices.unsafe.nuspec +system.runtime.compilerservices.unsafe\4.5.0\THIRD-PARTY-NOTICES.TXT +system.runtime.compilerservices.unsafe\4.5.0\useSharedDesignerContext.txt +system.runtime.compilerservices.unsafe\4.5.0\version.txt +system.runtime.compilerservices.unsafe\4.5.1\.signature.p7s +system.runtime.compilerservices.unsafe\4.5.1\lib\netcoreapp2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\lib\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\LICENSE.TXT +system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard1.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\ref\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll +system.runtime.compilerservices.unsafe\4.5.1\system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512 +system.runtime.compilerservices.unsafe\4.5.1\system.runtime.compilerservices.unsafe.nuspec +system.runtime.compilerservices.unsafe\4.5.1\THIRD-PARTY-NOTICES.TXT +system.runtime.compilerservices.unsafe\4.5.1\useSharedDesignerContext.txt +system.runtime.compilerservices.unsafe\4.5.1\version.txt +system.runtime.extensions\4.1.0\dotnet_library_license.txt +system.runtime.extensions\4.1.0\lib\MonoAndroid10\_._ +system.runtime.extensions\4.1.0\lib\MonoTouch10\_._ +system.runtime.extensions\4.1.0\lib\net45\_._ +system.runtime.extensions\4.1.0\lib\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.1.0\lib\win8\_._ +system.runtime.extensions\4.1.0\lib\wp80\_._ +system.runtime.extensions\4.1.0\lib\wpa81\_._ +system.runtime.extensions\4.1.0\lib\xamarinios10\_._ +system.runtime.extensions\4.1.0\lib\xamarinmac20\_._ +system.runtime.extensions\4.1.0\lib\xamarintvos10\_._ +system.runtime.extensions\4.1.0\lib\xamarinwatchos10\_._ +system.runtime.extensions\4.1.0\ref\MonoAndroid10\_._ +system.runtime.extensions\4.1.0\ref\MonoTouch10\_._ +system.runtime.extensions\4.1.0\ref\net45\_._ +system.runtime.extensions\4.1.0\ref\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netcore50\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.0\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.3\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\netstandard1.5\System.Runtime.Extensions.dll +system.runtime.extensions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.1.0\ref\win8\_._ +system.runtime.extensions\4.1.0\ref\wp80\_._ +system.runtime.extensions\4.1.0\ref\wpa81\_._ +system.runtime.extensions\4.1.0\ref\xamarinios10\_._ +system.runtime.extensions\4.1.0\ref\xamarinmac20\_._ +system.runtime.extensions\4.1.0\ref\xamarintvos10\_._ +system.runtime.extensions\4.1.0\ref\xamarinwatchos10\_._ +system.runtime.extensions\4.1.0\system.runtime.extensions.4.1.0.nupkg.sha512 +system.runtime.extensions\4.1.0\system.runtime.extensions.nuspec +system.runtime.extensions\4.1.0\ThirdPartyNotices.txt +system.runtime.extensions\4.3.0\dotnet_library_license.txt +system.runtime.extensions\4.3.0\lib\MonoAndroid10\_._ +system.runtime.extensions\4.3.0\lib\MonoTouch10\_._ +system.runtime.extensions\4.3.0\lib\net45\_._ +system.runtime.extensions\4.3.0\lib\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.3.0\lib\win8\_._ +system.runtime.extensions\4.3.0\lib\wp80\_._ +system.runtime.extensions\4.3.0\lib\wpa81\_._ +system.runtime.extensions\4.3.0\lib\xamarinios10\_._ +system.runtime.extensions\4.3.0\lib\xamarinmac20\_._ +system.runtime.extensions\4.3.0\lib\xamarintvos10\_._ +system.runtime.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.extensions\4.3.0\ref\MonoAndroid10\_._ +system.runtime.extensions\4.3.0\ref\MonoTouch10\_._ +system.runtime.extensions\4.3.0\ref\net45\_._ +system.runtime.extensions\4.3.0\ref\net462\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netcore50\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.0\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.3\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\netstandard1.5\System.Runtime.Extensions.dll +system.runtime.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.extensions\4.3.0\ref\win8\_._ +system.runtime.extensions\4.3.0\ref\wp80\_._ +system.runtime.extensions\4.3.0\ref\wpa81\_._ +system.runtime.extensions\4.3.0\ref\xamarinios10\_._ +system.runtime.extensions\4.3.0\ref\xamarinmac20\_._ +system.runtime.extensions\4.3.0\ref\xamarintvos10\_._ +system.runtime.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.extensions\4.3.0\system.runtime.extensions.4.3.0.nupkg.sha512 +system.runtime.extensions\4.3.0\system.runtime.extensions.nuspec +system.runtime.extensions\4.3.0\ThirdPartyNotices.txt +system.runtime.handles\4.0.1\dotnet_library_license.txt +system.runtime.handles\4.0.1\lib\MonoAndroid10\_._ +system.runtime.handles\4.0.1\lib\MonoTouch10\_._ +system.runtime.handles\4.0.1\lib\net46\_._ +system.runtime.handles\4.0.1\lib\xamarinios10\_._ +system.runtime.handles\4.0.1\lib\xamarinmac20\_._ +system.runtime.handles\4.0.1\lib\xamarintvos10\_._ +system.runtime.handles\4.0.1\lib\xamarinwatchos10\_._ +system.runtime.handles\4.0.1\ref\MonoAndroid10\_._ +system.runtime.handles\4.0.1\ref\MonoTouch10\_._ +system.runtime.handles\4.0.1\ref\net46\_._ +system.runtime.handles\4.0.1\ref\netstandard1.3\System.Runtime.Handles.dll +system.runtime.handles\4.0.1\ref\xamarinios10\_._ +system.runtime.handles\4.0.1\ref\xamarinmac20\_._ +system.runtime.handles\4.0.1\ref\xamarintvos10\_._ +system.runtime.handles\4.0.1\ref\xamarinwatchos10\_._ +system.runtime.handles\4.0.1\system.runtime.handles.4.0.1.nupkg.sha512 +system.runtime.handles\4.0.1\system.runtime.handles.nuspec +system.runtime.handles\4.0.1\ThirdPartyNotices.txt +system.runtime.handles\4.3.0\dotnet_library_license.txt +system.runtime.handles\4.3.0\lib\MonoAndroid10\_._ +system.runtime.handles\4.3.0\lib\MonoTouch10\_._ +system.runtime.handles\4.3.0\lib\net46\_._ +system.runtime.handles\4.3.0\lib\xamarinios10\_._ +system.runtime.handles\4.3.0\lib\xamarinmac20\_._ +system.runtime.handles\4.3.0\lib\xamarintvos10\_._ +system.runtime.handles\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.handles\4.3.0\ref\MonoAndroid10\_._ +system.runtime.handles\4.3.0\ref\MonoTouch10\_._ +system.runtime.handles\4.3.0\ref\net46\_._ +system.runtime.handles\4.3.0\ref\netstandard1.3\System.Runtime.Handles.dll +system.runtime.handles\4.3.0\ref\xamarinios10\_._ +system.runtime.handles\4.3.0\ref\xamarinmac20\_._ +system.runtime.handles\4.3.0\ref\xamarintvos10\_._ +system.runtime.handles\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.handles\4.3.0\system.runtime.handles.4.3.0.nupkg.sha512 +system.runtime.handles\4.3.0\system.runtime.handles.nuspec +system.runtime.handles\4.3.0\ThirdPartyNotices.txt +system.runtime.interopservices.runtimeinformation\4.0.0\dotnet_library_license.txt +system.runtime.interopservices.runtimeinformation\4.0.0\lib\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\win8\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\aot\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\unix\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\runtimes\win\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.0.0\system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512 +system.runtime.interopservices.runtimeinformation\4.0.0\system.runtime.interopservices.runtimeinformation.nuspec +system.runtime.interopservices.runtimeinformation\4.0.0\ThirdPartyNotices.txt +system.runtime.interopservices.runtimeinformation\4.3.0\dotnet_library_license.txt +system.runtime.interopservices.runtimeinformation\4.3.0\lib\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\win8\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\wpa81\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\MonoAndroid10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\MonoTouch10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinios10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinmac20\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarintvos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\aot\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\unix\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\netcore50\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\runtimes\win\lib\netstandard1.1\System.Runtime.InteropServices.RuntimeInformation.dll +system.runtime.interopservices.runtimeinformation\4.3.0\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512 +system.runtime.interopservices.runtimeinformation\4.3.0\system.runtime.interopservices.runtimeinformation.nuspec +system.runtime.interopservices.runtimeinformation\4.3.0\ThirdPartyNotices.txt +system.runtime.interopservices\4.1.0\dotnet_library_license.txt +system.runtime.interopservices\4.1.0\lib\MonoAndroid10\_._ +system.runtime.interopservices\4.1.0\lib\MonoTouch10\_._ +system.runtime.interopservices\4.1.0\lib\net45\_._ +system.runtime.interopservices\4.1.0\lib\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.1.0\lib\win8\_._ +system.runtime.interopservices\4.1.0\lib\wpa81\_._ +system.runtime.interopservices\4.1.0\lib\xamarinios10\_._ +system.runtime.interopservices\4.1.0\lib\xamarinmac20\_._ +system.runtime.interopservices\4.1.0\lib\xamarintvos10\_._ +system.runtime.interopservices\4.1.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices\4.1.0\ref\MonoAndroid10\_._ +system.runtime.interopservices\4.1.0\ref\MonoTouch10\_._ +system.runtime.interopservices\4.1.0\ref\net45\_._ +system.runtime.interopservices\4.1.0\ref\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netcore50\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.2\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.3\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\netstandard1.5\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.1.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.1.0\ref\win8\_._ +system.runtime.interopservices\4.1.0\ref\wpa81\_._ +system.runtime.interopservices\4.1.0\ref\xamarinios10\_._ +system.runtime.interopservices\4.1.0\ref\xamarinmac20\_._ +system.runtime.interopservices\4.1.0\ref\xamarintvos10\_._ +system.runtime.interopservices\4.1.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices\4.1.0\system.runtime.interopservices.4.1.0.nupkg.sha512 +system.runtime.interopservices\4.1.0\system.runtime.interopservices.nuspec +system.runtime.interopservices\4.1.0\ThirdPartyNotices.txt +system.runtime.interopservices\4.3.0\dotnet_library_license.txt +system.runtime.interopservices\4.3.0\lib\MonoAndroid10\_._ +system.runtime.interopservices\4.3.0\lib\MonoTouch10\_._ +system.runtime.interopservices\4.3.0\lib\net45\_._ +system.runtime.interopservices\4.3.0\lib\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\lib\net463\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.3.0\lib\win8\_._ +system.runtime.interopservices\4.3.0\lib\wpa81\_._ +system.runtime.interopservices\4.3.0\lib\xamarinios10\_._ +system.runtime.interopservices\4.3.0\lib\xamarinmac20\_._ +system.runtime.interopservices\4.3.0\lib\xamarintvos10\_._ +system.runtime.interopservices\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.interopservices\4.3.0\ref\MonoAndroid10\_._ +system.runtime.interopservices\4.3.0\ref\MonoTouch10\_._ +system.runtime.interopservices\4.3.0\ref\net45\_._ +system.runtime.interopservices\4.3.0\ref\net462\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\net463\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netcore50\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netcoreapp1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.1\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.2\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.3\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\netstandard1.5\System.Runtime.InteropServices.dll +system.runtime.interopservices\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.interopservices\4.3.0\ref\win8\_._ +system.runtime.interopservices\4.3.0\ref\wpa81\_._ +system.runtime.interopservices\4.3.0\ref\xamarinios10\_._ +system.runtime.interopservices\4.3.0\ref\xamarinmac20\_._ +system.runtime.interopservices\4.3.0\ref\xamarintvos10\_._ +system.runtime.interopservices\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.interopservices\4.3.0\system.runtime.interopservices.4.3.0.nupkg.sha512 +system.runtime.interopservices\4.3.0\system.runtime.interopservices.nuspec +system.runtime.interopservices\4.3.0\ThirdPartyNotices.txt +system.runtime.numerics\4.0.1\dotnet_library_license.txt +system.runtime.numerics\4.0.1\lib\MonoAndroid10\_._ +system.runtime.numerics\4.0.1\lib\MonoTouch10\_._ +system.runtime.numerics\4.0.1\lib\net45\_._ +system.runtime.numerics\4.0.1\lib\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\lib\netstandard1.3\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\lib\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.0.1\lib\win8\_._ +system.runtime.numerics\4.0.1\lib\wpa81\_._ +system.runtime.numerics\4.0.1\lib\xamarinios10\_._ +system.runtime.numerics\4.0.1\lib\xamarinmac20\_._ +system.runtime.numerics\4.0.1\lib\xamarintvos10\_._ +system.runtime.numerics\4.0.1\lib\xamarinwatchos10\_._ +system.runtime.numerics\4.0.1\ref\MonoAndroid10\_._ +system.runtime.numerics\4.0.1\ref\MonoTouch10\_._ +system.runtime.numerics\4.0.1\ref\net45\_._ +system.runtime.numerics\4.0.1\ref\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\ref\netstandard1.1\System.Runtime.Numerics.dll +system.runtime.numerics\4.0.1\ref\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.0.1\ref\win8\_._ +system.runtime.numerics\4.0.1\ref\wpa81\_._ +system.runtime.numerics\4.0.1\ref\xamarinios10\_._ +system.runtime.numerics\4.0.1\ref\xamarinmac20\_._ +system.runtime.numerics\4.0.1\ref\xamarintvos10\_._ +system.runtime.numerics\4.0.1\ref\xamarinwatchos10\_._ +system.runtime.numerics\4.0.1\system.runtime.numerics.4.0.1.nupkg.sha512 +system.runtime.numerics\4.0.1\system.runtime.numerics.nuspec +system.runtime.numerics\4.0.1\ThirdPartyNotices.txt +system.runtime.numerics\4.3.0\dotnet_library_license.txt +system.runtime.numerics\4.3.0\lib\MonoAndroid10\_._ +system.runtime.numerics\4.3.0\lib\MonoTouch10\_._ +system.runtime.numerics\4.3.0\lib\net45\_._ +system.runtime.numerics\4.3.0\lib\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\lib\netstandard1.3\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.3.0\lib\win8\_._ +system.runtime.numerics\4.3.0\lib\wpa81\_._ +system.runtime.numerics\4.3.0\lib\xamarinios10\_._ +system.runtime.numerics\4.3.0\lib\xamarinmac20\_._ +system.runtime.numerics\4.3.0\lib\xamarintvos10\_._ +system.runtime.numerics\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.numerics\4.3.0\ref\MonoAndroid10\_._ +system.runtime.numerics\4.3.0\ref\MonoTouch10\_._ +system.runtime.numerics\4.3.0\ref\net45\_._ +system.runtime.numerics\4.3.0\ref\netcore50\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\ref\netstandard1.1\System.Runtime.Numerics.dll +system.runtime.numerics\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.runtime.numerics\4.3.0\ref\win8\_._ +system.runtime.numerics\4.3.0\ref\wpa81\_._ +system.runtime.numerics\4.3.0\ref\xamarinios10\_._ +system.runtime.numerics\4.3.0\ref\xamarinmac20\_._ +system.runtime.numerics\4.3.0\ref\xamarintvos10\_._ +system.runtime.numerics\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.numerics\4.3.0\system.runtime.numerics.4.3.0.nupkg.sha512 +system.runtime.numerics\4.3.0\system.runtime.numerics.nuspec +system.runtime.numerics\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.formatters\4.3.0\dotnet_library_license.txt +system.runtime.serialization.formatters\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.formatters\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.formatters\4.3.0\lib\net46\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\lib\netstandard1.4\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.formatters\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.formatters\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.formatters\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.formatters\4.3.0\ref\net46\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Formatters.dll +system.runtime.serialization.formatters\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.formatters\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.formatters\4.3.0\system.runtime.serialization.formatters.4.3.0.nupkg.sha512 +system.runtime.serialization.formatters\4.3.0\system.runtime.serialization.formatters.nuspec +system.runtime.serialization.formatters\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.json\4.0.2\dotnet_library_license.txt +system.runtime.serialization.json\4.0.2\lib\MonoAndroid10\_._ +system.runtime.serialization.json\4.0.2\lib\MonoTouch10\_._ +system.runtime.serialization.json\4.0.2\lib\net45\_._ +system.runtime.serialization.json\4.0.2\lib\netcore50\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\lib\netstandard1.3\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.json\4.0.2\lib\win8\_._ +system.runtime.serialization.json\4.0.2\lib\wp80\_._ +system.runtime.serialization.json\4.0.2\lib\wpa81\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinios10\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinmac20\_._ +system.runtime.serialization.json\4.0.2\lib\xamarintvos10\_._ +system.runtime.serialization.json\4.0.2\lib\xamarinwatchos10\_._ +system.runtime.serialization.json\4.0.2\ref\MonoAndroid10\_._ +system.runtime.serialization.json\4.0.2\ref\MonoTouch10\_._ +system.runtime.serialization.json\4.0.2\ref\net45\_._ +system.runtime.serialization.json\4.0.2\ref\netcore50\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\ref\netstandard1.0\System.Runtime.Serialization.Json.dll +system.runtime.serialization.json\4.0.2\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.json\4.0.2\ref\win8\_._ +system.runtime.serialization.json\4.0.2\ref\wp80\_._ +system.runtime.serialization.json\4.0.2\ref\wpa81\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinios10\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinmac20\_._ +system.runtime.serialization.json\4.0.2\ref\xamarintvos10\_._ +system.runtime.serialization.json\4.0.2\ref\xamarinwatchos10\_._ +system.runtime.serialization.json\4.0.2\system.runtime.serialization.json.4.0.2.nupkg.sha512 +system.runtime.serialization.json\4.0.2\system.runtime.serialization.json.nuspec +system.runtime.serialization.json\4.0.2\ThirdPartyNotices.txt +system.runtime.serialization.primitives\4.1.1\dotnet_library_license.txt +system.runtime.serialization.primitives\4.1.1\lib\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.1.1\lib\MonoTouch10\_._ +system.runtime.serialization.primitives\4.1.1\lib\net45\_._ +system.runtime.serialization.primitives\4.1.1\lib\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.1.1\lib\win8\_._ +system.runtime.serialization.primitives\4.1.1\lib\wp80\_._ +system.runtime.serialization.primitives\4.1.1\lib\wpa81\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinios10\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinmac20\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarintvos10\_._ +system.runtime.serialization.primitives\4.1.1\lib\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.1.1\ref\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.1.1\ref\MonoTouch10\_._ +system.runtime.serialization.primitives\4.1.1\ref\net45\_._ +system.runtime.serialization.primitives\4.1.1\ref\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.1.1\ref\win8\_._ +system.runtime.serialization.primitives\4.1.1\ref\wp80\_._ +system.runtime.serialization.primitives\4.1.1\ref\wpa81\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinios10\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinmac20\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarintvos10\_._ +system.runtime.serialization.primitives\4.1.1\ref\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.1.1\runtimes\aot\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.1.1\system.runtime.serialization.primitives.4.1.1.nupkg.sha512 +system.runtime.serialization.primitives\4.1.1\system.runtime.serialization.primitives.nuspec +system.runtime.serialization.primitives\4.1.1\ThirdPartyNotices.txt +system.runtime.serialization.primitives\4.3.0\dotnet_library_license.txt +system.runtime.serialization.primitives\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.primitives\4.3.0\lib\net45\_._ +system.runtime.serialization.primitives\4.3.0\lib\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.3.0\lib\win8\_._ +system.runtime.serialization.primitives\4.3.0\lib\wp80\_._ +system.runtime.serialization.primitives\4.3.0\lib\wpa81\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.primitives\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.primitives\4.3.0\ref\net45\_._ +system.runtime.serialization.primitives\4.3.0\ref\net46\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.primitives\4.3.0\ref\win8\_._ +system.runtime.serialization.primitives\4.3.0\ref\wp80\_._ +system.runtime.serialization.primitives\4.3.0\ref\wpa81\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.primitives\4.3.0\runtimes\aot\lib\netcore50\System.Runtime.Serialization.Primitives.dll +system.runtime.serialization.primitives\4.3.0\system.runtime.serialization.primitives.4.3.0.nupkg.sha512 +system.runtime.serialization.primitives\4.3.0\system.runtime.serialization.primitives.nuspec +system.runtime.serialization.primitives\4.3.0\ThirdPartyNotices.txt +system.runtime.serialization.xml\4.3.0\dotnet_library_license.txt +system.runtime.serialization.xml\4.3.0\lib\MonoAndroid10\_._ +system.runtime.serialization.xml\4.3.0\lib\MonoTouch10\_._ +system.runtime.serialization.xml\4.3.0\lib\net45\_._ +system.runtime.serialization.xml\4.3.0\lib\net46\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\netcore50\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.xml\4.3.0\lib\win8\_._ +system.runtime.serialization.xml\4.3.0\lib\wp80\_._ +system.runtime.serialization.xml\4.3.0\lib\wpa81\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinios10\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinmac20\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarintvos10\_._ +system.runtime.serialization.xml\4.3.0\lib\xamarinwatchos10\_._ +system.runtime.serialization.xml\4.3.0\ref\MonoAndroid10\_._ +system.runtime.serialization.xml\4.3.0\ref\MonoTouch10\_._ +system.runtime.serialization.xml\4.3.0\ref\net45\_._ +system.runtime.serialization.xml\4.3.0\ref\net46\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netcore50\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\netstandard1.3\System.Runtime.Serialization.Xml.dll +system.runtime.serialization.xml\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.runtime.serialization.xml\4.3.0\ref\win8\_._ +system.runtime.serialization.xml\4.3.0\ref\wp80\_._ +system.runtime.serialization.xml\4.3.0\ref\wpa81\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinios10\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinmac20\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarintvos10\_._ +system.runtime.serialization.xml\4.3.0\ref\xamarinwatchos10\_._ +system.runtime.serialization.xml\4.3.0\system.runtime.serialization.xml.4.3.0.nupkg.sha512 +system.runtime.serialization.xml\4.3.0\system.runtime.serialization.xml.nuspec +system.runtime.serialization.xml\4.3.0\ThirdPartyNotices.txt +system.runtime\4.1.0\dotnet_library_license.txt +system.runtime\4.1.0\lib\MonoAndroid10\_._ +system.runtime\4.1.0\lib\MonoTouch10\_._ +system.runtime\4.1.0\lib\net45\_._ +system.runtime\4.1.0\lib\net462\System.Runtime.dll +system.runtime\4.1.0\lib\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.1.0\lib\win8\_._ +system.runtime\4.1.0\lib\wp80\_._ +system.runtime\4.1.0\lib\wpa81\_._ +system.runtime\4.1.0\lib\xamarinios10\_._ +system.runtime\4.1.0\lib\xamarinmac20\_._ +system.runtime\4.1.0\lib\xamarintvos10\_._ +system.runtime\4.1.0\lib\xamarinwatchos10\_._ +system.runtime\4.1.0\ref\MonoAndroid10\_._ +system.runtime\4.1.0\ref\MonoTouch10\_._ +system.runtime\4.1.0\ref\net45\_._ +system.runtime\4.1.0\ref\net462\System.Runtime.dll +system.runtime\4.1.0\ref\netcore50\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.0\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.2\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.3\System.Runtime.dll +system.runtime\4.1.0\ref\netstandard1.5\System.Runtime.dll +system.runtime\4.1.0\ref\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.1.0\ref\win8\_._ +system.runtime\4.1.0\ref\wp80\_._ +system.runtime\4.1.0\ref\wpa81\_._ +system.runtime\4.1.0\ref\xamarinios10\_._ +system.runtime\4.1.0\ref\xamarinmac20\_._ +system.runtime\4.1.0\ref\xamarintvos10\_._ +system.runtime\4.1.0\ref\xamarinwatchos10\_._ +system.runtime\4.1.0\system.runtime.4.1.0.nupkg.sha512 +system.runtime\4.1.0\system.runtime.nuspec +system.runtime\4.1.0\ThirdPartyNotices.txt +system.runtime\4.3.0\dotnet_library_license.txt +system.runtime\4.3.0\lib\MonoAndroid10\_._ +system.runtime\4.3.0\lib\MonoTouch10\_._ +system.runtime\4.3.0\lib\net45\_._ +system.runtime\4.3.0\lib\net462\System.Runtime.dll +system.runtime\4.3.0\lib\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.3.0\lib\win8\_._ +system.runtime\4.3.0\lib\wp80\_._ +system.runtime\4.3.0\lib\wpa81\_._ +system.runtime\4.3.0\lib\xamarinios10\_._ +system.runtime\4.3.0\lib\xamarinmac20\_._ +system.runtime\4.3.0\lib\xamarintvos10\_._ +system.runtime\4.3.0\lib\xamarinwatchos10\_._ +system.runtime\4.3.0\ref\MonoAndroid10\_._ +system.runtime\4.3.0\ref\MonoTouch10\_._ +system.runtime\4.3.0\ref\net45\_._ +system.runtime\4.3.0\ref\net462\System.Runtime.dll +system.runtime\4.3.0\ref\netcore50\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.0\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.2\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.3\System.Runtime.dll +system.runtime\4.3.0\ref\netstandard1.5\System.Runtime.dll +system.runtime\4.3.0\ref\portable-net45+win8+wp80+wpa81\_._ +system.runtime\4.3.0\ref\win8\_._ +system.runtime\4.3.0\ref\wp80\_._ +system.runtime\4.3.0\ref\wpa81\_._ +system.runtime\4.3.0\ref\xamarinios10\_._ +system.runtime\4.3.0\ref\xamarinmac20\_._ +system.runtime\4.3.0\ref\xamarintvos10\_._ +system.runtime\4.3.0\ref\xamarinwatchos10\_._ +system.runtime\4.3.0\system.runtime.4.3.0.nupkg.sha512 +system.runtime\4.3.0\system.runtime.nuspec +system.runtime\4.3.0\ThirdPartyNotices.txt +system.security.accesscontrol\4.5.0\.signature.p7s +system.security.accesscontrol\4.5.0\lib\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\netstandard2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\lib\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\LICENSE.TXT +system.security.accesscontrol\4.5.0\ref\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\netstandard2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\ref\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\runtimes\win\lib\net46\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\net461\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.AccessControl.dll +system.security.accesscontrol\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.accesscontrol\4.5.0\system.security.accesscontrol.4.5.0.nupkg.sha512 +system.security.accesscontrol\4.5.0\system.security.accesscontrol.nuspec +system.security.accesscontrol\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.accesscontrol\4.5.0\useSharedDesignerContext.txt +system.security.accesscontrol\4.5.0\version.txt +system.security.claims\4.3.0\dotnet_library_license.txt +system.security.claims\4.3.0\lib\MonoAndroid10\_._ +system.security.claims\4.3.0\lib\MonoTouch10\_._ +system.security.claims\4.3.0\lib\net46\System.Security.Claims.dll +system.security.claims\4.3.0\lib\netstandard1.3\System.Security.Claims.dll +system.security.claims\4.3.0\lib\xamarinios10\_._ +system.security.claims\4.3.0\lib\xamarinmac20\_._ +system.security.claims\4.3.0\lib\xamarintvos10\_._ +system.security.claims\4.3.0\lib\xamarinwatchos10\_._ +system.security.claims\4.3.0\ref\MonoAndroid10\_._ +system.security.claims\4.3.0\ref\MonoTouch10\_._ +system.security.claims\4.3.0\ref\net46\System.Security.Claims.dll +system.security.claims\4.3.0\ref\netstandard1.3\System.Security.Claims.dll +system.security.claims\4.3.0\ref\xamarinios10\_._ +system.security.claims\4.3.0\ref\xamarinmac20\_._ +system.security.claims\4.3.0\ref\xamarintvos10\_._ +system.security.claims\4.3.0\ref\xamarinwatchos10\_._ +system.security.claims\4.3.0\system.security.claims.4.3.0.nupkg.sha512 +system.security.claims\4.3.0\system.security.claims.nuspec +system.security.claims\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.algorithms\4.2.0\dotnet_library_license.txt +system.security.cryptography.algorithms\4.2.0\lib\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.2.0\lib\MonoTouch10\_._ +system.security.cryptography.algorithms\4.2.0\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\lib\xamarinios10\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarinmac20\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarintvos10\_._ +system.security.cryptography.algorithms\4.2.0\lib\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.2.0\ref\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.2.0\ref\MonoTouch10\_._ +system.security.cryptography.algorithms\4.2.0\ref\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\ref\xamarinios10\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarinmac20\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarintvos10\_._ +system.security.cryptography.algorithms\4.2.0\ref\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.2.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\netcore50\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.2.0\system.security.cryptography.algorithms.4.2.0.nupkg.sha512 +system.security.cryptography.algorithms\4.2.0\system.security.cryptography.algorithms.nuspec +system.security.cryptography.algorithms\4.2.0\ThirdPartyNotices.txt +system.security.cryptography.algorithms\4.3.0\dotnet_library_license.txt +system.security.cryptography.algorithms\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.algorithms\4.3.0\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.algorithms\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.algorithms\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.algorithms\4.3.0\ref\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.4\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.algorithms\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.algorithms\4.3.0\runtimes\osx\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\net463\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\netcore50\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Algorithms.dll +system.security.cryptography.algorithms\4.3.0\system.security.cryptography.algorithms.4.3.0.nupkg.sha512 +system.security.cryptography.algorithms\4.3.0\system.security.cryptography.algorithms.nuspec +system.security.cryptography.algorithms\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.2.0\dotnet_library_license.txt +system.security.cryptography.cng\4.2.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.2.0\system.security.cryptography.cng.4.2.0.nupkg.sha512 +system.security.cryptography.cng\4.2.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.2.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.3.0\dotnet_library_license.txt +system.security.cryptography.cng\4.3.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\net463\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.3.0\system.security.cryptography.cng.4.3.0.nupkg.sha512 +system.security.cryptography.cng\4.3.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.cng\4.5.0\.signature.p7s +system.security.cryptography.cng\4.5.0\lib\MonoAndroid10\_._ +system.security.cryptography.cng\4.5.0\lib\MonoTouch10\_._ +system.security.cryptography.cng\4.5.0\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\lib\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinios10\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinmac20\_._ +system.security.cryptography.cng\4.5.0\lib\xamarintvos10\_._ +system.security.cryptography.cng\4.5.0\lib\xamarinwatchos10\_._ +system.security.cryptography.cng\4.5.0\LICENSE.TXT +system.security.cryptography.cng\4.5.0\ref\MonoAndroid10\_._ +system.security.cryptography.cng\4.5.0\ref\MonoTouch10\_._ +system.security.cryptography.cng\4.5.0\ref\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netcoreapp2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.3\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\ref\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinios10\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinmac20\_._ +system.security.cryptography.cng\4.5.0\ref\xamarintvos10\_._ +system.security.cryptography.cng\4.5.0\ref\xamarinwatchos10\_._ +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net46\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net461\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net462\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\net47\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netcoreapp2.1\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netstandard1.4\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.Cng.dll +system.security.cryptography.cng\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.cryptography.cng\4.5.0\system.security.cryptography.cng.4.5.0.nupkg.sha512 +system.security.cryptography.cng\4.5.0\system.security.cryptography.cng.nuspec +system.security.cryptography.cng\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.cng\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.cng\4.5.0\version.txt +system.security.cryptography.csp\4.0.0\dotnet_library_license.txt +system.security.cryptography.csp\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.csp\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.csp\4.0.0\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.csp\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.csp\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.csp\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.csp\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.csp\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.csp\4.0.0\ref\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.csp\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.csp\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.csp\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.csp\4.0.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\runtimes\win\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\runtimes\win\lib\netcore50\_._ +system.security.cryptography.csp\4.0.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.0.0\system.security.cryptography.csp.4.0.0.nupkg.sha512 +system.security.cryptography.csp\4.0.0\system.security.cryptography.csp.nuspec +system.security.cryptography.csp\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.csp\4.3.0\dotnet_library_license.txt +system.security.cryptography.csp\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.csp\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.csp\4.3.0\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.csp\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.csp\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.csp\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.csp\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.csp\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.csp\4.3.0\ref\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.csp\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.csp\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.csp\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.csp\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\runtimes\win\lib\netcore50\_._ +system.security.cryptography.csp\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Csp.dll +system.security.cryptography.csp\4.3.0\system.security.cryptography.csp.4.3.0.nupkg.sha512 +system.security.cryptography.csp\4.3.0\system.security.cryptography.csp.nuspec +system.security.cryptography.csp\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.encoding\4.0.0\dotnet_library_license.txt +system.security.cryptography.encoding\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.encoding\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.encoding\4.0.0\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.encoding\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.encoding\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.encoding\4.0.0\ref\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.encoding\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.0.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\runtimes\win\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.0.0\system.security.cryptography.encoding.4.0.0.nupkg.sha512 +system.security.cryptography.encoding\4.0.0\system.security.cryptography.encoding.nuspec +system.security.cryptography.encoding\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.encoding\4.3.0\dotnet_library_license.txt +system.security.cryptography.encoding\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.encoding\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.encoding\4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.encoding\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.encoding\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.encoding\4.3.0\ref\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.encoding\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.encoding\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Encoding.dll +system.security.cryptography.encoding\4.3.0\system.security.cryptography.encoding.4.3.0.nupkg.sha512 +system.security.cryptography.encoding\4.3.0\system.security.cryptography.encoding.nuspec +system.security.cryptography.encoding\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.openssl\4.0.0\dotnet_library_license.txt +system.security.cryptography.openssl\4.0.0\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.0.0\system.security.cryptography.openssl.4.0.0.nupkg.sha512 +system.security.cryptography.openssl\4.0.0\system.security.cryptography.openssl.nuspec +system.security.cryptography.openssl\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.openssl\4.3.0\dotnet_library_license.txt +system.security.cryptography.openssl\4.3.0\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\ref\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.OpenSsl.dll +system.security.cryptography.openssl\4.3.0\system.security.cryptography.openssl.4.3.0.nupkg.sha512 +system.security.cryptography.openssl\4.3.0\system.security.cryptography.openssl.nuspec +system.security.cryptography.openssl\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.pkcs\4.5.0\.signature.p7s +system.security.cryptography.pkcs\4.5.0\lib\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\LICENSE.TXT +system.security.cryptography.pkcs\4.5.0\ref\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\net46\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\net461\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netcoreapp2.1\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.Pkcs.dll +system.security.cryptography.pkcs\4.5.0\system.security.cryptography.pkcs.4.5.0.nupkg.sha512 +system.security.cryptography.pkcs\4.5.0\system.security.cryptography.pkcs.nuspec +system.security.cryptography.pkcs\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.pkcs\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.pkcs\4.5.0\version.txt +system.security.cryptography.primitives\4.0.0\dotnet_library_license.txt +system.security.cryptography.primitives\4.0.0\lib\MonoAndroid10\_._ +system.security.cryptography.primitives\4.0.0\lib\MonoTouch10\_._ +system.security.cryptography.primitives\4.0.0\lib\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\lib\xamarinios10\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarinmac20\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarintvos10\_._ +system.security.cryptography.primitives\4.0.0\lib\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.0.0\ref\MonoAndroid10\_._ +system.security.cryptography.primitives\4.0.0\ref\MonoTouch10\_._ +system.security.cryptography.primitives\4.0.0\ref\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.0.0\ref\xamarinios10\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarinmac20\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarintvos10\_._ +system.security.cryptography.primitives\4.0.0\ref\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.0.0\system.security.cryptography.primitives.4.0.0.nupkg.sha512 +system.security.cryptography.primitives\4.0.0\system.security.cryptography.primitives.nuspec +system.security.cryptography.primitives\4.0.0\ThirdPartyNotices.txt +system.security.cryptography.primitives\4.3.0\dotnet_library_license.txt +system.security.cryptography.primitives\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.primitives\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.primitives\4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\lib\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.primitives\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.primitives\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.primitives\4.3.0\ref\net46\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\ref\netstandard1.3\System.Security.Cryptography.Primitives.dll +system.security.cryptography.primitives\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.primitives\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.primitives\4.3.0\system.security.cryptography.primitives.4.3.0.nupkg.sha512 +system.security.cryptography.primitives\4.3.0\system.security.cryptography.primitives.nuspec +system.security.cryptography.primitives\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.x509certificates\4.1.0\dotnet_library_license.txt +system.security.cryptography.x509certificates\4.1.0\lib\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\lib\xamarinios10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.1.0\lib\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\ref\xamarinios10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.1.0\ref\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.1.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\netcore50\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.1.0\system.security.cryptography.x509certificates.4.1.0.nupkg.sha512 +system.security.cryptography.x509certificates\4.1.0\system.security.cryptography.x509certificates.nuspec +system.security.cryptography.x509certificates\4.1.0\ThirdPartyNotices.txt +system.security.cryptography.x509certificates\4.3.0\dotnet_library_license.txt +system.security.cryptography.x509certificates\4.3.0\lib\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\lib\xamarinios10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.3.0\lib\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\MonoAndroid10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\MonoTouch10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\netstandard1.3\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\netstandard1.4\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\ref\xamarinios10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarinmac20\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarintvos10\_._ +system.security.cryptography.x509certificates\4.3.0\ref\xamarinwatchos10\_._ +system.security.cryptography.x509certificates\4.3.0\runtimes\unix\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\net46\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\net461\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\netcore50\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\runtimes\win\lib\netstandard1.6\System.Security.Cryptography.X509Certificates.dll +system.security.cryptography.x509certificates\4.3.0\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512 +system.security.cryptography.x509certificates\4.3.0\system.security.cryptography.x509certificates.nuspec +system.security.cryptography.x509certificates\4.3.0\ThirdPartyNotices.txt +system.security.cryptography.xml\4.5.0\.signature.p7s +system.security.cryptography.xml\4.5.0\lib\net461\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\lib\netstandard2.0\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\LICENSE.TXT +system.security.cryptography.xml\4.5.0\ref\net461\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\ref\netstandard2.0\System.Security.Cryptography.Xml.dll +system.security.cryptography.xml\4.5.0\system.security.cryptography.xml.4.5.0.nupkg.sha512 +system.security.cryptography.xml\4.5.0\system.security.cryptography.xml.nuspec +system.security.cryptography.xml\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.cryptography.xml\4.5.0\useSharedDesignerContext.txt +system.security.cryptography.xml\4.5.0\version.txt +system.security.permissions\4.5.0\.signature.p7s +system.security.permissions\4.5.0\lib\net461\System.Security.Permissions.dll +system.security.permissions\4.5.0\lib\netstandard2.0\System.Security.Permissions.dll +system.security.permissions\4.5.0\LICENSE.TXT +system.security.permissions\4.5.0\ref\net461\System.Security.Permissions.dll +system.security.permissions\4.5.0\ref\netstandard2.0\System.Security.Permissions.dll +system.security.permissions\4.5.0\system.security.permissions.4.5.0.nupkg.sha512 +system.security.permissions\4.5.0\system.security.permissions.nuspec +system.security.permissions\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.permissions\4.5.0\useSharedDesignerContext.txt +system.security.permissions\4.5.0\version.txt +system.security.principal.windows\4.3.0\dotnet_library_license.txt +system.security.principal.windows\4.3.0\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\ref\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\ref\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\unix\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\win\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\runtimes\win\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.3.0\system.security.principal.windows.4.3.0.nupkg.sha512 +system.security.principal.windows\4.3.0\system.security.principal.windows.nuspec +system.security.principal.windows\4.3.0\ThirdPartyNotices.txt +system.security.principal.windows\4.5.0\.signature.p7s +system.security.principal.windows\4.5.0\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\netstandard2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\lib\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\LICENSE.TXT +system.security.principal.windows\4.5.0\ref\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\netstandard2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\ref\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\runtimes\unix\lib\netcoreapp2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\net46\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\net461\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\netstandard1.3\System.Security.Principal.Windows.dll +system.security.principal.windows\4.5.0\runtimes\win\lib\uap10.0.16299\_._ +system.security.principal.windows\4.5.0\system.security.principal.windows.4.5.0.nupkg.sha512 +system.security.principal.windows\4.5.0\system.security.principal.windows.nuspec +system.security.principal.windows\4.5.0\THIRD-PARTY-NOTICES.TXT +system.security.principal.windows\4.5.0\useSharedDesignerContext.txt +system.security.principal.windows\4.5.0\version.txt +system.security.principal\4.3.0\dotnet_library_license.txt +system.security.principal\4.3.0\lib\MonoAndroid10\_._ +system.security.principal\4.3.0\lib\MonoTouch10\_._ +system.security.principal\4.3.0\lib\net45\_._ +system.security.principal\4.3.0\lib\netcore50\System.Security.Principal.dll +system.security.principal\4.3.0\lib\netstandard1.0\System.Security.Principal.dll +system.security.principal\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.security.principal\4.3.0\lib\win8\_._ +system.security.principal\4.3.0\lib\wp80\_._ +system.security.principal\4.3.0\lib\wpa81\_._ +system.security.principal\4.3.0\lib\xamarinios10\_._ +system.security.principal\4.3.0\lib\xamarinmac20\_._ +system.security.principal\4.3.0\lib\xamarintvos10\_._ +system.security.principal\4.3.0\lib\xamarinwatchos10\_._ +system.security.principal\4.3.0\ref\MonoAndroid10\_._ +system.security.principal\4.3.0\ref\MonoTouch10\_._ +system.security.principal\4.3.0\ref\net45\_._ +system.security.principal\4.3.0\ref\netcore50\System.Security.Principal.dll +system.security.principal\4.3.0\ref\netstandard1.0\System.Security.Principal.dll +system.security.principal\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.security.principal\4.3.0\ref\win8\_._ +system.security.principal\4.3.0\ref\wp80\_._ +system.security.principal\4.3.0\ref\wpa81\_._ +system.security.principal\4.3.0\ref\xamarinios10\_._ +system.security.principal\4.3.0\ref\xamarinmac20\_._ +system.security.principal\4.3.0\ref\xamarintvos10\_._ +system.security.principal\4.3.0\ref\xamarinwatchos10\_._ +system.security.principal\4.3.0\system.security.principal.4.3.0.nupkg.sha512 +system.security.principal\4.3.0\system.security.principal.nuspec +system.security.principal\4.3.0\ThirdPartyNotices.txt +system.spatial\5.8.2\lib\net40\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\System.Spatial.dll +system.spatial\5.8.2\lib\net40\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\net40\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\System.Spatial.dll +system.spatial\5.8.2\lib\netstandard1.1\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\netstandard1.1\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\System.Spatial.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net40+sl5+wp8+win8+wpa\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\System.Spatial.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\portable-net45+wp8+win8+wpa\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\de\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\es\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\fr\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\it\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ja\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ko\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\ru\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\System.Spatial.dll +system.spatial\5.8.2\lib\sl4\zh-Hans\System.Spatial.resources.dll +system.spatial\5.8.2\lib\sl4\zh-Hant\System.Spatial.resources.dll +system.spatial\5.8.2\system.spatial.5.8.2.nupkg.sha512 +system.spatial\5.8.2\system.spatial.nuspec +system.text.encoding.codepages\4.3.0\dotnet_library_license.txt +system.text.encoding.codepages\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding.codepages\4.3.0\lib\MonoTouch10\_._ +system.text.encoding.codepages\4.3.0\lib\net46\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\lib\xamarinios10\_._ +system.text.encoding.codepages\4.3.0\lib\xamarinmac20\_._ +system.text.encoding.codepages\4.3.0\lib\xamarintvos10\_._ +system.text.encoding.codepages\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding.codepages\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding.codepages\4.3.0\ref\MonoTouch10\_._ +system.text.encoding.codepages\4.3.0\ref\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\ref\xamarinios10\_._ +system.text.encoding.codepages\4.3.0\ref\xamarinmac20\_._ +system.text.encoding.codepages\4.3.0\ref\xamarintvos10\_._ +system.text.encoding.codepages\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding.codepages\4.3.0\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.3.0\system.text.encoding.codepages.4.3.0.nupkg.sha512 +system.text.encoding.codepages\4.3.0\system.text.encoding.codepages.nuspec +system.text.encoding.codepages\4.3.0\ThirdPartyNotices.txt +system.text.encoding.codepages\4.5.0\.signature.p7s +system.text.encoding.codepages\4.5.0\lib\MonoAndroid10\_._ +system.text.encoding.codepages\4.5.0\lib\MonoTouch10\_._ +system.text.encoding.codepages\4.5.0\lib\net46\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\net461\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\lib\xamarinios10\_._ +system.text.encoding.codepages\4.5.0\lib\xamarinmac20\_._ +system.text.encoding.codepages\4.5.0\lib\xamarintvos10\_._ +system.text.encoding.codepages\4.5.0\lib\xamarinwatchos10\_._ +system.text.encoding.codepages\4.5.0\LICENSE.TXT +system.text.encoding.codepages\4.5.0\ref\MonoAndroid10\_._ +system.text.encoding.codepages\4.5.0\ref\MonoTouch10\_._ +system.text.encoding.codepages\4.5.0\ref\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\ref\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\ref\xamarinios10\_._ +system.text.encoding.codepages\4.5.0\ref\xamarinmac20\_._ +system.text.encoding.codepages\4.5.0\ref\xamarintvos10\_._ +system.text.encoding.codepages\4.5.0\ref\xamarinwatchos10\_._ +system.text.encoding.codepages\4.5.0\runtimes\win\lib\net461\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\runtimes\win\lib\netstandard2.0\System.Text.Encoding.CodePages.dll +system.text.encoding.codepages\4.5.0\system.text.encoding.codepages.4.5.0.nupkg.sha512 +system.text.encoding.codepages\4.5.0\system.text.encoding.codepages.nuspec +system.text.encoding.codepages\4.5.0\THIRD-PARTY-NOTICES.TXT +system.text.encoding.codepages\4.5.0\useSharedDesignerContext.txt +system.text.encoding.codepages\4.5.0\version.txt +system.text.encoding.extensions\4.0.11\dotnet_library_license.txt +system.text.encoding.extensions\4.0.11\lib\MonoAndroid10\_._ +system.text.encoding.extensions\4.0.11\lib\MonoTouch10\_._ +system.text.encoding.extensions\4.0.11\lib\net45\_._ +system.text.encoding.extensions\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.0.11\lib\win8\_._ +system.text.encoding.extensions\4.0.11\lib\wp80\_._ +system.text.encoding.extensions\4.0.11\lib\wpa81\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinios10\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinmac20\_._ +system.text.encoding.extensions\4.0.11\lib\xamarintvos10\_._ +system.text.encoding.extensions\4.0.11\lib\xamarinwatchos10\_._ +system.text.encoding.extensions\4.0.11\ref\MonoAndroid10\_._ +system.text.encoding.extensions\4.0.11\ref\MonoTouch10\_._ +system.text.encoding.extensions\4.0.11\ref\net45\_._ +system.text.encoding.extensions\4.0.11\ref\netcore50\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\netstandard1.0\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\netstandard1.3\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.0.11\ref\win8\_._ +system.text.encoding.extensions\4.0.11\ref\wp80\_._ +system.text.encoding.extensions\4.0.11\ref\wpa81\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinios10\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinmac20\_._ +system.text.encoding.extensions\4.0.11\ref\xamarintvos10\_._ +system.text.encoding.extensions\4.0.11\ref\xamarinwatchos10\_._ +system.text.encoding.extensions\4.0.11\system.text.encoding.extensions.4.0.11.nupkg.sha512 +system.text.encoding.extensions\4.0.11\system.text.encoding.extensions.nuspec +system.text.encoding.extensions\4.0.11\ThirdPartyNotices.txt +system.text.encoding.extensions\4.3.0\dotnet_library_license.txt +system.text.encoding.extensions\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding.extensions\4.3.0\lib\MonoTouch10\_._ +system.text.encoding.extensions\4.3.0\lib\net45\_._ +system.text.encoding.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.3.0\lib\win8\_._ +system.text.encoding.extensions\4.3.0\lib\wp80\_._ +system.text.encoding.extensions\4.3.0\lib\wpa81\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinios10\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinmac20\_._ +system.text.encoding.extensions\4.3.0\lib\xamarintvos10\_._ +system.text.encoding.extensions\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding.extensions\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding.extensions\4.3.0\ref\MonoTouch10\_._ +system.text.encoding.extensions\4.3.0\ref\net45\_._ +system.text.encoding.extensions\4.3.0\ref\netcore50\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\netstandard1.0\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\netstandard1.3\System.Text.Encoding.Extensions.dll +system.text.encoding.extensions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding.extensions\4.3.0\ref\win8\_._ +system.text.encoding.extensions\4.3.0\ref\wp80\_._ +system.text.encoding.extensions\4.3.0\ref\wpa81\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinios10\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinmac20\_._ +system.text.encoding.extensions\4.3.0\ref\xamarintvos10\_._ +system.text.encoding.extensions\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding.extensions\4.3.0\system.text.encoding.extensions.4.3.0.nupkg.sha512 +system.text.encoding.extensions\4.3.0\system.text.encoding.extensions.nuspec +system.text.encoding.extensions\4.3.0\ThirdPartyNotices.txt +system.text.encoding\4.0.11\dotnet_library_license.txt +system.text.encoding\4.0.11\lib\MonoAndroid10\_._ +system.text.encoding\4.0.11\lib\MonoTouch10\_._ +system.text.encoding\4.0.11\lib\net45\_._ +system.text.encoding\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.0.11\lib\win8\_._ +system.text.encoding\4.0.11\lib\wp80\_._ +system.text.encoding\4.0.11\lib\wpa81\_._ +system.text.encoding\4.0.11\lib\xamarinios10\_._ +system.text.encoding\4.0.11\lib\xamarinmac20\_._ +system.text.encoding\4.0.11\lib\xamarintvos10\_._ +system.text.encoding\4.0.11\lib\xamarinwatchos10\_._ +system.text.encoding\4.0.11\ref\MonoAndroid10\_._ +system.text.encoding\4.0.11\ref\MonoTouch10\_._ +system.text.encoding\4.0.11\ref\net45\_._ +system.text.encoding\4.0.11\ref\netcore50\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\netstandard1.0\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\netstandard1.3\System.Text.Encoding.dll +system.text.encoding\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.0.11\ref\win8\_._ +system.text.encoding\4.0.11\ref\wp80\_._ +system.text.encoding\4.0.11\ref\wpa81\_._ +system.text.encoding\4.0.11\ref\xamarinios10\_._ +system.text.encoding\4.0.11\ref\xamarinmac20\_._ +system.text.encoding\4.0.11\ref\xamarintvos10\_._ +system.text.encoding\4.0.11\ref\xamarinwatchos10\_._ +system.text.encoding\4.0.11\system.text.encoding.4.0.11.nupkg.sha512 +system.text.encoding\4.0.11\system.text.encoding.nuspec +system.text.encoding\4.0.11\ThirdPartyNotices.txt +system.text.encoding\4.3.0\dotnet_library_license.txt +system.text.encoding\4.3.0\lib\MonoAndroid10\_._ +system.text.encoding\4.3.0\lib\MonoTouch10\_._ +system.text.encoding\4.3.0\lib\net45\_._ +system.text.encoding\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.3.0\lib\win8\_._ +system.text.encoding\4.3.0\lib\wp80\_._ +system.text.encoding\4.3.0\lib\wpa81\_._ +system.text.encoding\4.3.0\lib\xamarinios10\_._ +system.text.encoding\4.3.0\lib\xamarinmac20\_._ +system.text.encoding\4.3.0\lib\xamarintvos10\_._ +system.text.encoding\4.3.0\lib\xamarinwatchos10\_._ +system.text.encoding\4.3.0\ref\MonoAndroid10\_._ +system.text.encoding\4.3.0\ref\MonoTouch10\_._ +system.text.encoding\4.3.0\ref\net45\_._ +system.text.encoding\4.3.0\ref\netcore50\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\netstandard1.0\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\netstandard1.3\System.Text.Encoding.dll +system.text.encoding\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.encoding\4.3.0\ref\win8\_._ +system.text.encoding\4.3.0\ref\wp80\_._ +system.text.encoding\4.3.0\ref\wpa81\_._ +system.text.encoding\4.3.0\ref\xamarinios10\_._ +system.text.encoding\4.3.0\ref\xamarinmac20\_._ +system.text.encoding\4.3.0\ref\xamarintvos10\_._ +system.text.encoding\4.3.0\ref\xamarinwatchos10\_._ +system.text.encoding\4.3.0\system.text.encoding.4.3.0.nupkg.sha512 +system.text.encoding\4.3.0\system.text.encoding.nuspec +system.text.encoding\4.3.0\ThirdPartyNotices.txt +system.text.encodings.web\4.3.1\dotnet_library_license.txt +system.text.encodings.web\4.3.1\lib\netstandard1.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.3.1\system.text.encodings.web.4.3.1.nupkg.sha512 +system.text.encodings.web\4.3.1\system.text.encodings.web.nuspec +system.text.encodings.web\4.3.1\ThirdPartyNotices.txt +system.text.encodings.web\4.5.0\.signature.p7s +system.text.encodings.web\4.5.0\lib\netstandard1.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.5.0\lib\netstandard2.0\System.Text.Encodings.Web.dll +system.text.encodings.web\4.5.0\LICENSE.TXT +system.text.encodings.web\4.5.0\system.text.encodings.web.4.5.0.nupkg.sha512 +system.text.encodings.web\4.5.0\system.text.encodings.web.nuspec +system.text.encodings.web\4.5.0\THIRD-PARTY-NOTICES.TXT +system.text.encodings.web\4.5.0\useSharedDesignerContext.txt +system.text.encodings.web\4.5.0\version.txt +system.text.regularexpressions\4.1.0\dotnet_library_license.txt +system.text.regularexpressions\4.1.0\lib\MonoAndroid10\_._ +system.text.regularexpressions\4.1.0\lib\MonoTouch10\_._ +system.text.regularexpressions\4.1.0\lib\net45\_._ +system.text.regularexpressions\4.1.0\lib\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.1.0\lib\win8\_._ +system.text.regularexpressions\4.1.0\lib\wp80\_._ +system.text.regularexpressions\4.1.0\lib\wpa81\_._ +system.text.regularexpressions\4.1.0\lib\xamarinios10\_._ +system.text.regularexpressions\4.1.0\lib\xamarinmac20\_._ +system.text.regularexpressions\4.1.0\lib\xamarintvos10\_._ +system.text.regularexpressions\4.1.0\lib\xamarinwatchos10\_._ +system.text.regularexpressions\4.1.0\ref\MonoAndroid10\_._ +system.text.regularexpressions\4.1.0\ref\MonoTouch10\_._ +system.text.regularexpressions\4.1.0\ref\net45\_._ +system.text.regularexpressions\4.1.0\ref\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.0\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.3\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.1.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.1.0\ref\win8\_._ +system.text.regularexpressions\4.1.0\ref\wp80\_._ +system.text.regularexpressions\4.1.0\ref\wpa81\_._ +system.text.regularexpressions\4.1.0\ref\xamarinios10\_._ +system.text.regularexpressions\4.1.0\ref\xamarinmac20\_._ +system.text.regularexpressions\4.1.0\ref\xamarintvos10\_._ +system.text.regularexpressions\4.1.0\ref\xamarinwatchos10\_._ +system.text.regularexpressions\4.1.0\system.text.regularexpressions.4.1.0.nupkg.sha512 +system.text.regularexpressions\4.1.0\system.text.regularexpressions.nuspec +system.text.regularexpressions\4.1.0\ThirdPartyNotices.txt +system.text.regularexpressions\4.3.0\dotnet_library_license.txt +system.text.regularexpressions\4.3.0\lib\MonoAndroid10\_._ +system.text.regularexpressions\4.3.0\lib\MonoTouch10\_._ +system.text.regularexpressions\4.3.0\lib\net45\_._ +system.text.regularexpressions\4.3.0\lib\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.3.0\lib\win8\_._ +system.text.regularexpressions\4.3.0\lib\wp80\_._ +system.text.regularexpressions\4.3.0\lib\wpa81\_._ +system.text.regularexpressions\4.3.0\lib\xamarinios10\_._ +system.text.regularexpressions\4.3.0\lib\xamarinmac20\_._ +system.text.regularexpressions\4.3.0\lib\xamarintvos10\_._ +system.text.regularexpressions\4.3.0\lib\xamarinwatchos10\_._ +system.text.regularexpressions\4.3.0\ref\MonoAndroid10\_._ +system.text.regularexpressions\4.3.0\ref\MonoTouch10\_._ +system.text.regularexpressions\4.3.0\ref\net45\_._ +system.text.regularexpressions\4.3.0\ref\net463\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netcore50\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netcoreapp1.1\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.0\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.3\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\netstandard1.6\System.Text.RegularExpressions.dll +system.text.regularexpressions\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.text.regularexpressions\4.3.0\ref\win8\_._ +system.text.regularexpressions\4.3.0\ref\wp80\_._ +system.text.regularexpressions\4.3.0\ref\wpa81\_._ +system.text.regularexpressions\4.3.0\ref\xamarinios10\_._ +system.text.regularexpressions\4.3.0\ref\xamarinmac20\_._ +system.text.regularexpressions\4.3.0\ref\xamarintvos10\_._ +system.text.regularexpressions\4.3.0\ref\xamarinwatchos10\_._ +system.text.regularexpressions\4.3.0\system.text.regularexpressions.4.3.0.nupkg.sha512 +system.text.regularexpressions\4.3.0\system.text.regularexpressions.nuspec +system.text.regularexpressions\4.3.0\ThirdPartyNotices.txt +system.threading.channels\4.5.0\.signature.p7s +system.threading.channels\4.5.0\lib\netcoreapp2.1\System.Threading.Channels.dll +system.threading.channels\4.5.0\lib\netstandard1.3\System.Threading.Channels.dll +system.threading.channels\4.5.0\lib\netstandard2.0\System.Threading.Channels.dll +system.threading.channels\4.5.0\LICENSE.TXT +system.threading.channels\4.5.0\system.threading.channels.4.5.0.nupkg.sha512 +system.threading.channels\4.5.0\system.threading.channels.nuspec +system.threading.channels\4.5.0\THIRD-PARTY-NOTICES.TXT +system.threading.channels\4.5.0\useSharedDesignerContext.txt +system.threading.channels\4.5.0\version.txt +system.threading.tasks.extensions\4.0.0\dotnet_library_license.txt +system.threading.tasks.extensions\4.0.0\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.0.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.0.0\system.threading.tasks.extensions.4.0.0.nupkg.sha512 +system.threading.tasks.extensions\4.0.0\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.0.0\ThirdPartyNotices.txt +system.threading.tasks.extensions\4.3.0\dotnet_library_license.txt +system.threading.tasks.extensions\4.3.0\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.3.0\system.threading.tasks.extensions.4.3.0.nupkg.sha512 +system.threading.tasks.extensions\4.3.0\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.3.0\ThirdPartyNotices.txt +system.threading.tasks.extensions\4.5.1\.signature.p7s +system.threading.tasks.extensions\4.5.1\lib\MonoAndroid10\_._ +system.threading.tasks.extensions\4.5.1\lib\MonoTouch10\_._ +system.threading.tasks.extensions\4.5.1\lib\netcoreapp2.1\_._ +system.threading.tasks.extensions\4.5.1\lib\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\lib\xamarinios10\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarinmac20\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarintvos10\_._ +system.threading.tasks.extensions\4.5.1\lib\xamarinwatchos10\_._ +system.threading.tasks.extensions\4.5.1\LICENSE.TXT +system.threading.tasks.extensions\4.5.1\ref\MonoAndroid10\_._ +system.threading.tasks.extensions\4.5.1\ref\MonoTouch10\_._ +system.threading.tasks.extensions\4.5.1\ref\netcoreapp2.1\_._ +system.threading.tasks.extensions\4.5.1\ref\netstandard1.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\ref\netstandard2.0\System.Threading.Tasks.Extensions.dll +system.threading.tasks.extensions\4.5.1\ref\xamarinios10\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarinmac20\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarintvos10\_._ +system.threading.tasks.extensions\4.5.1\ref\xamarinwatchos10\_._ +system.threading.tasks.extensions\4.5.1\system.threading.tasks.extensions.4.5.1.nupkg.sha512 +system.threading.tasks.extensions\4.5.1\system.threading.tasks.extensions.nuspec +system.threading.tasks.extensions\4.5.1\THIRD-PARTY-NOTICES.TXT +system.threading.tasks.extensions\4.5.1\useSharedDesignerContext.txt +system.threading.tasks.extensions\4.5.1\version.txt +system.threading.tasks.parallel\4.3.0\dotnet_library_license.txt +system.threading.tasks.parallel\4.3.0\lib\MonoAndroid10\_._ +system.threading.tasks.parallel\4.3.0\lib\MonoTouch10\_._ +system.threading.tasks.parallel\4.3.0\lib\net45\_._ +system.threading.tasks.parallel\4.3.0\lib\netcore50\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\lib\netstandard1.3\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\lib\portable-net45+win8+wpa81\_._ +system.threading.tasks.parallel\4.3.0\lib\win8\_._ +system.threading.tasks.parallel\4.3.0\lib\wpa81\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinios10\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinmac20\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarintvos10\_._ +system.threading.tasks.parallel\4.3.0\lib\xamarinwatchos10\_._ +system.threading.tasks.parallel\4.3.0\ref\MonoAndroid10\_._ +system.threading.tasks.parallel\4.3.0\ref\MonoTouch10\_._ +system.threading.tasks.parallel\4.3.0\ref\net45\_._ +system.threading.tasks.parallel\4.3.0\ref\netcore50\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\ref\netstandard1.1\System.Threading.Tasks.Parallel.dll +system.threading.tasks.parallel\4.3.0\ref\portable-net45+win8+wpa81\_._ +system.threading.tasks.parallel\4.3.0\ref\win8\_._ +system.threading.tasks.parallel\4.3.0\ref\wpa81\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinios10\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinmac20\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarintvos10\_._ +system.threading.tasks.parallel\4.3.0\ref\xamarinwatchos10\_._ +system.threading.tasks.parallel\4.3.0\system.threading.tasks.parallel.4.3.0.nupkg.sha512 +system.threading.tasks.parallel\4.3.0\system.threading.tasks.parallel.nuspec +system.threading.tasks.parallel\4.3.0\ThirdPartyNotices.txt +system.threading.tasks\4.0.11\dotnet_library_license.txt +system.threading.tasks\4.0.11\lib\MonoAndroid10\_._ +system.threading.tasks\4.0.11\lib\MonoTouch10\_._ +system.threading.tasks\4.0.11\lib\net45\_._ +system.threading.tasks\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.0.11\lib\win8\_._ +system.threading.tasks\4.0.11\lib\wp80\_._ +system.threading.tasks\4.0.11\lib\wpa81\_._ +system.threading.tasks\4.0.11\lib\xamarinios10\_._ +system.threading.tasks\4.0.11\lib\xamarinmac20\_._ +system.threading.tasks\4.0.11\lib\xamarintvos10\_._ +system.threading.tasks\4.0.11\lib\xamarinwatchos10\_._ +system.threading.tasks\4.0.11\ref\MonoAndroid10\_._ +system.threading.tasks\4.0.11\ref\MonoTouch10\_._ +system.threading.tasks\4.0.11\ref\net45\_._ +system.threading.tasks\4.0.11\ref\netcore50\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\netstandard1.0\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\netstandard1.3\System.Threading.Tasks.dll +system.threading.tasks\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.0.11\ref\win8\_._ +system.threading.tasks\4.0.11\ref\wp80\_._ +system.threading.tasks\4.0.11\ref\wpa81\_._ +system.threading.tasks\4.0.11\ref\xamarinios10\_._ +system.threading.tasks\4.0.11\ref\xamarinmac20\_._ +system.threading.tasks\4.0.11\ref\xamarintvos10\_._ +system.threading.tasks\4.0.11\ref\xamarinwatchos10\_._ +system.threading.tasks\4.0.11\system.threading.tasks.4.0.11.nupkg.sha512 +system.threading.tasks\4.0.11\system.threading.tasks.nuspec +system.threading.tasks\4.0.11\ThirdPartyNotices.txt +system.threading.tasks\4.3.0\dotnet_library_license.txt +system.threading.tasks\4.3.0\lib\MonoAndroid10\_._ +system.threading.tasks\4.3.0\lib\MonoTouch10\_._ +system.threading.tasks\4.3.0\lib\net45\_._ +system.threading.tasks\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.3.0\lib\win8\_._ +system.threading.tasks\4.3.0\lib\wp80\_._ +system.threading.tasks\4.3.0\lib\wpa81\_._ +system.threading.tasks\4.3.0\lib\xamarinios10\_._ +system.threading.tasks\4.3.0\lib\xamarinmac20\_._ +system.threading.tasks\4.3.0\lib\xamarintvos10\_._ +system.threading.tasks\4.3.0\lib\xamarinwatchos10\_._ +system.threading.tasks\4.3.0\ref\MonoAndroid10\_._ +system.threading.tasks\4.3.0\ref\MonoTouch10\_._ +system.threading.tasks\4.3.0\ref\net45\_._ +system.threading.tasks\4.3.0\ref\netcore50\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\netstandard1.0\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\netstandard1.3\System.Threading.Tasks.dll +system.threading.tasks\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading.tasks\4.3.0\ref\win8\_._ +system.threading.tasks\4.3.0\ref\wp80\_._ +system.threading.tasks\4.3.0\ref\wpa81\_._ +system.threading.tasks\4.3.0\ref\xamarinios10\_._ +system.threading.tasks\4.3.0\ref\xamarinmac20\_._ +system.threading.tasks\4.3.0\ref\xamarintvos10\_._ +system.threading.tasks\4.3.0\ref\xamarinwatchos10\_._ +system.threading.tasks\4.3.0\system.threading.tasks.4.3.0.nupkg.sha512 +system.threading.tasks\4.3.0\system.threading.tasks.nuspec +system.threading.tasks\4.3.0\ThirdPartyNotices.txt +system.threading.thread\4.3.0\dotnet_library_license.txt +system.threading.thread\4.3.0\lib\MonoAndroid10\_._ +system.threading.thread\4.3.0\lib\MonoTouch10\_._ +system.threading.thread\4.3.0\lib\net46\System.Threading.Thread.dll +system.threading.thread\4.3.0\lib\netcore50\_._ +system.threading.thread\4.3.0\lib\netstandard1.3\System.Threading.Thread.dll +system.threading.thread\4.3.0\lib\xamarinios10\_._ +system.threading.thread\4.3.0\lib\xamarinmac20\_._ +system.threading.thread\4.3.0\lib\xamarintvos10\_._ +system.threading.thread\4.3.0\lib\xamarinwatchos10\_._ +system.threading.thread\4.3.0\ref\MonoAndroid10\_._ +system.threading.thread\4.3.0\ref\MonoTouch10\_._ +system.threading.thread\4.3.0\ref\net46\System.Threading.Thread.dll +system.threading.thread\4.3.0\ref\netstandard1.3\System.Threading.Thread.dll +system.threading.thread\4.3.0\ref\xamarinios10\_._ +system.threading.thread\4.3.0\ref\xamarinmac20\_._ +system.threading.thread\4.3.0\ref\xamarintvos10\_._ +system.threading.thread\4.3.0\ref\xamarinwatchos10\_._ +system.threading.thread\4.3.0\system.threading.thread.4.3.0.nupkg.sha512 +system.threading.thread\4.3.0\system.threading.thread.nuspec +system.threading.thread\4.3.0\ThirdPartyNotices.txt +system.threading.threadpool\4.3.0\dotnet_library_license.txt +system.threading.threadpool\4.3.0\lib\MonoAndroid10\_._ +system.threading.threadpool\4.3.0\lib\MonoTouch10\_._ +system.threading.threadpool\4.3.0\lib\net46\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\lib\netcore50\_._ +system.threading.threadpool\4.3.0\lib\netstandard1.3\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\lib\xamarinios10\_._ +system.threading.threadpool\4.3.0\lib\xamarinmac20\_._ +system.threading.threadpool\4.3.0\lib\xamarintvos10\_._ +system.threading.threadpool\4.3.0\lib\xamarinwatchos10\_._ +system.threading.threadpool\4.3.0\ref\MonoAndroid10\_._ +system.threading.threadpool\4.3.0\ref\MonoTouch10\_._ +system.threading.threadpool\4.3.0\ref\net46\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\ref\netstandard1.3\System.Threading.ThreadPool.dll +system.threading.threadpool\4.3.0\ref\xamarinios10\_._ +system.threading.threadpool\4.3.0\ref\xamarinmac20\_._ +system.threading.threadpool\4.3.0\ref\xamarintvos10\_._ +system.threading.threadpool\4.3.0\ref\xamarinwatchos10\_._ +system.threading.threadpool\4.3.0\system.threading.threadpool.4.3.0.nupkg.sha512 +system.threading.threadpool\4.3.0\system.threading.threadpool.nuspec +system.threading.threadpool\4.3.0\ThirdPartyNotices.txt +system.threading.timer\4.0.1\dotnet_library_license.txt +system.threading.timer\4.0.1\lib\MonoAndroid10\_._ +system.threading.timer\4.0.1\lib\MonoTouch10\_._ +system.threading.timer\4.0.1\lib\net451\_._ +system.threading.timer\4.0.1\lib\portable-net451+win81+wpa81\_._ +system.threading.timer\4.0.1\lib\win81\_._ +system.threading.timer\4.0.1\lib\wpa81\_._ +system.threading.timer\4.0.1\lib\xamarinios10\_._ +system.threading.timer\4.0.1\lib\xamarinmac20\_._ +system.threading.timer\4.0.1\lib\xamarintvos10\_._ +system.threading.timer\4.0.1\lib\xamarinwatchos10\_._ +system.threading.timer\4.0.1\ref\MonoAndroid10\_._ +system.threading.timer\4.0.1\ref\MonoTouch10\_._ +system.threading.timer\4.0.1\ref\net451\_._ +system.threading.timer\4.0.1\ref\netcore50\System.Threading.Timer.dll +system.threading.timer\4.0.1\ref\netstandard1.2\System.Threading.Timer.dll +system.threading.timer\4.0.1\ref\portable-net451+win81+wpa81\_._ +system.threading.timer\4.0.1\ref\win81\_._ +system.threading.timer\4.0.1\ref\wpa81\_._ +system.threading.timer\4.0.1\ref\xamarinios10\_._ +system.threading.timer\4.0.1\ref\xamarinmac20\_._ +system.threading.timer\4.0.1\ref\xamarintvos10\_._ +system.threading.timer\4.0.1\ref\xamarinwatchos10\_._ +system.threading.timer\4.0.1\system.threading.timer.4.0.1.nupkg.sha512 +system.threading.timer\4.0.1\system.threading.timer.nuspec +system.threading.timer\4.0.1\ThirdPartyNotices.txt +system.threading.timer\4.3.0\dotnet_library_license.txt +system.threading.timer\4.3.0\lib\MonoAndroid10\_._ +system.threading.timer\4.3.0\lib\MonoTouch10\_._ +system.threading.timer\4.3.0\lib\net451\_._ +system.threading.timer\4.3.0\lib\portable-net451+win81+wpa81\_._ +system.threading.timer\4.3.0\lib\win81\_._ +system.threading.timer\4.3.0\lib\wpa81\_._ +system.threading.timer\4.3.0\lib\xamarinios10\_._ +system.threading.timer\4.3.0\lib\xamarinmac20\_._ +system.threading.timer\4.3.0\lib\xamarintvos10\_._ +system.threading.timer\4.3.0\lib\xamarinwatchos10\_._ +system.threading.timer\4.3.0\ref\MonoAndroid10\_._ +system.threading.timer\4.3.0\ref\MonoTouch10\_._ +system.threading.timer\4.3.0\ref\net451\_._ +system.threading.timer\4.3.0\ref\netcore50\System.Threading.Timer.dll +system.threading.timer\4.3.0\ref\netstandard1.2\System.Threading.Timer.dll +system.threading.timer\4.3.0\ref\portable-net451+win81+wpa81\_._ +system.threading.timer\4.3.0\ref\win81\_._ +system.threading.timer\4.3.0\ref\wpa81\_._ +system.threading.timer\4.3.0\ref\xamarinios10\_._ +system.threading.timer\4.3.0\ref\xamarinmac20\_._ +system.threading.timer\4.3.0\ref\xamarintvos10\_._ +system.threading.timer\4.3.0\ref\xamarinwatchos10\_._ +system.threading.timer\4.3.0\system.threading.timer.4.3.0.nupkg.sha512 +system.threading.timer\4.3.0\system.threading.timer.nuspec +system.threading.timer\4.3.0\ThirdPartyNotices.txt +system.threading\4.0.11\dotnet_library_license.txt +system.threading\4.0.11\lib\MonoAndroid10\_._ +system.threading\4.0.11\lib\MonoTouch10\_._ +system.threading\4.0.11\lib\net45\_._ +system.threading\4.0.11\lib\netcore50\System.Threading.dll +system.threading\4.0.11\lib\netstandard1.3\System.Threading.dll +system.threading\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.0.11\lib\win8\_._ +system.threading\4.0.11\lib\wp80\_._ +system.threading\4.0.11\lib\wpa81\_._ +system.threading\4.0.11\lib\xamarinios10\_._ +system.threading\4.0.11\lib\xamarinmac20\_._ +system.threading\4.0.11\lib\xamarintvos10\_._ +system.threading\4.0.11\lib\xamarinwatchos10\_._ +system.threading\4.0.11\ref\MonoAndroid10\_._ +system.threading\4.0.11\ref\MonoTouch10\_._ +system.threading\4.0.11\ref\net45\_._ +system.threading\4.0.11\ref\netcore50\System.Threading.dll +system.threading\4.0.11\ref\netstandard1.0\System.Threading.dll +system.threading\4.0.11\ref\netstandard1.3\System.Threading.dll +system.threading\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.0.11\ref\win8\_._ +system.threading\4.0.11\ref\wp80\_._ +system.threading\4.0.11\ref\wpa81\_._ +system.threading\4.0.11\ref\xamarinios10\_._ +system.threading\4.0.11\ref\xamarinmac20\_._ +system.threading\4.0.11\ref\xamarintvos10\_._ +system.threading\4.0.11\ref\xamarinwatchos10\_._ +system.threading\4.0.11\runtimes\aot\lib\netcore50\System.Threading.dll +system.threading\4.0.11\system.threading.4.0.11.nupkg.sha512 +system.threading\4.0.11\system.threading.nuspec +system.threading\4.0.11\ThirdPartyNotices.txt +system.threading\4.3.0\dotnet_library_license.txt +system.threading\4.3.0\lib\MonoAndroid10\_._ +system.threading\4.3.0\lib\MonoTouch10\_._ +system.threading\4.3.0\lib\net45\_._ +system.threading\4.3.0\lib\netcore50\System.Threading.dll +system.threading\4.3.0\lib\netstandard1.3\System.Threading.dll +system.threading\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.3.0\lib\win8\_._ +system.threading\4.3.0\lib\wp80\_._ +system.threading\4.3.0\lib\wpa81\_._ +system.threading\4.3.0\lib\xamarinios10\_._ +system.threading\4.3.0\lib\xamarinmac20\_._ +system.threading\4.3.0\lib\xamarintvos10\_._ +system.threading\4.3.0\lib\xamarinwatchos10\_._ +system.threading\4.3.0\ref\MonoAndroid10\_._ +system.threading\4.3.0\ref\MonoTouch10\_._ +system.threading\4.3.0\ref\net45\_._ +system.threading\4.3.0\ref\netcore50\System.Threading.dll +system.threading\4.3.0\ref\netstandard1.0\System.Threading.dll +system.threading\4.3.0\ref\netstandard1.3\System.Threading.dll +system.threading\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.threading\4.3.0\ref\win8\_._ +system.threading\4.3.0\ref\wp80\_._ +system.threading\4.3.0\ref\wpa81\_._ +system.threading\4.3.0\ref\xamarinios10\_._ +system.threading\4.3.0\ref\xamarinmac20\_._ +system.threading\4.3.0\ref\xamarintvos10\_._ +system.threading\4.3.0\ref\xamarinwatchos10\_._ +system.threading\4.3.0\runtimes\aot\lib\netcore50\System.Threading.dll +system.threading\4.3.0\system.threading.4.3.0.nupkg.sha512 +system.threading\4.3.0\system.threading.nuspec +system.threading\4.3.0\ThirdPartyNotices.txt +system.valuetuple\4.3.0\dotnet_library_license.txt +system.valuetuple\4.3.0\lib\netstandard1.0\.xml +system.valuetuple\4.3.0\lib\netstandard1.0\System.ValueTuple.dll +system.valuetuple\4.3.0\lib\portable-net40+sl4+win8+wp8\.xml +system.valuetuple\4.3.0\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.3.0\system.valuetuple.4.3.0.nupkg.sha512 +system.valuetuple\4.3.0\system.valuetuple.nuspec +system.valuetuple\4.3.0\ThirdPartyNotices.txt +system.valuetuple\4.5.0\.signature.p7s +system.valuetuple\4.5.0\lib\MonoAndroid10\_._ +system.valuetuple\4.5.0\lib\MonoTouch10\_._ +system.valuetuple\4.5.0\lib\net461\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\net47\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\netcoreapp2.0\_._ +system.valuetuple\4.5.0\lib\netstandard1.0\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\netstandard2.0\_._ +system.valuetuple\4.5.0\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.5.0\lib\uap10.0.16299\_._ +system.valuetuple\4.5.0\lib\xamarinios10\_._ +system.valuetuple\4.5.0\lib\xamarinmac20\_._ +system.valuetuple\4.5.0\lib\xamarintvos10\_._ +system.valuetuple\4.5.0\lib\xamarinwatchos10\_._ +system.valuetuple\4.5.0\LICENSE.TXT +system.valuetuple\4.5.0\ref\MonoAndroid10\_._ +system.valuetuple\4.5.0\ref\MonoTouch10\_._ +system.valuetuple\4.5.0\ref\net461\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\net47\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\netcoreapp2.0\_._ +system.valuetuple\4.5.0\ref\netstandard2.0\_._ +system.valuetuple\4.5.0\ref\portable-net40+sl4+win8+wp8\System.ValueTuple.dll +system.valuetuple\4.5.0\ref\uap10.0.16299\_._ +system.valuetuple\4.5.0\ref\xamarinios10\_._ +system.valuetuple\4.5.0\ref\xamarinmac20\_._ +system.valuetuple\4.5.0\ref\xamarintvos10\_._ +system.valuetuple\4.5.0\ref\xamarinwatchos10\_._ +system.valuetuple\4.5.0\system.valuetuple.4.5.0.nupkg.sha512 +system.valuetuple\4.5.0\system.valuetuple.nuspec +system.valuetuple\4.5.0\THIRD-PARTY-NOTICES.TXT +system.valuetuple\4.5.0\useSharedDesignerContext.txt +system.valuetuple\4.5.0\version.txt +system.xml.readerwriter\4.0.11\dotnet_library_license.txt +system.xml.readerwriter\4.0.11\lib\MonoAndroid10\_._ +system.xml.readerwriter\4.0.11\lib\MonoTouch10\_._ +system.xml.readerwriter\4.0.11\lib\net45\_._ +system.xml.readerwriter\4.0.11\lib\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\lib\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.0.11\lib\win8\_._ +system.xml.readerwriter\4.0.11\lib\wp80\_._ +system.xml.readerwriter\4.0.11\lib\wpa81\_._ +system.xml.readerwriter\4.0.11\lib\xamarinios10\_._ +system.xml.readerwriter\4.0.11\lib\xamarinmac20\_._ +system.xml.readerwriter\4.0.11\lib\xamarintvos10\_._ +system.xml.readerwriter\4.0.11\lib\xamarinwatchos10\_._ +system.xml.readerwriter\4.0.11\ref\MonoAndroid10\_._ +system.xml.readerwriter\4.0.11\ref\MonoTouch10\_._ +system.xml.readerwriter\4.0.11\ref\net45\_._ +system.xml.readerwriter\4.0.11\ref\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\netstandard1.0\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.0.11\ref\win8\_._ +system.xml.readerwriter\4.0.11\ref\wp80\_._ +system.xml.readerwriter\4.0.11\ref\wpa81\_._ +system.xml.readerwriter\4.0.11\ref\xamarinios10\_._ +system.xml.readerwriter\4.0.11\ref\xamarinmac20\_._ +system.xml.readerwriter\4.0.11\ref\xamarintvos10\_._ +system.xml.readerwriter\4.0.11\ref\xamarinwatchos10\_._ +system.xml.readerwriter\4.0.11\system.xml.readerwriter.4.0.11.nupkg.sha512 +system.xml.readerwriter\4.0.11\system.xml.readerwriter.nuspec +system.xml.readerwriter\4.0.11\ThirdPartyNotices.txt +system.xml.readerwriter\4.3.0\dotnet_library_license.txt +system.xml.readerwriter\4.3.0\lib\MonoAndroid10\_._ +system.xml.readerwriter\4.3.0\lib\MonoTouch10\_._ +system.xml.readerwriter\4.3.0\lib\net45\_._ +system.xml.readerwriter\4.3.0\lib\net46\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.3.0\lib\win8\_._ +system.xml.readerwriter\4.3.0\lib\wp80\_._ +system.xml.readerwriter\4.3.0\lib\wpa81\_._ +system.xml.readerwriter\4.3.0\lib\xamarinios10\_._ +system.xml.readerwriter\4.3.0\lib\xamarinmac20\_._ +system.xml.readerwriter\4.3.0\lib\xamarintvos10\_._ +system.xml.readerwriter\4.3.0\lib\xamarinwatchos10\_._ +system.xml.readerwriter\4.3.0\ref\MonoAndroid10\_._ +system.xml.readerwriter\4.3.0\ref\MonoTouch10\_._ +system.xml.readerwriter\4.3.0\ref\net45\_._ +system.xml.readerwriter\4.3.0\ref\net46\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netcore50\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netstandard1.0\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\netstandard1.3\System.Xml.ReaderWriter.dll +system.xml.readerwriter\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.readerwriter\4.3.0\ref\win8\_._ +system.xml.readerwriter\4.3.0\ref\wp80\_._ +system.xml.readerwriter\4.3.0\ref\wpa81\_._ +system.xml.readerwriter\4.3.0\ref\xamarinios10\_._ +system.xml.readerwriter\4.3.0\ref\xamarinmac20\_._ +system.xml.readerwriter\4.3.0\ref\xamarintvos10\_._ +system.xml.readerwriter\4.3.0\ref\xamarinwatchos10\_._ +system.xml.readerwriter\4.3.0\system.xml.readerwriter.4.3.0.nupkg.sha512 +system.xml.readerwriter\4.3.0\system.xml.readerwriter.nuspec +system.xml.readerwriter\4.3.0\ThirdPartyNotices.txt +system.xml.xdocument\4.0.11\dotnet_library_license.txt +system.xml.xdocument\4.0.11\lib\MonoAndroid10\_._ +system.xml.xdocument\4.0.11\lib\MonoTouch10\_._ +system.xml.xdocument\4.0.11\lib\net45\_._ +system.xml.xdocument\4.0.11\lib\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\lib\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.0.11\lib\win8\_._ +system.xml.xdocument\4.0.11\lib\wp80\_._ +system.xml.xdocument\4.0.11\lib\wpa81\_._ +system.xml.xdocument\4.0.11\lib\xamarinios10\_._ +system.xml.xdocument\4.0.11\lib\xamarinmac20\_._ +system.xml.xdocument\4.0.11\lib\xamarintvos10\_._ +system.xml.xdocument\4.0.11\lib\xamarinwatchos10\_._ +system.xml.xdocument\4.0.11\ref\MonoAndroid10\_._ +system.xml.xdocument\4.0.11\ref\MonoTouch10\_._ +system.xml.xdocument\4.0.11\ref\net45\_._ +system.xml.xdocument\4.0.11\ref\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\netstandard1.0\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.0.11\ref\win8\_._ +system.xml.xdocument\4.0.11\ref\wp80\_._ +system.xml.xdocument\4.0.11\ref\wpa81\_._ +system.xml.xdocument\4.0.11\ref\xamarinios10\_._ +system.xml.xdocument\4.0.11\ref\xamarinmac20\_._ +system.xml.xdocument\4.0.11\ref\xamarintvos10\_._ +system.xml.xdocument\4.0.11\ref\xamarinwatchos10\_._ +system.xml.xdocument\4.0.11\system.xml.xdocument.4.0.11.nupkg.sha512 +system.xml.xdocument\4.0.11\system.xml.xdocument.nuspec +system.xml.xdocument\4.0.11\ThirdPartyNotices.txt +system.xml.xdocument\4.3.0\dotnet_library_license.txt +system.xml.xdocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xdocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xdocument\4.3.0\lib\net45\_._ +system.xml.xdocument\4.3.0\lib\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\lib\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.3.0\lib\win8\_._ +system.xml.xdocument\4.3.0\lib\wp80\_._ +system.xml.xdocument\4.3.0\lib\wpa81\_._ +system.xml.xdocument\4.3.0\lib\xamarinios10\_._ +system.xml.xdocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xdocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xdocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xdocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xdocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xdocument\4.3.0\ref\net45\_._ +system.xml.xdocument\4.3.0\ref\netcore50\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\netstandard1.0\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\netstandard1.3\System.Xml.XDocument.dll +system.xml.xdocument\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xdocument\4.3.0\ref\win8\_._ +system.xml.xdocument\4.3.0\ref\wp80\_._ +system.xml.xdocument\4.3.0\ref\wpa81\_._ +system.xml.xdocument\4.3.0\ref\xamarinios10\_._ +system.xml.xdocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xdocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xdocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xdocument\4.3.0\system.xml.xdocument.4.3.0.nupkg.sha512 +system.xml.xdocument\4.3.0\system.xml.xdocument.nuspec +system.xml.xdocument\4.3.0\ThirdPartyNotices.txt +system.xml.xmldocument\4.0.1\dotnet_library_license.txt +system.xml.xmldocument\4.0.1\lib\MonoAndroid10\_._ +system.xml.xmldocument\4.0.1\lib\MonoTouch10\_._ +system.xml.xmldocument\4.0.1\lib\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\lib\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\lib\xamarinios10\_._ +system.xml.xmldocument\4.0.1\lib\xamarinmac20\_._ +system.xml.xmldocument\4.0.1\lib\xamarintvos10\_._ +system.xml.xmldocument\4.0.1\lib\xamarinwatchos10\_._ +system.xml.xmldocument\4.0.1\ref\MonoAndroid10\_._ +system.xml.xmldocument\4.0.1\ref\MonoTouch10\_._ +system.xml.xmldocument\4.0.1\ref\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\ref\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.0.1\ref\xamarinios10\_._ +system.xml.xmldocument\4.0.1\ref\xamarinmac20\_._ +system.xml.xmldocument\4.0.1\ref\xamarintvos10\_._ +system.xml.xmldocument\4.0.1\ref\xamarinwatchos10\_._ +system.xml.xmldocument\4.0.1\system.xml.xmldocument.4.0.1.nupkg.sha512 +system.xml.xmldocument\4.0.1\system.xml.xmldocument.nuspec +system.xml.xmldocument\4.0.1\ThirdPartyNotices.txt +system.xml.xmldocument\4.3.0\dotnet_library_license.txt +system.xml.xmldocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xmldocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xmldocument\4.3.0\lib\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\lib\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\lib\xamarinios10\_._ +system.xml.xmldocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xmldocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xmldocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xmldocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xmldocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xmldocument\4.3.0\ref\net46\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\ref\netstandard1.3\System.Xml.XmlDocument.dll +system.xml.xmldocument\4.3.0\ref\xamarinios10\_._ +system.xml.xmldocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xmldocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xmldocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xmldocument\4.3.0\system.xml.xmldocument.4.3.0.nupkg.sha512 +system.xml.xmldocument\4.3.0\system.xml.xmldocument.nuspec +system.xml.xmldocument\4.3.0\ThirdPartyNotices.txt +system.xml.xmlserializer\4.0.11\dotnet_library_license.txt +system.xml.xmlserializer\4.0.11\lib\MonoAndroid10\_._ +system.xml.xmlserializer\4.0.11\lib\MonoTouch10\_._ +system.xml.xmlserializer\4.0.11\lib\net45\_._ +system.xml.xmlserializer\4.0.11\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\lib\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.0.11\lib\win8\_._ +system.xml.xmlserializer\4.0.11\lib\wp80\_._ +system.xml.xmlserializer\4.0.11\lib\wpa81\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinios10\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinmac20\_._ +system.xml.xmlserializer\4.0.11\lib\xamarintvos10\_._ +system.xml.xmlserializer\4.0.11\lib\xamarinwatchos10\_._ +system.xml.xmlserializer\4.0.11\ref\MonoAndroid10\_._ +system.xml.xmlserializer\4.0.11\ref\MonoTouch10\_._ +system.xml.xmlserializer\4.0.11\ref\net45\_._ +system.xml.xmlserializer\4.0.11\ref\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\netstandard1.0\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.0.11\ref\win8\_._ +system.xml.xmlserializer\4.0.11\ref\wp80\_._ +system.xml.xmlserializer\4.0.11\ref\wpa81\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinios10\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinmac20\_._ +system.xml.xmlserializer\4.0.11\ref\xamarintvos10\_._ +system.xml.xmlserializer\4.0.11\ref\xamarinwatchos10\_._ +system.xml.xmlserializer\4.0.11\runtimes\aot\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.0.11\system.xml.xmlserializer.4.0.11.nupkg.sha512 +system.xml.xmlserializer\4.0.11\system.xml.xmlserializer.nuspec +system.xml.xmlserializer\4.0.11\ThirdPartyNotices.txt +system.xml.xmlserializer\4.3.0\dotnet_library_license.txt +system.xml.xmlserializer\4.3.0\lib\MonoAndroid10\_._ +system.xml.xmlserializer\4.3.0\lib\MonoTouch10\_._ +system.xml.xmlserializer\4.3.0\lib\net45\_._ +system.xml.xmlserializer\4.3.0\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\lib\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.3.0\lib\win8\_._ +system.xml.xmlserializer\4.3.0\lib\wp80\_._ +system.xml.xmlserializer\4.3.0\lib\wpa81\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinios10\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinmac20\_._ +system.xml.xmlserializer\4.3.0\lib\xamarintvos10\_._ +system.xml.xmlserializer\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xmlserializer\4.3.0\ref\MonoAndroid10\_._ +system.xml.xmlserializer\4.3.0\ref\MonoTouch10\_._ +system.xml.xmlserializer\4.3.0\ref\net45\_._ +system.xml.xmlserializer\4.3.0\ref\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\netstandard1.0\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\netstandard1.3\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._ +system.xml.xmlserializer\4.3.0\ref\win8\_._ +system.xml.xmlserializer\4.3.0\ref\wp80\_._ +system.xml.xmlserializer\4.3.0\ref\wpa81\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinios10\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinmac20\_._ +system.xml.xmlserializer\4.3.0\ref\xamarintvos10\_._ +system.xml.xmlserializer\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xmlserializer\4.3.0\runtimes\aot\lib\netcore50\System.Xml.XmlSerializer.dll +system.xml.xmlserializer\4.3.0\system.xml.xmlserializer.4.3.0.nupkg.sha512 +system.xml.xmlserializer\4.3.0\system.xml.xmlserializer.nuspec +system.xml.xmlserializer\4.3.0\ThirdPartyNotices.txt +system.xml.xpath.xdocument\4.3.0\dotnet_library_license.txt +system.xml.xpath.xdocument\4.3.0\lib\MonoAndroid10\_._ +system.xml.xpath.xdocument\4.3.0\lib\MonoTouch10\_._ +system.xml.xpath.xdocument\4.3.0\lib\net46\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\lib\netstandard1.3\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\lib\xamarinios10\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarinmac20\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarintvos10\_._ +system.xml.xpath.xdocument\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xpath.xdocument\4.3.0\ref\MonoAndroid10\_._ +system.xml.xpath.xdocument\4.3.0\ref\MonoTouch10\_._ +system.xml.xpath.xdocument\4.3.0\ref\net46\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\ref\netstandard1.3\System.Xml.XPath.XDocument.dll +system.xml.xpath.xdocument\4.3.0\ref\xamarinios10\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarinmac20\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarintvos10\_._ +system.xml.xpath.xdocument\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xpath.xdocument\4.3.0\system.xml.xpath.xdocument.4.3.0.nupkg.sha512 +system.xml.xpath.xdocument\4.3.0\system.xml.xpath.xdocument.nuspec +system.xml.xpath.xdocument\4.3.0\ThirdPartyNotices.txt +system.xml.xpath\4.3.0\dotnet_library_license.txt +system.xml.xpath\4.3.0\lib\MonoAndroid10\_._ +system.xml.xpath\4.3.0\lib\MonoTouch10\_._ +system.xml.xpath\4.3.0\lib\net46\System.Xml.XPath.dll +system.xml.xpath\4.3.0\lib\netstandard1.3\System.Xml.XPath.dll +system.xml.xpath\4.3.0\lib\xamarinios10\_._ +system.xml.xpath\4.3.0\lib\xamarinmac20\_._ +system.xml.xpath\4.3.0\lib\xamarintvos10\_._ +system.xml.xpath\4.3.0\lib\xamarinwatchos10\_._ +system.xml.xpath\4.3.0\ref\MonoAndroid10\_._ +system.xml.xpath\4.3.0\ref\MonoTouch10\_._ +system.xml.xpath\4.3.0\ref\net46\System.Xml.XPath.dll +system.xml.xpath\4.3.0\ref\netstandard1.3\System.Xml.XPath.dll +system.xml.xpath\4.3.0\ref\xamarinios10\_._ +system.xml.xpath\4.3.0\ref\xamarinmac20\_._ +system.xml.xpath\4.3.0\ref\xamarintvos10\_._ +system.xml.xpath\4.3.0\ref\xamarinwatchos10\_._ +system.xml.xpath\4.3.0\system.xml.xpath.4.3.0.nupkg.sha512 +system.xml.xpath\4.3.0\system.xml.xpath.nuspec +system.xml.xpath\4.3.0\ThirdPartyNotices.txt +windowsazure.storage\8.1.4\lib\net45\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\net45\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\netstandard1.0\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\netstandard1.0\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\netstandard1.3\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\netstandard1.3\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\win8\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\win8\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\wp8\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\wp8\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\lib\wpa\Microsoft.WindowsAzure.Storage.dll +windowsazure.storage\8.1.4\lib\wpa\Microsoft.WindowsAzure.Storage.pdb +windowsazure.storage\8.1.4\windowsazure.storage.8.1.4.nupkg.sha512 +windowsazure.storage\8.1.4\windowsazure.storage.nuspec diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.2.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.2.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj b/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj new file mode 100644 index 0000000000..770299f91d --- /dev/null +++ b/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj @@ -0,0 +1,14 @@ + + + + + + + nuGetPackagesArchive-ci-server-$(PackageVersion).zip + false + false + false + + + + diff --git a/src/PackageArchive/Archive.Lzma/Archive.Lzma.lzmaproj b/src/PackageArchive/Archive.Lzma/Archive.Lzma.lzmaproj new file mode 100644 index 0000000000..a0dcc7e6d3 --- /dev/null +++ b/src/PackageArchive/Archive.Lzma/Archive.Lzma.lzmaproj @@ -0,0 +1,14 @@ + + + + + + + nuGetPackagesArchive-$(PackageVersion).lzma + false + true + true + + + + diff --git a/src/PackageArchive/Archive.props b/src/PackageArchive/Archive.props new file mode 100644 index 0000000000..8d888cf505 --- /dev/null +++ b/src/PackageArchive/Archive.props @@ -0,0 +1,11 @@ + + + + + + + + + netcoreapp2.1 + + diff --git a/src/PackageArchive/Archive.targets b/src/PackageArchive/Archive.targets new file mode 100644 index 0000000000..d50f2bad93 --- /dev/null +++ b/src/PackageArchive/Archive.targets @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + $(CollectInputsDependsOn);CollectNupkgExclusions + $(CollectInputsDependsOn);CollectXmlExclusions + $(CollectInputsDependsOn);CollectBaselineExclusions + + + + + + + + + + + <_ArchiveItemXml Include="$(RestorePackagesPath)**\*.xml" /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$([MSBuild]::Subtract($(AspNetCorePatchVersion), 1)) + + + + + + + + diff --git a/src/PackageArchive/Directory.Build.props b/src/PackageArchive/Directory.Build.props new file mode 100644 index 0000000000..3a70818a8d --- /dev/null +++ b/src/PackageArchive/Directory.Build.props @@ -0,0 +1,13 @@ + + + + + + true + + true + + $([MSBuild]::NormalizePath('$(RepositoryRoot)obj\pkgs\')) + + + diff --git a/src/PackageArchive/Directory.Build.targets b/src/PackageArchive/Directory.Build.targets new file mode 100644 index 0000000000..058246e408 --- /dev/null +++ b/src/PackageArchive/Directory.Build.targets @@ -0,0 +1 @@ + diff --git a/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj b/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj new file mode 100644 index 0000000000..4ed79ffecc --- /dev/null +++ b/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj @@ -0,0 +1,11 @@ + + + + netstandard2.0 + + + + + + + diff --git a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj new file mode 100644 index 0000000000..4f71ad7ae0 --- /dev/null +++ b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj @@ -0,0 +1,15 @@ + + + + netcoreapp2.1 + 2.1.0 + + $(MicrosoftNETCoreApp21PackageVersion) + $([MSbuild]::ValueOrDefault('$(MicrosoftNETCoreAppPackageVersion)','$(MaxImplicitVersion)')) + + + + + + + diff --git a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj new file mode 100644 index 0000000000..ed632e5fff --- /dev/null +++ b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj @@ -0,0 +1,22 @@ + + + + netcoreapp2.1 + + + + + + + + + + + + + + + + + + diff --git a/src/PackageArchive/ZipManifestGenerator/Program.cs b/src/PackageArchive/ZipManifestGenerator/Program.cs new file mode 100644 index 0000000000..883d21b7c4 --- /dev/null +++ b/src/PackageArchive/ZipManifestGenerator/Program.cs @@ -0,0 +1,80 @@ +// Copyright (c) .NET Foundation. All rights reserved. +// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. + +using System; +using System.IO; +using System.IO.Compression; +using System.Linq; +using System.Net.Http; +using System.Threading.Tasks; + +namespace ZipManifestGenerator +{ + class Program + { + private static void PrintUsage() + { + Console.WriteLine(@" +Usage: + + A file path or URL to the ZIP file. + The output file path for the ZIP manifest file."); + } + + public static async Task Main(string[] args) + { + if (args.Length != 2) + { + Console.Error.WriteLine("Invalid arguments"); + PrintUsage(); + return 1; + } + + var zipPath = args[0]; + var manifestOutputPath = args[1]; + + var shouldCleanupZip = false; + + if (zipPath.StartsWith("http", StringComparison.OrdinalIgnoreCase)) + { + shouldCleanupZip = true; + var url = zipPath; + Console.WriteLine($"log: Downloading {url}"); + zipPath = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName() + ".zip"); + var response = await new HttpClient().GetAsync(url); + response.EnsureSuccessStatusCode(); + + using (var outStream = File.Create(zipPath)) + { + var responseStream = await response.Content.ReadAsStreamAsync(); + await responseStream.CopyToAsync(outStream); + } + } + + try + { + Console.WriteLine($"log: Generating manifest in {manifestOutputPath}"); + + using (var zipStream = File.OpenRead(zipPath)) + using (var zip = new ZipArchive(zipStream, ZipArchiveMode.Read)) + using (var manifest = File.Create(manifestOutputPath)) + using (var writer = new StreamWriter(manifest)) + { + foreach (var file in zip.Entries.OrderBy(_ => _.FullName)) + { + writer.WriteLine(file.FullName.Replace("/", "\\")); + } + } + } + finally + { + if (shouldCleanupZip) + { + File.Delete(zipPath); + } + } + + return 0; + } + } +} diff --git a/src/PackageArchive/ZipManifestGenerator/README.md b/src/PackageArchive/ZipManifestGenerator/README.md new file mode 100644 index 0000000000..4dcd774e5d --- /dev/null +++ b/src/PackageArchive/ZipManifestGenerator/README.md @@ -0,0 +1,9 @@ +ZipManifestGenerator +--------- + +This console app is used to generate the list of files in a zip archive. + +Usage: +``` +dotnet run ./archive.zip files.txt +``` diff --git a/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.csproj b/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.csproj new file mode 100644 index 0000000000..88b5a48eeb --- /dev/null +++ b/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.csproj @@ -0,0 +1,12 @@ + + + + exe + netcoreapp2.1 + false + false + 7.1 + false + + + diff --git a/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.sln b/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.sln new file mode 100644 index 0000000000..4651885a71 --- /dev/null +++ b/src/PackageArchive/ZipManifestGenerator/ZipManifestGenerator.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZipManifestGenerator", "ZipManifestGenerator.csproj", "{4706B37C-3B37-4331-84FC-107657BDEC4E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x64.ActiveCfg = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x64.Build.0 = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x86.ActiveCfg = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Debug|x86.Build.0 = Debug|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|Any CPU.Build.0 = Release|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x64.ActiveCfg = Release|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x64.Build.0 = Release|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x86.ActiveCfg = Release|Any CPU + {4706B37C-3B37-4331-84FC-107657BDEC4E}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal From c1fb4479a36f6049b897c52e5eae94468b9d1fba Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 6 Jul 2018 13:45:30 -0700 Subject: [PATCH 13/40] Update LZMA to restore netcoreapp2.2 packages --- .../Scenario.ConsoleApp/Scenario.ConsoleApp.csproj | 8 +++++--- src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj index 4f71ad7ae0..e1ef3cfe40 100644 --- a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj +++ b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj @@ -1,10 +1,12 @@ - netcoreapp2.1 - 2.1.0 + netcoreapp2.2 + + 99.9 + 2.2.0 - $(MicrosoftNETCoreApp21PackageVersion) + $(MicrosoftNETCoreApp22PackageVersion) $([MSbuild]::ValueOrDefault('$(MicrosoftNETCoreAppPackageVersion)','$(MaxImplicitVersion)')) diff --git a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj index ed632e5fff..e20e8d3b93 100644 --- a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj +++ b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj @@ -1,7 +1,9 @@ - netcoreapp2.1 + netcoreapp2.2 + + 99.9 From ae66308a896678fed9fb869159fcae7498048db8 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 6 Jul 2018 15:31:15 -0700 Subject: [PATCH 14/40] Fixup bad merge --- build/Publish.targets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/Publish.targets b/build/Publish.targets index 0c36b6cf02..b1aadd65b7 100644 --- a/build/Publish.targets +++ b/build/Publish.targets @@ -88,6 +88,9 @@ $(BlobBasePath)nuGetPackagesArchive-ci-server-compat-$(PackageVersion).patch.zip + ShipInstaller=dotnetcli + + $(BlobBasePath)$(SiteExtensionArchiveFileName) From 931f0754afc3759777fd22e41782fd5344c26435 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 6 Jul 2018 15:34:05 -0700 Subject: [PATCH 15/40] Do not restore in parallel - workaround for race condition in /t:Restore --- build/PackageArchive.targets | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets index c3360b6b4a..68b07cfcd5 100644 --- a/build/PackageArchive.targets +++ b/build/PackageArchive.targets @@ -19,7 +19,8 @@ Date: Fri, 6 Jul 2018 23:22:19 +0000 Subject: [PATCH 16/40] Updating submodule(s) EntityFrameworkCore => 956f339a347cc9bbe81e154250b774b1d335eaf7 IISIntegration => 8ad64d2a35bd4cfb73aa4de3ddce86b7a19e76bb [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- modules/IISIntegration | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index dc8ab14e73..956f339a34 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit dc8ab14e739823ff6ef42b3f099c91ee4197745a +Subproject commit 956f339a347cc9bbe81e154250b774b1d335eaf7 diff --git a/modules/IISIntegration b/modules/IISIntegration index 724cc3ce88..8ad64d2a35 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 724cc3ce88233fa37a01fe447afed2c00c6711bf +Subproject commit 8ad64d2a35bd4cfb73aa4de3ddce86b7a19e76bb From d43b540a594563c4a6a563db79303a513145407e Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 23:53:30 +0000 Subject: [PATCH 17/40] Updating submodule(s) Mvc => d2bb674b0a665253d64696cdce26284b4bd930eb Razor => ed7c4e8f5c48f222c406d08e78587df755c474a6 [auto-updated: submodules] --- modules/Mvc | 2 +- modules/Razor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/Mvc b/modules/Mvc index 335500ab0e..d2bb674b0a 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 335500ab0ed76e073514130068aab43a40ebba3e +Subproject commit d2bb674b0a665253d64696cdce26284b4bd930eb diff --git a/modules/Razor b/modules/Razor index f9a09372b7..ed7c4e8f5c 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit f9a09372b7185cf03d058bd6a4ca7097855b45b7 +Subproject commit ed7c4e8f5c48f222c406d08e78587df755c474a6 From 956b2c55473fa0a61769c1ab5208e29e61b7659a Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 00:35:46 +0000 Subject: [PATCH 18/40] Updating submodule(s) Razor => ce4780a830f85cd66e87d4db398a50da229b3ddc [auto-updated: submodules] --- modules/Razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Razor b/modules/Razor index ed7c4e8f5c..ce4780a830 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit ed7c4e8f5c48f222c406d08e78587df755c474a6 +Subproject commit ce4780a830f85cd66e87d4db398a50da229b3ddc From f0b0887010d9977605ef2dd2e0b6e926ea8efb0b Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Fri, 6 Jul 2018 19:27:37 -0700 Subject: [PATCH 19/40] Updating submodule(s) IISIntegration => 91632183f1fe6884208b5711e46d75730e8c4bd4 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index 8ad64d2a35..91632183f1 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 8ad64d2a35bd4cfb73aa4de3ddce86b7a19e76bb +Subproject commit 91632183f1fe6884208b5711e46d75730e8c4bd4 From 5e2dbe57465d82674f53834cd70b3b59435bef57 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sat, 7 Jul 2018 13:45:53 -0700 Subject: [PATCH 20/40] Updating submodule(s) EntityFrameworkCore => cd421e3b96d04d530b3998304518eb83af599022 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 956f339a34..cd421e3b96 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 956f339a347cc9bbe81e154250b774b1d335eaf7 +Subproject commit cd421e3b96d04d530b3998304518eb83af599022 From 1b8ed9ee57470742ee39922e62495cf782bd69fa Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Sun, 8 Jul 2018 12:37:18 -0700 Subject: [PATCH 21/40] Updating submodule(s) AADIntegration => 36ee1a1223cf024ba65ba1069767194ecb240ee4 Antiforgery => ed2f15bc6e085c0555b35291c352ca75b46e9422 AuthSamples => 9c6c7ae6bd9d0fff349fd225711c6936f3033456 AzureIntegration => e849173691046e091318440a4c62027593c1ae83 BasicMiddleware => e425b27c057e5d875d4e52ccb4e44365b468b1b4 BrowserLink => 528e7d4fe5eed9f1604360cd2cec70c9ba05c911 Caching => 6f5fb1e3d6bb255253a7f740549c9b324ddbff04 Common => 6461c675ccabc70e261fdde27cbb41a5db09526b Configuration => d6c5092c4e46ff819fabc2a8e5c46b8d3cb013a9 CORS => cbf2f4ca77c7974e84d86fd6af951231ccba0b3a DataProtection => 2228213708c289139d0ac015e3a3dcaec41ae79d DependencyInjection => 87325a0e50179ce480646a12b13e1fe67a698eeb Diagnostics => a5ba2590d5760c84e5b043c15c46a6b81e323a75 DotNetTools => cb954e15f88ffb164d2f23704bfb2a56ff7cf344 EntityFrameworkCore => e9653479d11476141187527b3599757371356086 EventNotification => 26f6be93648277f0079246f1c1401f4c9636906b FileSystem => b38748bcf4987498ee21596064bd089957962dcb Hosting => 68dc961abbf6f24e75dfe9a16b8541f671967326 HtmlAbstractions => 8bb788ef9eef5ae4a6b48c04b3903f7c8319bbe9 HttpAbstractions => d0a32cc354adf9ad45e0773ba07dfd4207dd11a9 HttpClientFactory => 38a3611e5a5994ebfa53393899df1aaf3b90023f HttpSysServer => 7de560b7accf32c532272ca5acff100d042788e4 Identity => 4e84251cbf1535976c70ec66f038a768aefc4e96 IISIntegration => 96b42dc82790b9c34e0d220b8b4a62172a9b79f8 JavaScriptServices => 5fa87a0313877c8749df997bb6f30e9a447434ac JsonPatch => b34f6284126e38e8b510b58e735a3d5587a8989c KestrelHttpServer => 868acacf68cd0b891054f84a4e07f7f1ac147307 Localization => 758cefa4659fa315a61e3036daadb50548be182f Logging => 8252a2198726e36425e9364e5168a6ce359672ab MetaPackages => 5f4f181c97811e739b295b1bbbf0529f5f147d0d Microsoft.Data.Sqlite => 8f1e9c390ada36acf9d1ac55d3c305647e107ad8 MusicStore => 96beb8413d7399b3eef5d267b1ebc58ce283c646 Mvc => d2cfbd2671ed4913090f5f9d798d8631fcf81ede MvcPrecompilation => 40c00c4165294a6c821797b778c84a6a8d82041f Options => 26cf5666659608458bca96cea5eed7d8ff6bdd60 Proxy => 5bc572eaacc39cb09d490078f1f4b3476da2ef08 Razor => bbddd29ab87a75f61b42226854ad5dc98c74192d ResponseCaching => d1ddd44130f59210c56cdb22f82304150ba835fe Routing => 2d53d398b26959e3fb388989a03f8c7ae761cbcc Scaffolding => 99a678424d0747842de49677bbe7da80ffbfb42e Security => 8b30c7359769cd9e3360c065d610598aa99da0c6 ServerTests => f57669db864ec955ff8ffd1fbc5abb6e40db971e Session => 9b16c7907ec13f89e1c5665833623fe4f42e65cf SignalR => 30c67648ec6739578f3cb20942b28d2ed94ca8c1 StaticFiles => 2df2d2865ffc692f8f946933d1b71d3bb39561b7 Templating => 5911fc0be1212b18daed74cb50d72233418c5193 WebSockets => c48f2b953e74b9a999081c3d4f94ce53427947ff [auto-updated: submodules] --- modules/AADIntegration | 2 +- modules/Antiforgery | 2 +- modules/AuthSamples | 2 +- modules/AzureIntegration | 2 +- modules/BasicMiddleware | 2 +- modules/BrowserLink | 2 +- modules/CORS | 2 +- modules/Caching | 2 +- modules/Common | 2 +- modules/Configuration | 2 +- modules/DataProtection | 2 +- modules/DependencyInjection | 2 +- modules/Diagnostics | 2 +- modules/DotNetTools | 2 +- modules/EntityFrameworkCore | 2 +- modules/EventNotification | 2 +- modules/FileSystem | 2 +- modules/Hosting | 2 +- modules/HtmlAbstractions | 2 +- modules/HttpAbstractions | 2 +- modules/HttpClientFactory | 2 +- modules/HttpSysServer | 2 +- modules/IISIntegration | 2 +- modules/Identity | 2 +- modules/JavaScriptServices | 2 +- modules/JsonPatch | 2 +- modules/KestrelHttpServer | 2 +- modules/Localization | 2 +- modules/Logging | 2 +- modules/MetaPackages | 2 +- modules/Microsoft.Data.Sqlite | 2 +- modules/MusicStore | 2 +- modules/Mvc | 2 +- modules/MvcPrecompilation | 2 +- modules/Options | 2 +- modules/Proxy | 2 +- modules/Razor | 2 +- modules/ResponseCaching | 2 +- modules/Routing | 2 +- modules/Scaffolding | 2 +- modules/Security | 2 +- modules/ServerTests | 2 +- modules/Session | 2 +- modules/SignalR | 2 +- modules/StaticFiles | 2 +- modules/Templating | 2 +- modules/WebSockets | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/modules/AADIntegration b/modules/AADIntegration index bd08558a49..36ee1a1223 160000 --- a/modules/AADIntegration +++ b/modules/AADIntegration @@ -1 +1 @@ -Subproject commit bd08558a492c8e2477714c99342cb120e775a6c2 +Subproject commit 36ee1a1223cf024ba65ba1069767194ecb240ee4 diff --git a/modules/Antiforgery b/modules/Antiforgery index 1727967f08..ed2f15bc6e 160000 --- a/modules/Antiforgery +++ b/modules/Antiforgery @@ -1 +1 @@ -Subproject commit 1727967f08e76c49b941fba269aefd6408ade017 +Subproject commit ed2f15bc6e085c0555b35291c352ca75b46e9422 diff --git a/modules/AuthSamples b/modules/AuthSamples index 3ad862dc7a..9c6c7ae6bd 160000 --- a/modules/AuthSamples +++ b/modules/AuthSamples @@ -1 +1 @@ -Subproject commit 3ad862dc7a49f59047bd552bb56ad06e3af7b2f6 +Subproject commit 9c6c7ae6bd9d0fff349fd225711c6936f3033456 diff --git a/modules/AzureIntegration b/modules/AzureIntegration index 6c50820a49..e849173691 160000 --- a/modules/AzureIntegration +++ b/modules/AzureIntegration @@ -1 +1 @@ -Subproject commit 6c50820a4954e9027a67e89666c519f17f8aa98e +Subproject commit e849173691046e091318440a4c62027593c1ae83 diff --git a/modules/BasicMiddleware b/modules/BasicMiddleware index 0c84821f23..e425b27c05 160000 --- a/modules/BasicMiddleware +++ b/modules/BasicMiddleware @@ -1 +1 @@ -Subproject commit 0c84821f23bdba59401ae46bc5e983d34e602e3b +Subproject commit e425b27c057e5d875d4e52ccb4e44365b468b1b4 diff --git a/modules/BrowserLink b/modules/BrowserLink index f19181ae7a..528e7d4fe5 160000 --- a/modules/BrowserLink +++ b/modules/BrowserLink @@ -1 +1 @@ -Subproject commit f19181ae7a71e0d5e3fe8fe8e48edecbbccf91a6 +Subproject commit 528e7d4fe5eed9f1604360cd2cec70c9ba05c911 diff --git a/modules/CORS b/modules/CORS index 0c7cf1b06e..cbf2f4ca77 160000 --- a/modules/CORS +++ b/modules/CORS @@ -1 +1 @@ -Subproject commit 0c7cf1b06e4d9e299d1624bc20dc03e81d3e268b +Subproject commit cbf2f4ca77c7974e84d86fd6af951231ccba0b3a diff --git a/modules/Caching b/modules/Caching index 611f3f7a44..6f5fb1e3d6 160000 --- a/modules/Caching +++ b/modules/Caching @@ -1 +1 @@ -Subproject commit 611f3f7a44058f1a192e171309dbd5f2c287ab52 +Subproject commit 6f5fb1e3d6bb255253a7f740549c9b324ddbff04 diff --git a/modules/Common b/modules/Common index 0fc8c5e857..6461c675cc 160000 --- a/modules/Common +++ b/modules/Common @@ -1 +1 @@ -Subproject commit 0fc8c5e85799bd64baa3965f413a38dc89eea82e +Subproject commit 6461c675ccabc70e261fdde27cbb41a5db09526b diff --git a/modules/Configuration b/modules/Configuration index 00b0b3aa6a..d6c5092c4e 160000 --- a/modules/Configuration +++ b/modules/Configuration @@ -1 +1 @@ -Subproject commit 00b0b3aa6aea102eb8fde94629889bc219ff9d51 +Subproject commit d6c5092c4e46ff819fabc2a8e5c46b8d3cb013a9 diff --git a/modules/DataProtection b/modules/DataProtection index 2af13658fc..2228213708 160000 --- a/modules/DataProtection +++ b/modules/DataProtection @@ -1 +1 @@ -Subproject commit 2af13658fcd601f951ed9ff60446b7a5241efbab +Subproject commit 2228213708c289139d0ac015e3a3dcaec41ae79d diff --git a/modules/DependencyInjection b/modules/DependencyInjection index 42208714de..87325a0e50 160000 --- a/modules/DependencyInjection +++ b/modules/DependencyInjection @@ -1 +1 @@ -Subproject commit 42208714de59bbedf25fca5c771b1a35eafed287 +Subproject commit 87325a0e50179ce480646a12b13e1fe67a698eeb diff --git a/modules/Diagnostics b/modules/Diagnostics index 2f8eaa5ea4..a5ba2590d5 160000 --- a/modules/Diagnostics +++ b/modules/Diagnostics @@ -1 +1 @@ -Subproject commit 2f8eaa5ea4960907dc71100502e08eb92508f8e6 +Subproject commit a5ba2590d5760c84e5b043c15c46a6b81e323a75 diff --git a/modules/DotNetTools b/modules/DotNetTools index 3177be42f5..cb954e15f8 160000 --- a/modules/DotNetTools +++ b/modules/DotNetTools @@ -1 +1 @@ -Subproject commit 3177be42f50495aa2295ddbe28a4b52163c8bc01 +Subproject commit cb954e15f88ffb164d2f23704bfb2a56ff7cf344 diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index cd421e3b96..e9653479d1 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit cd421e3b96d04d530b3998304518eb83af599022 +Subproject commit e9653479d11476141187527b3599757371356086 diff --git a/modules/EventNotification b/modules/EventNotification index 659c6c23eb..26f6be9364 160000 --- a/modules/EventNotification +++ b/modules/EventNotification @@ -1 +1 @@ -Subproject commit 659c6c23eb373d61447d0bedb830e672dc6971d6 +Subproject commit 26f6be93648277f0079246f1c1401f4c9636906b diff --git a/modules/FileSystem b/modules/FileSystem index dd16c9a4d3..b38748bcf4 160000 --- a/modules/FileSystem +++ b/modules/FileSystem @@ -1 +1 @@ -Subproject commit dd16c9a4d366c7c73e1b66ec095008a41d7bdb9d +Subproject commit b38748bcf4987498ee21596064bd089957962dcb diff --git a/modules/Hosting b/modules/Hosting index 5fd60d68b6..68dc961abb 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 5fd60d68b6fb30b9de9a639ae07fa9ac42babd22 +Subproject commit 68dc961abbf6f24e75dfe9a16b8541f671967326 diff --git a/modules/HtmlAbstractions b/modules/HtmlAbstractions index 2d659e5382..8bb788ef9e 160000 --- a/modules/HtmlAbstractions +++ b/modules/HtmlAbstractions @@ -1 +1 @@ -Subproject commit 2d659e53829c4fab0a03fed934b5fedc2ce39c79 +Subproject commit 8bb788ef9eef5ae4a6b48c04b3903f7c8319bbe9 diff --git a/modules/HttpAbstractions b/modules/HttpAbstractions index a6929fe02b..d0a32cc354 160000 --- a/modules/HttpAbstractions +++ b/modules/HttpAbstractions @@ -1 +1 @@ -Subproject commit a6929fe02b5635784bc3ff787205639772527838 +Subproject commit d0a32cc354adf9ad45e0773ba07dfd4207dd11a9 diff --git a/modules/HttpClientFactory b/modules/HttpClientFactory index b9949e718b..38a3611e5a 160000 --- a/modules/HttpClientFactory +++ b/modules/HttpClientFactory @@ -1 +1 @@ -Subproject commit b9949e718bc563f473ed5a510357df1a07e77fe2 +Subproject commit 38a3611e5a5994ebfa53393899df1aaf3b90023f diff --git a/modules/HttpSysServer b/modules/HttpSysServer index e76c04eecc..7de560b7ac 160000 --- a/modules/HttpSysServer +++ b/modules/HttpSysServer @@ -1 +1 @@ -Subproject commit e76c04eecc2222282ae30b8ec10c8942be853868 +Subproject commit 7de560b7accf32c532272ca5acff100d042788e4 diff --git a/modules/IISIntegration b/modules/IISIntegration index 91632183f1..96b42dc827 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 91632183f1fe6884208b5711e46d75730e8c4bd4 +Subproject commit 96b42dc82790b9c34e0d220b8b4a62172a9b79f8 diff --git a/modules/Identity b/modules/Identity index 1bcd78c1d8..4e84251cbf 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 1bcd78c1d8e052ecc984576540ce05ef81e6b613 +Subproject commit 4e84251cbf1535976c70ec66f038a768aefc4e96 diff --git a/modules/JavaScriptServices b/modules/JavaScriptServices index 067298bead..5fa87a0313 160000 --- a/modules/JavaScriptServices +++ b/modules/JavaScriptServices @@ -1 +1 @@ -Subproject commit 067298bead65a91fad34fe7dc524519300b25da2 +Subproject commit 5fa87a0313877c8749df997bb6f30e9a447434ac diff --git a/modules/JsonPatch b/modules/JsonPatch index 2c1b6f9e8d..b34f628412 160000 --- a/modules/JsonPatch +++ b/modules/JsonPatch @@ -1 +1 @@ -Subproject commit 2c1b6f9e8dec7f071a9d61f490d4edd639746688 +Subproject commit b34f6284126e38e8b510b58e735a3d5587a8989c diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index bcc9bce87b..868acacf68 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit bcc9bce87b462f63362b1915d7c831790a3ca6e7 +Subproject commit 868acacf68cd0b891054f84a4e07f7f1ac147307 diff --git a/modules/Localization b/modules/Localization index 56bcb22639..758cefa465 160000 --- a/modules/Localization +++ b/modules/Localization @@ -1 +1 @@ -Subproject commit 56bcb226399bae0e2d23c9b3d6dd4308a66bac6c +Subproject commit 758cefa4659fa315a61e3036daadb50548be182f diff --git a/modules/Logging b/modules/Logging index 334983f395..8252a21987 160000 --- a/modules/Logging +++ b/modules/Logging @@ -1 +1 @@ -Subproject commit 334983f3953d1f8acd81e9be28c0768064d310cf +Subproject commit 8252a2198726e36425e9364e5168a6ce359672ab diff --git a/modules/MetaPackages b/modules/MetaPackages index 36ea388e9b..5f4f181c97 160000 --- a/modules/MetaPackages +++ b/modules/MetaPackages @@ -1 +1 @@ -Subproject commit 36ea388e9b09fa721f590e1cf915b8e437730192 +Subproject commit 5f4f181c97811e739b295b1bbbf0529f5f147d0d diff --git a/modules/Microsoft.Data.Sqlite b/modules/Microsoft.Data.Sqlite index 5daab741f3..8f1e9c390a 160000 --- a/modules/Microsoft.Data.Sqlite +++ b/modules/Microsoft.Data.Sqlite @@ -1 +1 @@ -Subproject commit 5daab741f372e88af81b5f7cfd68486adcff347a +Subproject commit 8f1e9c390ada36acf9d1ac55d3c305647e107ad8 diff --git a/modules/MusicStore b/modules/MusicStore index bb04931fe6..96beb8413d 160000 --- a/modules/MusicStore +++ b/modules/MusicStore @@ -1 +1 @@ -Subproject commit bb04931fe6452ecd02e73f127108280357abd031 +Subproject commit 96beb8413d7399b3eef5d267b1ebc58ce283c646 diff --git a/modules/Mvc b/modules/Mvc index d2bb674b0a..d2cfbd2671 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit d2bb674b0a665253d64696cdce26284b4bd930eb +Subproject commit d2cfbd2671ed4913090f5f9d798d8631fcf81ede diff --git a/modules/MvcPrecompilation b/modules/MvcPrecompilation index ebd30270a4..40c00c4165 160000 --- a/modules/MvcPrecompilation +++ b/modules/MvcPrecompilation @@ -1 +1 @@ -Subproject commit ebd30270a439e5a62769857132111cd3dbe28a68 +Subproject commit 40c00c4165294a6c821797b778c84a6a8d82041f diff --git a/modules/Options b/modules/Options index 7d0c98e54d..26cf566665 160000 --- a/modules/Options +++ b/modules/Options @@ -1 +1 @@ -Subproject commit 7d0c98e54daad71dce99693ca61c93275cc02c3d +Subproject commit 26cf5666659608458bca96cea5eed7d8ff6bdd60 diff --git a/modules/Proxy b/modules/Proxy index fa78958d4c..5bc572eaac 160000 --- a/modules/Proxy +++ b/modules/Proxy @@ -1 +1 @@ -Subproject commit fa78958d4c9cd83e3e9fdbf44f204c8fcf6982c8 +Subproject commit 5bc572eaacc39cb09d490078f1f4b3476da2ef08 diff --git a/modules/Razor b/modules/Razor index ce4780a830..bbddd29ab8 160000 --- a/modules/Razor +++ b/modules/Razor @@ -1 +1 @@ -Subproject commit ce4780a830f85cd66e87d4db398a50da229b3ddc +Subproject commit bbddd29ab87a75f61b42226854ad5dc98c74192d diff --git a/modules/ResponseCaching b/modules/ResponseCaching index 77c2d62a59..d1ddd44130 160000 --- a/modules/ResponseCaching +++ b/modules/ResponseCaching @@ -1 +1 @@ -Subproject commit 77c2d62a59ea97b8d9e09572bd5d27655671b2c4 +Subproject commit d1ddd44130f59210c56cdb22f82304150ba835fe diff --git a/modules/Routing b/modules/Routing index 0a44dcf4e3..2d53d398b2 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit 0a44dcf4e38cdd8efb75601ce5da0f6742fd5000 +Subproject commit 2d53d398b26959e3fb388989a03f8c7ae761cbcc diff --git a/modules/Scaffolding b/modules/Scaffolding index 20aede0384..99a678424d 160000 --- a/modules/Scaffolding +++ b/modules/Scaffolding @@ -1 +1 @@ -Subproject commit 20aede038470a77839bdeb1a52b4a767fe8a0170 +Subproject commit 99a678424d0747842de49677bbe7da80ffbfb42e diff --git a/modules/Security b/modules/Security index 866b0b66a4..8b30c73597 160000 --- a/modules/Security +++ b/modules/Security @@ -1 +1 @@ -Subproject commit 866b0b66a4f06fd7aba74f12f20e14f4f153e30b +Subproject commit 8b30c7359769cd9e3360c065d610598aa99da0c6 diff --git a/modules/ServerTests b/modules/ServerTests index eae90d6e7a..f57669db86 160000 --- a/modules/ServerTests +++ b/modules/ServerTests @@ -1 +1 @@ -Subproject commit eae90d6e7a9f5dc3ff9bee042b9b636c11b7f1df +Subproject commit f57669db864ec955ff8ffd1fbc5abb6e40db971e diff --git a/modules/Session b/modules/Session index 3c5a5e65cc..9b16c7907e 160000 --- a/modules/Session +++ b/modules/Session @@ -1 +1 @@ -Subproject commit 3c5a5e65ccdf8921cb1c1eab40198f262aa224ed +Subproject commit 9b16c7907ec13f89e1c5665833623fe4f42e65cf diff --git a/modules/SignalR b/modules/SignalR index b4fdc5e5c0..30c67648ec 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit b4fdc5e5c0d7c58ca86d25298c84e100e4d7e1c0 +Subproject commit 30c67648ec6739578f3cb20942b28d2ed94ca8c1 diff --git a/modules/StaticFiles b/modules/StaticFiles index 91f4696ae6..2df2d2865f 160000 --- a/modules/StaticFiles +++ b/modules/StaticFiles @@ -1 +1 @@ -Subproject commit 91f4696ae62d6e1cfd284468d228d9adaa924301 +Subproject commit 2df2d2865ffc692f8f946933d1b71d3bb39561b7 diff --git a/modules/Templating b/modules/Templating index 263e369b2e..5911fc0be1 160000 --- a/modules/Templating +++ b/modules/Templating @@ -1 +1 @@ -Subproject commit 263e369b2ef121ba77b5ff1ad582a1899fb5fe8a +Subproject commit 5911fc0be1212b18daed74cb50d72233418c5193 diff --git a/modules/WebSockets b/modules/WebSockets index 519851627c..c48f2b953e 160000 --- a/modules/WebSockets +++ b/modules/WebSockets @@ -1 +1 @@ -Subproject commit 519851627cd78bd1dcac564fba76b50933c6a85b +Subproject commit c48f2b953e74b9a999081c3d4f94ce53427947ff From ebb534a1d2521d507681ab37527a98b1a5e31989 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 09:59:31 -0700 Subject: [PATCH 22/40] Updating submodule(s) IISIntegration => cbfd791d7b929ec86be5c7792c6f7f3fa8f3b7f8 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index 96b42dc827..cbfd791d7b 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 96b42dc82790b9c34e0d220b8b4a62172a9b79f8 +Subproject commit cbfd791d7b929ec86be5c7792c6f7f3fa8f3b7f8 From a637e64d0b6d1a7956ff9ff50d2f003922d35090 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 11:08:21 -0700 Subject: [PATCH 23/40] Updating submodule(s) Mvc => dee479fda712e35cf740239587e438a8143850d8 [auto-updated: submodules] --- modules/Mvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Mvc b/modules/Mvc index d2cfbd2671..dee479fda7 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit d2cfbd2671ed4913090f5f9d798d8631fcf81ede +Subproject commit dee479fda712e35cf740239587e438a8143850d8 From ad77bfb8a7b49b5be9606e1df5b43d0729f0dd63 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 19:54:25 +0000 Subject: [PATCH 24/40] Updating submodule(s) EntityFrameworkCore => bccb119a59734c5a5d47dac0a64bd31a734a04b5 Mvc => dc2ae93c3f37ff7f44c2d09f68065b19db6a3245 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- modules/Mvc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index e9653479d1..bccb119a59 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit e9653479d11476141187527b3599757371356086 +Subproject commit bccb119a59734c5a5d47dac0a64bd31a734a04b5 diff --git a/modules/Mvc b/modules/Mvc index dee479fda7..dc2ae93c3f 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit dee479fda712e35cf740239587e438a8143850d8 +Subproject commit dc2ae93c3f37ff7f44c2d09f68065b19db6a3245 From b656aca9b12b2283a5a4848bd4e3bc2bf4216155 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 13:04:00 -0700 Subject: [PATCH 25/40] Updating submodule(s) Mvc => bd995d4cb1d5a64b607f5de316f08acc9ff0f7d9 [auto-updated: submodules] --- modules/Mvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Mvc b/modules/Mvc index 82f7f2aab8..bd995d4cb1 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 82f7f2aab88f1b9af15f60df3830ed327b2d5a89 +Subproject commit bd995d4cb1d5a64b607f5de316f08acc9ff0f7d9 From c970ae654c9a0b15b64ad68410483ee9f4e9736f Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 13:31:56 -0700 Subject: [PATCH 26/40] Updating submodule(s) Routing => 9c23ffb2159a3f3ce30511e9e7cbca6603c835bc [auto-updated: submodules] --- modules/Routing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Routing b/modules/Routing index ebab62c766..9c23ffb215 160000 --- a/modules/Routing +++ b/modules/Routing @@ -1 +1 @@ -Subproject commit ebab62c7666b26fe0f98546cbb210352a7fa1d1d +Subproject commit 9c23ffb2159a3f3ce30511e9e7cbca6603c835bc From 42ac642aeef01b86409c7e61c428b9fa33354146 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 20:52:07 +0000 Subject: [PATCH 27/40] Updating submodule(s) EntityFrameworkCore => 9a844817ef24463e923eb19ca480cc9d59964c82 Mvc => 081227946467984546f8e3a32d3ad92fa986ecd8 SignalR => 2d4fb0af6fd2ef2e3a059a2a15a56484d8800d35 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- modules/Mvc | 2 +- modules/SignalR | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index bccb119a59..9a844817ef 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit bccb119a59734c5a5d47dac0a64bd31a734a04b5 +Subproject commit 9a844817ef24463e923eb19ca480cc9d59964c82 diff --git a/modules/Mvc b/modules/Mvc index dc2ae93c3f..0812279464 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit dc2ae93c3f37ff7f44c2d09f68065b19db6a3245 +Subproject commit 081227946467984546f8e3a32d3ad92fa986ecd8 diff --git a/modules/SignalR b/modules/SignalR index 30c67648ec..2d4fb0af6f 160000 --- a/modules/SignalR +++ b/modules/SignalR @@ -1 +1 @@ -Subproject commit 30c67648ec6739578f3cb20942b28d2ed94ca8c1 +Subproject commit 2d4fb0af6fd2ef2e3a059a2a15a56484d8800d35 From 9423364d28e871317d83b17b491e74e5762fd5ee Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 16:21:37 -0700 Subject: [PATCH 28/40] Updating submodule(s) IISIntegration => f7936ac062ab1cf78811333059e63e1e4e5875d0 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index cbfd791d7b..f7936ac062 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit cbfd791d7b929ec86be5c7792c6f7f3fa8f3b7f8 +Subproject commit f7936ac062ab1cf78811333059e63e1e4e5875d0 From c8a8e5029d63ccaaca9c563f7a27ab1aff4437ad Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 01:01:49 +0000 Subject: [PATCH 29/40] Updating BuildTools from 2.1.3-rtm-15799 to 2.1.3-rtm-15800 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index ccb5adf875..f4010edac5 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.3-rtm-15799 -commithash:48ea43fbffa6c3d0fc8b51dbbaf69ce52b26da7c +version:2.1.3-rtm-15800 +commithash:30d771e1fce75791a860c1cdc91120ac9aba7c99 From 9ad9ada9eac58565c495a0316dd393f3605559ee Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Mon, 9 Jul 2018 18:16:57 -0700 Subject: [PATCH 30/40] Pin to the latest stable 2.1.x corefx packages --- build/dependencies.props | 54 +++++++++++++++++----------------- scripts/UpdateDependencies.ps1 | 25 +++++++++------- 2 files changed, 42 insertions(+), 37 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 3100414460..c336b4ea34 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,36 +1,10 @@ - + - 4.6.0-preview1-26617-01 2.2.0-preview1-26618-02 2.2.0-preview1-26618-02 2.2.0-preview1-26618-02 - 4.6.0-preview1-26617-01 - 4.8.0-preview1.5116 - 4.6.0-preview1-26617-01 - 1.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 1.7.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.10.0-preview1-26617-01 - 4.6.0-preview1-26617-01 - 4.6.0-preview1-26617-01 @@ -84,6 +58,7 @@ 2.8.0 2.8.0 2.8.0 + 4.5.0 1.7.0 0.2.0-beta-63019-01 1.0.0-rc3-003121 @@ -119,6 +94,7 @@ 15.6.161-preview 11.1.0 1.4.0 + 4.5.0 1.3.8 1.0.1 4.7.49 @@ -126,6 +102,7 @@ 2.0.3 1.0.1 11.0.2 + 4.7.0 12.2.1100 2.0.1 6.0.1 @@ -138,12 +115,35 @@ 1.2.6 1.1.92 1.0.0 + 4.5.0 + 1.5.0 + 4.5.0 + 4.5.1 + 4.5.0 + 4.5.0 5.2.0 3.1.1 + 4.5.0 + 4.5.1 4.3.2 + 4.5.0 + 4.5.1 + 4.5.0 3.1.1 4.3.0 + 1.6.0 + 4.5.1 4.3.0 + 4.5.0 + 4.5.0 + 4.5.0 + 4.5.0 + 4.5.0 + 4.5.0 + 4.5.0 + 4.9.0 + 4.5.1 + 4.5.0 1.3.7 9.0.1 2.9.0-beta4-62911-02 diff --git a/scripts/UpdateDependencies.ps1 b/scripts/UpdateDependencies.ps1 index 8708eee27b..7aeb8fd3f8 100755 --- a/scripts/UpdateDependencies.ps1 +++ b/scripts/UpdateDependencies.ps1 @@ -54,23 +54,28 @@ foreach ($package in $remoteDeps.SelectNodes('//Package')) { } } +if (-not $NoCommit) { + $currentBranch = Invoke-Block { & git rev-parse --abbrev-ref HEAD } -$currentBranch = Invoke-Block { & git rev-parse --abbrev-ref HEAD } - -$destinationBranch = "dotnetbot/UpdateDeps" -Invoke-Block { & git checkout -tb $destinationBranch "origin/$GithubUpstreamBranch" } + $destinationBranch = "dotnetbot/UpdateDeps" + Invoke-Block { & git checkout -tb $destinationBranch "origin/$GithubUpstreamBranch" } +} try { $updatedVars = UpdateVersions $variables $dependencies $depsPath - if (-not $NoCommit) { - $body = CommitUpdatedVersions $updatedVars $dependencies $depsPath + if ($NoCommit) { + exit 0 + } - if ($body) { - CreatePR "aspnet" $GithubUsername $GithubUpstreamBranch $destinationBranch $body $GithubToken - } + $body = CommitUpdatedVersions $updatedVars $dependencies $depsPath + + if ($body) { + CreatePR "aspnet" $GithubUsername $GithubUpstreamBranch $destinationBranch $body $GithubToken } } finally { - Invoke-Block { & git checkout $currentBranch } + if (-not $NoCommit) { + Invoke-Block { & git checkout $currentBranch } + } } From 8ffb38a0f1f7cdece382833aaf995a0404069815 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Mon, 9 Jul 2018 18:29:34 -0700 Subject: [PATCH 31/40] Updating submodule(s) Mvc => 1e7be641ae62759ecaf83806f48713e0437c1ea3 [auto-updated: submodules] --- modules/Mvc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Mvc b/modules/Mvc index 0812279464..1e7be641ae 160000 --- a/modules/Mvc +++ b/modules/Mvc @@ -1 +1 @@ -Subproject commit 081227946467984546f8e3a32d3ad92fa986ecd8 +Subproject commit 1e7be641ae62759ecaf83806f48713e0437c1ea3 From 50f164dc3bd0cf526dc3fd3010332eca428cebda Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 01:32:19 +0000 Subject: [PATCH 32/40] Updating BuildTools from 2.1.3-rtm-15800 to 2.1.3-rtm-15802 [auto-updated: buildtools] --- korebuild-lock.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/korebuild-lock.txt b/korebuild-lock.txt index f4010edac5..251c227c83 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.3-rtm-15800 -commithash:30d771e1fce75791a860c1cdc91120ac9aba7c99 +version:2.1.3-rtm-15802 +commithash:a7c08b45b440a7d2058a0aa1eaa3eb6ba811976a From 8b68a91045156eefa723ce0266f8cb2720ce6ff8 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 10:23:44 -0700 Subject: [PATCH 33/40] Updating submodule(s) IISIntegration => 86fed4de5fab2dd8c2e2c3ce5e1dfa877fdda36b [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index f7936ac062..86fed4de5f 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit f7936ac062ab1cf78811333059e63e1e4e5875d0 +Subproject commit 86fed4de5fab2dd8c2e2c3ce5e1dfa877fdda36b From f484fb1f016bcb6b11d478404e321a0a34e8c7d2 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 17:35:10 +0000 Subject: [PATCH 34/40] Updating submodule(s) Identity => 3eae93082f379a07d8a6f6cea5fda5781296a2da [auto-updated: submodules] --- modules/Identity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Identity b/modules/Identity index 7fbb5588fc..3eae93082f 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 7fbb5588fc9ebb976b24f97264b51962a8f0087b +Subproject commit 3eae93082f379a07d8a6f6cea5fda5781296a2da From 7634876322d6dedeb1643d202d4a7e62987e8f7d Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 10:51:24 -0700 Subject: [PATCH 35/40] Updating submodule(s) IISIntegration => 11b83dc2b3916ffcc17101902ec383257f6cd033 [auto-updated: submodules] --- modules/IISIntegration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/IISIntegration b/modules/IISIntegration index 86fed4de5f..11b83dc2b3 160000 --- a/modules/IISIntegration +++ b/modules/IISIntegration @@ -1 +1 @@ -Subproject commit 86fed4de5fab2dd8c2e2c3ce5e1dfa877fdda36b +Subproject commit 11b83dc2b3916ffcc17101902ec383257f6cd033 From 7683832309bf2cf631972b521af49ee61b5269c0 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 18:35:44 +0000 Subject: [PATCH 36/40] Updating submodule(s) Hosting => 51c94337d7755dc4970da77f2ee12285da176d86 [auto-updated: submodules] --- modules/Hosting | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Hosting b/modules/Hosting index 68dc961abb..51c94337d7 160000 --- a/modules/Hosting +++ b/modules/Hosting @@ -1 +1 @@ -Subproject commit 68dc961abbf6f24e75dfe9a16b8541f671967326 +Subproject commit 51c94337d7755dc4970da77f2ee12285da176d86 From df3a84c6b017732a88a80cca913372598aa20bfa Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 12:35:02 -0700 Subject: [PATCH 37/40] Updating submodule(s) EntityFrameworkCore => ab84f2f033f0d8834d80be049e669fd66b7e8485 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index 9a844817ef..ab84f2f033 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit 9a844817ef24463e923eb19ca480cc9d59964c82 +Subproject commit ab84f2f033f0d8834d80be049e669fd66b7e8485 From 4f81f757775a0868891aa1360f3519382ea782f3 Mon Sep 17 00:00:00 2001 From: dotnet-maestro-bot Date: Tue, 10 Jul 2018 12:45:53 -0700 Subject: [PATCH 38/40] Updating external dependencies (#1249) --- build/dependencies.props | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 264caf73ba..65a4297141 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,9 +1,9 @@ - + - 2.1.1 - 2.1.1 + 2.1.3-servicing-26708-02 + 2.1.3-servicing-26708-02 From a82b47ce81a0280b2265703bea214ac8ea5bdcf7 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 13:20:30 -0700 Subject: [PATCH 39/40] Updating submodule(s) EntityFrameworkCore => 06c6a0aee28596c5d293d143c7d5a60105745841 KestrelHttpServer => 181e521b4003d4adb61f749d58ffeb6c2f42ff27 [auto-updated: submodules] --- modules/EntityFrameworkCore | 2 +- modules/KestrelHttpServer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/EntityFrameworkCore b/modules/EntityFrameworkCore index fac2ede689..06c6a0aee2 160000 --- a/modules/EntityFrameworkCore +++ b/modules/EntityFrameworkCore @@ -1 +1 @@ -Subproject commit fac2ede689ff55b0337161d81a0e61dc794d84d5 +Subproject commit 06c6a0aee28596c5d293d143c7d5a60105745841 diff --git a/modules/KestrelHttpServer b/modules/KestrelHttpServer index ac31e5ab30..181e521b40 160000 --- a/modules/KestrelHttpServer +++ b/modules/KestrelHttpServer @@ -1 +1 @@ -Subproject commit ac31e5ab30e6f6023ddb12b24f76fa72e764a94a +Subproject commit 181e521b4003d4adb61f749d58ffeb6c2f42ff27 From b2e9baa55fa1a96fca3e223f8a0032a053b13be5 Mon Sep 17 00:00:00 2001 From: "ASP.NET CI" Date: Tue, 10 Jul 2018 13:52:59 -0700 Subject: [PATCH 40/40] Updating submodule(s) Identity => 0ab8e15f0592c0529a2f9fe37edd5aab2d8c474f [auto-updated: submodules] --- modules/Identity | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Identity b/modules/Identity index 3eae93082f..0ab8e15f05 160000 --- a/modules/Identity +++ b/modules/Identity @@ -1 +1 @@ -Subproject commit 3eae93082f379a07d8a6f6cea5fda5781296a2da +Subproject commit 0ab8e15f0592c0529a2f9fe37edd5aab2d8c474f