diff --git a/build/PackageArchive.targets b/build/PackageArchive.targets
deleted file mode 100644
index 623f8c4395..0000000000
--- a/build/PackageArchive.targets
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- DotNetRestoreSourcePropsPath=$(GeneratedRestoreSourcesPropsPath);
- DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath);
- _BuildToolsAssembly=$(_BuildToolsAssembly)
-
-
-
-
-
-
-
-
-
-
diff --git a/build/dependencies.props b/build/dependencies.props
index b7d6f54fa7..57a0b7efa4 100644
--- a/build/dependencies.props
+++ b/build/dependencies.props
@@ -163,7 +163,6 @@
2.8.0
2.8.0
1.7.0
- 0.2.0-beta-63019-01
1.0.0-rc3-003121
1.1.0
3.19.8
diff --git a/build/repo.targets b/build/repo.targets
index 1527c80d11..9d7959e552 100644
--- a/build/repo.targets
+++ b/build/repo.targets
@@ -1,6 +1,5 @@
-
diff --git a/build/tasks/CreateLzma.cs b/build/tasks/CreateLzma.cs
deleted file mode 100644
index 96e3d403b7..0000000000
--- a/build/tasks/CreateLzma.cs
+++ /dev/null
@@ -1,70 +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.IO;
-using System.Threading;
-using Microsoft.Build.Framework;
-using Microsoft.Build.Utilities;
-using Microsoft.DotNet.Archive;
-
-namespace RepoTasks
-{
- public class CreateLzma : Task, ICancelableTask
- {
- private readonly CancellationTokenSource _cts = new CancellationTokenSource();
-
- [Required]
- public string OutputPath { get; set; }
-
- [Required]
- public string[] Sources { get; set; }
-
- public void Cancel() => _cts.Cancel();
-
- public override bool Execute()
- {
- var progress = new MSBuildProgressReport(Log, _cts.Token);
- using (var archive = new IndexedArchive())
- {
- foreach (var source in Sources)
- {
- if (Directory.Exists(source))
- {
- var trimmedSource = source.TrimEnd(new []{ '\\', '/' });
- Log.LogMessage(MessageImportance.High, $"Adding directory: {trimmedSource}");
- archive.AddDirectory(trimmedSource, progress);
- }
- else
- {
- Log.LogMessage(MessageImportance.High, $"Adding file: {source}");
- archive.AddFile(source, Path.GetFileName(source));
- }
- }
-
- archive.Save(OutputPath, progress);
- }
-
- return !Log.HasLoggedErrors;
- }
-
- private class MSBuildProgressReport : IProgress
- {
- private TaskLoggingHelper _log;
- private readonly CancellationToken _cancellationToken;
-
- public MSBuildProgressReport(TaskLoggingHelper log, CancellationToken cancellationToken)
- {
- _log = log;
- _cancellationToken = cancellationToken;
- }
-
- public void Report(ProgressReport value)
- {
- var complete = (double)value.Ticks / value.Total;
- _log.LogMessage(MessageImportance.Low, $"Progress: {value.Phase} - {complete:P}");
- _cancellationToken.ThrowIfCancellationRequested(); // because LZMA apis don't take a cancellation token, throw from the logger (yes, its ugly, but it works.)
- }
- }
- }
-}
diff --git a/build/tasks/GetDocXmlFiles.cs b/build/tasks/GetDocXmlFiles.cs
deleted file mode 100644
index 9053f0c6ad..0000000000
--- a/build/tasks/GetDocXmlFiles.cs
+++ /dev/null
@@ -1,64 +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;
-using System;
-using System.Collections.Concurrent;
-using System.IO;
-using System.Threading.Tasks;
-using System.Xml.Linq;
-
-namespace RepoTasks
-{
- ///
- /// Filters a list of .xml files to only those that are .NET Xml docs files
- ///
- public class GetDocXmlFiles : Microsoft.Build.Utilities.Task
- {
- [Required]
- public ITaskItem[] Files { get; set; }
-
- [Output]
- public ITaskItem[] XmlDocFiles { get; set; }
-
- public override bool Execute()
- {
- var xmlDocs = new ConcurrentBag();
- Parallel.ForEach(Files, f =>
- {
- try
- {
- using (var file = File.OpenRead(f.ItemSpec))
- using (var reader = new StreamReader(file))
- {
- string line;
- for (var i = 0; i < 2; i++)
- {
- line = reader.ReadLine();
- if (i == 0 && line.StartsWith("") + 2);
- }
-
- if (line.StartsWith("", StringComparison.OrdinalIgnoreCase) || line.StartsWith("
-
diff --git a/build/tasks/RepoTasks.tasks b/build/tasks/RepoTasks.tasks
index 1da0b59154..c99d93e1c3 100644
--- a/build/tasks/RepoTasks.tasks
+++ b/build/tasks/RepoTasks.tasks
@@ -3,9 +3,7 @@
<_RepoTaskAssembly>$(MSBuildThisFileDirectory)bin\publish\RepoTasks.dll
-
-
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
deleted file mode 100644
index 55592e1dfa..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/Archive.CiServer.Patch.Compat.zipproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
- 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
deleted file mode 100644
index 502b30a472..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.1.txt
+++ /dev/null
@@ -1,6581 +0,0 @@
-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
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.3.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.3.txt
deleted file mode 100644
index ae5c6430c8..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.3.txt
+++ /dev/null
@@ -1,381 +0,0 @@
-microsoft.netcore.app\2.1.0\.signature.p7s
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets
-microsoft.netcore.app\2.1.0\LICENSE.TXT
-microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg
-microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg.sha512
-microsoft.netcore.app\2.1.0\microsoft.netcore.app.nuspec
-microsoft.netcore.app\2.1.0\Microsoft.NETCore.App.versions.txt
-microsoft.netcore.app\2.1.0\ref\netcoreapp\_._
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.CSharp.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.VisualBasic.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\mscorlib.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\netstandard.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.AppContext.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Buffers.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Concurrent.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Immutable.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.NonGeneric.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Specialized.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Configuration.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Console.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Core.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.Common.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Debug.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Process.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tools.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Dynamic.Runtime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Calendars.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Pipes.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Expressions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Parallel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Queryable.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Memory.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Http.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.HttpListener.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Mail.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NameResolution.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NetworkInformation.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Ping.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Requests.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Security.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.ServicePoint.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Sockets.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebClient.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebProxy.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.Vectors.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ObjectModel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Metadata.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Reader.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.ResourceManager.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Writer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Handles.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Loader.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Numerics.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Claims.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Principal.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.SecureString.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceModel.Web.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceProcess.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.RegularExpressions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Overlapped.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Thread.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.ThreadPool.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Timer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.Local.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ValueTuple.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Windows.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Linq.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Serialization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\WindowsBase.dll
-microsoft.netcore.app\2.1.0\runtime.json
-microsoft.netcore.app\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnetapphost\2.1.0\.signature.p7s
-microsoft.netcore.dotnetapphost\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg
-microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512
-microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.nuspec
-microsoft.netcore.dotnetapphost\2.1.0\runtime.json
-microsoft.netcore.dotnetapphost\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostpolicy\2.1.0\.signature.p7s
-microsoft.netcore.dotnethostpolicy\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg
-microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512
-microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.nuspec
-microsoft.netcore.dotnethostpolicy\2.1.0\runtime.json
-microsoft.netcore.dotnethostpolicy\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostresolver\2.1.0\.signature.p7s
-microsoft.netcore.dotnethostresolver\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg
-microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512
-microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.nuspec
-microsoft.netcore.dotnethostresolver\2.1.0\runtime.json
-microsoft.netcore.dotnethostresolver\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.targets\2.1.0\.signature.p7s
-microsoft.netcore.targets\2.1.0\lib\netstandard1.0\_._
-microsoft.netcore.targets\2.1.0\LICENSE.TXT
-microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg
-microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg.sha512
-microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.nuspec
-microsoft.netcore.targets\2.1.0\runtime.json
-microsoft.netcore.targets\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.targets\2.1.0\useSharedDesignerContext.txt
-microsoft.netcore.targets\2.1.0\version.txt
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg
-microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.4.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.4.txt
deleted file mode 100644
index 89337174bc..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.4.txt
+++ /dev/null
@@ -1,195 +0,0 @@
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg
-microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.5.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.5.txt
deleted file mode 100644
index 99f4fc5db2..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.5.txt
+++ /dev/null
@@ -1,214 +0,0 @@
-microsoft.aspnetcore.razor.design\2.1.2\.signature.p7s
-microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
-microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.1.2\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg
-microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512
-microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.nuspec
-microsoft.aspnetcore.razor.design\2.1.2\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll
-microsoft.aspnetcore.razor.design\2.1.2\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.CSharp.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.Razor.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Newtonsoft.Json.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.deps.json
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.runtimeconfig.json
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg
-microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.6.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.6.txt
deleted file mode 100644
index 62153a6836..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.1.6.txt
+++ /dev/null
@@ -1,675 +0,0 @@
-libuv\1.10.0\.nupkg.metadata
-libuv\1.10.0\.signature.p7s
-messagepack\1.7.3.4\.nupkg.metadata
-messagepack\1.7.3.4\.signature.p7s
-microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
-microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
-microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
-microsoft.applicationinsights\2.4.0\.nupkg.metadata
-microsoft.applicationinsights\2.4.0\.signature.p7s
-microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
-microsoft.aspnetcore.all\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.antiforgery\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.app\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.cookies\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.facebook\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.google\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.oauth\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.openidconnect\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.twitter\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.wsfederation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authorization.policy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authorization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.azureappservicesintegration\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.connections.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cookiepolicy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cors\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cryptography.internal\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hostfiltering\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.html.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.connections.common\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.http.connections\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.http.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.features\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.httpoverrides\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.httpspolicy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.jsonpatch\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.localization.routing\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.localization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.middlewareanalysis\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.analyzers\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.cors\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.dataannotations\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.json\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.localization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razorpages\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.taghelpers\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.nodeservices\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.owin\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor.design\2.1.2\.nupkg.metadata
-microsoft.aspnetcore.razor.language\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor.runtime\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecaching\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecompression\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.rewrite\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.routing.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.routing\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.httpsys\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.iisintegration\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.https\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.session\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.common\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.core\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.protocols.json\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.redis\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.spaservices.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.spaservices\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.staticfiles\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.websockets\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.webutilities\2.1.1\.nupkg.metadata
-microsoft.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
-microsoft.azure.keyvault\2.3.2\.nupkg.metadata
-microsoft.azure.keyvault\2.3.2\.signature.p7s
-microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
-microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
-microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
-microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp.workspaces\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.1.1\.nupkg.metadata
-microsoft.codeanalysis.workspaces.common\2.8.0\.nupkg.metadata
-microsoft.csharp\4.0.1\.nupkg.metadata
-microsoft.csharp\4.3.0\.nupkg.metadata
-microsoft.csharp\4.5.0\.nupkg.metadata
-microsoft.data.edm\5.8.2\.nupkg.metadata
-microsoft.data.odata\5.8.2\.nupkg.metadata
-microsoft.data.sqlite.core\2.1.0\.nupkg.metadata
-microsoft.data.sqlite\2.1.0\.nupkg.metadata
-microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.analyzers\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.design\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.inmemory\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.relational\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite.core\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlserver\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.tools\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.memory\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.redis\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.sqlserver\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.azurekeyvault\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.binder\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.commandline\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.environmentvariables\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.fileextensions\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.ini\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.json\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.keyperfile\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.usersecrets\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.xml\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencyinjection.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencyinjection\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.1.0\.nupkg.metadata
-microsoft.extensions.fileproviders.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.composite\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.embedded\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.physical\2.1.1\.nupkg.metadata
-microsoft.extensions.filesystemglobbing\2.1.1\.nupkg.metadata
-microsoft.extensions.hosting.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.hosting\2.1.1\.nupkg.metadata
-microsoft.extensions.http\2.1.1\.nupkg.metadata
-microsoft.extensions.identity.core\2.1.1\.nupkg.metadata
-microsoft.extensions.identity.stores\2.1.1\.nupkg.metadata
-microsoft.extensions.localization.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.localization\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.azureappservices\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.configuration\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.console\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.debug\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.eventsource\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.tracesource\2.1.1\.nupkg.metadata
-microsoft.extensions.logging\2.1.1\.nupkg.metadata
-microsoft.extensions.objectpool\2.1.1\.nupkg.metadata
-microsoft.extensions.options.configurationextensions\2.1.1\.nupkg.metadata
-microsoft.extensions.options\2.1.1\.nupkg.metadata
-microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
-microsoft.extensions.primitives\2.1.1\.nupkg.metadata
-microsoft.extensions.webencoders\2.1.1\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
-microsoft.identitymodel.logging\5.2.0\.nupkg.metadata
-microsoft.identitymodel.logging\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols.openidconnect\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols.openidconnect\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols.wsfederation\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols.wsfederation\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols\5.2.0\.signature.p7s
-microsoft.identitymodel.tokens.saml\5.2.0\.nupkg.metadata
-microsoft.identitymodel.tokens.saml\5.2.0\.signature.p7s
-microsoft.identitymodel.tokens\5.2.0\.nupkg.metadata
-microsoft.identitymodel.tokens\5.2.0\.signature.p7s
-microsoft.identitymodel.xml\5.2.0\.nupkg.metadata
-microsoft.identitymodel.xml\5.2.0\.signature.p7s
-microsoft.net.http.headers\2.1.1\.nupkg.metadata
-microsoft.netcore.app\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnetapphost\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnethostpolicy\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnethostresolver\2.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.signature.p7s
-microsoft.netcore.platforms\1.0.2\.nupkg.metadata
-microsoft.netcore.platforms\1.0.2\.signature.p7s
-microsoft.netcore.platforms\1.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.1.0\.signature.p7s
-microsoft.netcore.platforms\2.0.0\.nupkg.metadata
-microsoft.netcore.platforms\2.0.0\.signature.p7s
-microsoft.netcore.platforms\2.1.0\.nupkg.metadata
-microsoft.netcore.targets\1.0.1\.nupkg.metadata
-microsoft.netcore.targets\1.1.0\.nupkg.metadata
-microsoft.netcore.targets\2.1.0\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
-microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
-microsoft.rest.clientruntime\2.3.8\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.1.1\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.core\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.design\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg
-microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\List.cshtml
-microsoft.win32.primitives\4.0.1\.nupkg.metadata
-microsoft.win32.primitives\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.5.0\.nupkg.metadata
-netstandard.library\1.6.0\.nupkg.metadata
-netstandard.library\1.6.1\.nupkg.metadata
-netstandard.library\2.0.3\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.signature.p7s
-newtonsoft.json\10.0.1\.nupkg.metadata
-newtonsoft.json\10.0.1\.signature.p7s
-newtonsoft.json\11.0.2\.nupkg.metadata
-newtonsoft.json\11.0.2\.signature.p7s
-newtonsoft.json\9.0.1\.nupkg.metadata
-nuget.frameworks\4.7.0\.nupkg.metadata
-remotion.linq\2.2.0\.nupkg.metadata
-remotion.linq\2.2.0\.signature.p7s
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.native.system.io.compression\4.1.0\.nupkg.metadata
-runtime.native.system.io.compression\4.3.0\.nupkg.metadata
-runtime.native.system.net.http\4.0.1\.nupkg.metadata
-runtime.native.system.net.http\4.3.0\.nupkg.metadata
-runtime.native.system.net.security\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
-runtime.native.system\4.0.0\.nupkg.metadata
-runtime.native.system\4.3.0\.nupkg.metadata
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.signature.p7s
-sqlitepclraw.core\1.1.11\.nupkg.metadata
-sqlitepclraw.core\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
-stackexchange.redis.strongname\1.2.4\.nupkg.metadata
-stackexchange.redis.strongname\1.2.4\.signature.p7s
-system.appcontext\4.1.0\.nupkg.metadata
-system.appcontext\4.3.0\.nupkg.metadata
-system.buffers\4.0.0\.nupkg.metadata
-system.buffers\4.3.0\.nupkg.metadata
-system.buffers\4.5.0\.nupkg.metadata
-system.collections.concurrent\4.0.12\.nupkg.metadata
-system.collections.concurrent\4.3.0\.nupkg.metadata
-system.collections.immutable\1.3.0\.nupkg.metadata
-system.collections.immutable\1.3.1\.nupkg.metadata
-system.collections.immutable\1.5.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.nupkg.metadata
-system.collections.specialized\4.3.0\.nupkg.metadata
-system.collections\4.0.11\.nupkg.metadata
-system.collections\4.3.0\.nupkg.metadata
-system.componentmodel.annotations\4.5.0\.nupkg.metadata
-system.componentmodel.primitives\4.3.0\.nupkg.metadata
-system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
-system.componentmodel\4.3.0\.nupkg.metadata
-system.composition.attributedmodel\1.0.31\.nupkg.metadata
-system.composition.convention\1.0.31\.nupkg.metadata
-system.composition.hosting\1.0.31\.nupkg.metadata
-system.composition.runtime\1.0.31\.nupkg.metadata
-system.composition.typedparts\1.0.31\.nupkg.metadata
-system.composition\1.0.31\.nupkg.metadata
-system.console\4.0.0\.nupkg.metadata
-system.console\4.3.0\.nupkg.metadata
-system.data.sqlclient\4.5.1\.nupkg.metadata
-system.diagnostics.contracts\4.3.0\.nupkg.metadata
-system.diagnostics.debug\4.0.11\.nupkg.metadata
-system.diagnostics.debug\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
-system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
-system.diagnostics.process\4.3.0\.nupkg.metadata
-system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
-system.diagnostics.tools\4.0.1\.nupkg.metadata
-system.diagnostics.tools\4.3.0\.nupkg.metadata
-system.diagnostics.tracing\4.1.0\.nupkg.metadata
-system.diagnostics.tracing\4.3.0\.nupkg.metadata
-system.dynamic.runtime\4.0.11\.nupkg.metadata
-system.dynamic.runtime\4.3.0\.nupkg.metadata
-system.globalization.calendars\4.0.1\.nupkg.metadata
-system.globalization.calendars\4.3.0\.nupkg.metadata
-system.globalization.extensions\4.0.1\.nupkg.metadata
-system.globalization.extensions\4.3.0\.nupkg.metadata
-system.globalization\4.0.11\.nupkg.metadata
-system.globalization\4.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.2.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.2.0\.signature.p7s
-system.interactive.async\3.1.1\.nupkg.metadata
-system.interactive.async\3.1.1\.signature.p7s
-system.io.compression.zipfile\4.0.1\.nupkg.metadata
-system.io.compression.zipfile\4.3.0\.nupkg.metadata
-system.io.compression\4.1.0\.nupkg.metadata
-system.io.compression\4.3.0\.nupkg.metadata
-system.io.filesystem.primitives\4.0.1\.nupkg.metadata
-system.io.filesystem.primitives\4.3.0\.nupkg.metadata
-system.io.filesystem\4.0.1\.nupkg.metadata
-system.io.filesystem\4.3.0\.nupkg.metadata
-system.io.pipelines\4.5.0\.nupkg.metadata
-system.io\4.1.0\.nupkg.metadata
-system.io\4.3.0\.nupkg.metadata
-system.linq.expressions\4.1.0\.nupkg.metadata
-system.linq.expressions\4.3.0\.nupkg.metadata
-system.linq.parallel\4.3.0\.nupkg.metadata
-system.linq.queryable\4.0.1\.nupkg.metadata
-system.linq\4.1.0\.nupkg.metadata
-system.linq\4.3.0\.nupkg.metadata
-system.memory\4.5.1\.nupkg.metadata
-system.net.http\4.1.0\.nupkg.metadata
-system.net.http\4.1.0\.signature.p7s
-system.net.http\4.3.0\.nupkg.metadata
-system.net.http\4.3.0\.signature.p7s
-system.net.nameresolution\4.3.0\.nupkg.metadata
-system.net.primitives\4.0.11\.nupkg.metadata
-system.net.primitives\4.3.0\.nupkg.metadata
-system.net.security\4.3.0\.nupkg.metadata
-system.net.sockets\4.1.0\.nupkg.metadata
-system.net.sockets\4.3.0\.nupkg.metadata
-system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
-system.numerics.vectors\4.5.0\.nupkg.metadata
-system.objectmodel\4.0.12\.nupkg.metadata
-system.objectmodel\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.1.1\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
-system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
-system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
-system.reflection.emit\4.0.1\.nupkg.metadata
-system.reflection.emit\4.3.0\.nupkg.metadata
-system.reflection.extensions\4.0.1\.nupkg.metadata
-system.reflection.extensions\4.3.0\.nupkg.metadata
-system.reflection.metadata\1.4.1\.nupkg.metadata
-system.reflection.metadata\1.4.2\.nupkg.metadata
-system.reflection.metadata\1.6.0\.nupkg.metadata
-system.reflection.primitives\4.0.1\.nupkg.metadata
-system.reflection.primitives\4.3.0\.nupkg.metadata
-system.reflection.typeextensions\4.1.0\.nupkg.metadata
-system.reflection.typeextensions\4.3.0\.nupkg.metadata
-system.reflection\4.1.0\.nupkg.metadata
-system.reflection\4.3.0\.nupkg.metadata
-system.resources.resourcemanager\4.0.1\.nupkg.metadata
-system.resources.resourcemanager\4.3.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
-system.runtime.extensions\4.1.0\.nupkg.metadata
-system.runtime.extensions\4.3.0\.nupkg.metadata
-system.runtime.handles\4.0.1\.nupkg.metadata
-system.runtime.handles\4.3.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
-system.runtime.interopservices\4.1.0\.nupkg.metadata
-system.runtime.interopservices\4.3.0\.nupkg.metadata
-system.runtime.numerics\4.0.1\.nupkg.metadata
-system.runtime.numerics\4.3.0\.nupkg.metadata
-system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.0.2\.nupkg.metadata
-system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
-system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.nupkg.metadata
-system.runtime\4.1.0\.nupkg.metadata
-system.runtime\4.3.0\.nupkg.metadata
-system.security.accesscontrol\4.5.0\.nupkg.metadata
-system.security.claims\4.3.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.2.0\.nupkg.metadata
-system.security.cryptography.cng\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.5.0\.nupkg.metadata
-system.security.cryptography.csp\4.0.0\.nupkg.metadata
-system.security.cryptography.csp\4.3.0\.nupkg.metadata
-system.security.cryptography.encoding\4.0.0\.nupkg.metadata
-system.security.cryptography.encoding\4.3.0\.nupkg.metadata
-system.security.cryptography.openssl\4.0.0\.nupkg.metadata
-system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
-system.security.cryptography.primitives\4.0.0\.nupkg.metadata
-system.security.cryptography.primitives\4.3.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
-system.security.cryptography.xml\4.5.0\.nupkg.metadata
-system.security.permissions\4.5.0\.nupkg.metadata
-system.security.principal.windows\4.3.0\.nupkg.metadata
-system.security.principal.windows\4.5.0\.nupkg.metadata
-system.security.principal\4.3.0\.nupkg.metadata
-system.spatial\5.8.2\.nupkg.metadata
-system.text.encoding.codepages\4.3.0\.nupkg.metadata
-system.text.encoding.codepages\4.5.0\.nupkg.metadata
-system.text.encoding.extensions\4.0.11\.nupkg.metadata
-system.text.encoding.extensions\4.3.0\.nupkg.metadata
-system.text.encoding\4.0.11\.nupkg.metadata
-system.text.encoding\4.3.0\.nupkg.metadata
-system.text.encodings.web\4.3.1\.nupkg.metadata
-system.text.encodings.web\4.3.1\.signature.p7s
-system.text.encodings.web\4.5.0\.nupkg.metadata
-system.text.regularexpressions\4.1.0\.nupkg.metadata
-system.text.regularexpressions\4.3.0\.nupkg.metadata
-system.threading.channels\4.5.0\.nupkg.metadata
-system.threading.tasks.extensions\4.0.0\.nupkg.metadata
-system.threading.tasks.extensions\4.3.0\.nupkg.metadata
-system.threading.tasks.extensions\4.5.1\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.nupkg.metadata
-system.threading.tasks\4.0.11\.nupkg.metadata
-system.threading.tasks\4.3.0\.nupkg.metadata
-system.threading.thread\4.3.0\.nupkg.metadata
-system.threading.threadpool\4.3.0\.nupkg.metadata
-system.threading.timer\4.0.1\.nupkg.metadata
-system.threading.timer\4.3.0\.nupkg.metadata
-system.threading\4.0.11\.nupkg.metadata
-system.threading\4.3.0\.nupkg.metadata
-system.valuetuple\4.3.0\.nupkg.metadata
-system.valuetuple\4.5.0\.nupkg.metadata
-system.xml.readerwriter\4.0.11\.nupkg.metadata
-system.xml.readerwriter\4.3.0\.nupkg.metadata
-system.xml.xdocument\4.0.11\.nupkg.metadata
-system.xml.xdocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.0.1\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.nupkg.metadata
-system.xml.xmlserializer\4.0.11\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.nupkg.metadata
-system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.nupkg.metadata
-windowsazure.storage\8.1.4\.nupkg.metadata
-windowsazure.storage\8.1.4\.signature.p7s
diff --git a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.2.0.txt b/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.2.0.txt
deleted file mode 100644
index 08d3462b03..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch.Compat/ArchiveBaseline.2.2.0.txt
+++ /dev/null
@@ -1,1817 +0,0 @@
-libuv\1.10.0\.nupkg.metadata
-libuv\1.10.0\.signature.p7s
-messagepack\1.7.3.4\.nupkg.metadata
-messagepack\1.7.3.4\.signature.p7s
-microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
-microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
-microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
-microsoft.applicationinsights\2.4.0\.nupkg.metadata
-microsoft.applicationinsights\2.4.0\.signature.p7s
-microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
-microsoft.aspnetcore.all\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.all\2.2.0\.signature.p7s
-microsoft.aspnetcore.all\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.All.props
-microsoft.aspnetcore.all\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.All.targets
-microsoft.aspnetcore.all\2.2.0\lib\netcoreapp2.2\_._
-microsoft.aspnetcore.all\2.2.0\microsoft.aspnetcore.all.2.2.0.nupkg
-microsoft.aspnetcore.all\2.2.0\microsoft.aspnetcore.all.2.2.0.nupkg.sha512
-microsoft.aspnetcore.all\2.2.0\microsoft.aspnetcore.all.nuspec
-microsoft.aspnetcore.antiforgery\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.antiforgery\2.2.0\.signature.p7s
-microsoft.aspnetcore.antiforgery\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Antiforgery.dll
-microsoft.aspnetcore.antiforgery\2.2.0\microsoft.aspnetcore.antiforgery.2.2.0.nupkg
-microsoft.aspnetcore.antiforgery\2.2.0\microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512
-microsoft.aspnetcore.antiforgery\2.2.0\microsoft.aspnetcore.antiforgery.nuspec
-microsoft.aspnetcore.app\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.app\2.2.0\.signature.p7s
-microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.props
-microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.targets
-microsoft.aspnetcore.app\2.2.0\lib\netcoreapp2.2\_._
-microsoft.aspnetcore.app\2.2.0\microsoft.aspnetcore.app.2.2.0.nupkg
-microsoft.aspnetcore.app\2.2.0\microsoft.aspnetcore.app.2.2.0.nupkg.sha512
-microsoft.aspnetcore.app\2.2.0\microsoft.aspnetcore.app.nuspec
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\.signature.p7s
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\net461\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\microsoft.aspnetcore.applicationinsights.hostingstartup.2.2.0.nupkg
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\microsoft.aspnetcore.applicationinsights.hostingstartup.2.2.0.nupkg.sha512
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec
-microsoft.aspnetcore.authentication.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Abstractions.dll
-microsoft.aspnetcore.authentication.abstractions\2.2.0\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.authentication.abstractions\2.2.0\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.abstractions\2.2.0\microsoft.aspnetcore.authentication.abstractions.nuspec
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.dll
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.Views.dll
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\microsoft.aspnetcore.authentication.azuread.ui.2.2.0.nupkg
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\microsoft.aspnetcore.authentication.azuread.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\microsoft.aspnetcore.authentication.azuread.ui.nuspec
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Views.dll
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\microsoft.aspnetcore.authentication.azureadb2c.ui.2.2.0.nupkg
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\microsoft.aspnetcore.authentication.azureadb2c.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\microsoft.aspnetcore.authentication.azureadb2c.ui.nuspec
-microsoft.aspnetcore.authentication.cookies\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.cookies\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.cookies\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Cookies.dll
-microsoft.aspnetcore.authentication.cookies\2.2.0\microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg
-microsoft.aspnetcore.authentication.cookies\2.2.0\microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.cookies\2.2.0\microsoft.aspnetcore.authentication.cookies.nuspec
-microsoft.aspnetcore.authentication.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Core.dll
-microsoft.aspnetcore.authentication.core\2.2.0\microsoft.aspnetcore.authentication.core.2.2.0.nupkg
-microsoft.aspnetcore.authentication.core\2.2.0\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.core\2.2.0\microsoft.aspnetcore.authentication.core.nuspec
-microsoft.aspnetcore.authentication.facebook\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.facebook\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.facebook\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Facebook.dll
-microsoft.aspnetcore.authentication.facebook\2.2.0\microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg
-microsoft.aspnetcore.authentication.facebook\2.2.0\microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.facebook\2.2.0\microsoft.aspnetcore.authentication.facebook.nuspec
-microsoft.aspnetcore.authentication.google\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.google\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.google\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Google.dll
-microsoft.aspnetcore.authentication.google\2.2.0\microsoft.aspnetcore.authentication.google.2.2.0.nupkg
-microsoft.aspnetcore.authentication.google\2.2.0\microsoft.aspnetcore.authentication.google.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.google\2.2.0\microsoft.aspnetcore.authentication.google.nuspec
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\microsoft.aspnetcore.authentication.jwtbearer.nuspec
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\microsoft.aspnetcore.authentication.microsoftaccount.nuspec
-microsoft.aspnetcore.authentication.oauth\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.oauth\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.oauth\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OAuth.dll
-microsoft.aspnetcore.authentication.oauth\2.2.0\microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg
-microsoft.aspnetcore.authentication.oauth\2.2.0\microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.oauth\2.2.0\microsoft.aspnetcore.authentication.oauth.nuspec
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\microsoft.aspnetcore.authentication.openidconnect.nuspec
-microsoft.aspnetcore.authentication.twitter\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.twitter\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.twitter\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Twitter.dll
-microsoft.aspnetcore.authentication.twitter\2.2.0\microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg
-microsoft.aspnetcore.authentication.twitter\2.2.0\microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.twitter\2.2.0\microsoft.aspnetcore.authentication.twitter.nuspec
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.WsFederation.dll
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\microsoft.aspnetcore.authentication.wsfederation.nuspec
-microsoft.aspnetcore.authentication\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.dll
-microsoft.aspnetcore.authentication\2.2.0\microsoft.aspnetcore.authentication.2.2.0.nupkg
-microsoft.aspnetcore.authentication\2.2.0\microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication\2.2.0\microsoft.aspnetcore.authentication.nuspec
-microsoft.aspnetcore.authorization.policy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authorization.policy\2.2.0\.signature.p7s
-microsoft.aspnetcore.authorization.policy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.Policy.dll
-microsoft.aspnetcore.authorization.policy\2.2.0\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg
-microsoft.aspnetcore.authorization.policy\2.2.0\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authorization.policy\2.2.0\microsoft.aspnetcore.authorization.policy.nuspec
-microsoft.aspnetcore.authorization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authorization\2.2.0\.signature.p7s
-microsoft.aspnetcore.authorization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.dll
-microsoft.aspnetcore.authorization\2.2.0\microsoft.aspnetcore.authorization.2.2.0.nupkg
-microsoft.aspnetcore.authorization\2.2.0\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authorization\2.2.0\microsoft.aspnetcore.authorization.nuspec
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\.signature.p7s
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\net461\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\microsoft.aspnetcore.azureappservices.hostingstartup.2.2.0.nupkg
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\microsoft.aspnetcore.azureappservices.hostingstartup.2.2.0.nupkg.sha512
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\microsoft.aspnetcore.azureappservices.hostingstartup.nuspec
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\.signature.p7s
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.AzureAppServicesIntegration.dll
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\microsoft.aspnetcore.azureappservicesintegration.2.2.0.nupkg
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\microsoft.aspnetcore.azureappservicesintegration.2.2.0.nupkg.sha512
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\microsoft.aspnetcore.azureappservicesintegration.nuspec
-microsoft.aspnetcore.connections.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.connections.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.connections.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Connections.Abstractions.dll
-microsoft.aspnetcore.connections.abstractions\2.2.0\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.connections.abstractions\2.2.0\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.connections.abstractions\2.2.0\microsoft.aspnetcore.connections.abstractions.nuspec
-microsoft.aspnetcore.cookiepolicy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cookiepolicy\2.2.0\.signature.p7s
-microsoft.aspnetcore.cookiepolicy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.CookiePolicy.dll
-microsoft.aspnetcore.cookiepolicy\2.2.0\microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg
-microsoft.aspnetcore.cookiepolicy\2.2.0\microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cookiepolicy\2.2.0\microsoft.aspnetcore.cookiepolicy.nuspec
-microsoft.aspnetcore.cors\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cors\2.2.0\.signature.p7s
-microsoft.aspnetcore.cors\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cors.dll
-microsoft.aspnetcore.cors\2.2.0\microsoft.aspnetcore.cors.2.2.0.nupkg
-microsoft.aspnetcore.cors\2.2.0\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cors\2.2.0\microsoft.aspnetcore.cors.nuspec
-microsoft.aspnetcore.cryptography.internal\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cryptography.internal\2.2.0\.signature.p7s
-microsoft.aspnetcore.cryptography.internal\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.Internal.dll
-microsoft.aspnetcore.cryptography.internal\2.2.0\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg
-microsoft.aspnetcore.cryptography.internal\2.2.0\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cryptography.internal\2.2.0\microsoft.aspnetcore.cryptography.internal.nuspec
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\.signature.p7s
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\microsoft.aspnetcore.cryptography.keyderivation.nuspec
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Abstractions.dll
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\microsoft.aspnetcore.dataprotection.abstractions.nuspec
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureKeyVault.dll
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\microsoft.aspnetcore.dataprotection.azurekeyvault.2.2.0.nupkg
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\microsoft.aspnetcore.dataprotection.azurekeyvault.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\microsoft.aspnetcore.dataprotection.azurekeyvault.nuspec
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureStorage.dll
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\microsoft.aspnetcore.dataprotection.azurestorage.2.2.0.nupkg
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\microsoft.aspnetcore.dataprotection.azurestorage.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\microsoft.aspnetcore.dataprotection.azurestorage.nuspec
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Extensions.dll
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\microsoft.aspnetcore.dataprotection.extensions.nuspec
-microsoft.aspnetcore.dataprotection\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.dll
-microsoft.aspnetcore.dataprotection\2.2.0\microsoft.aspnetcore.dataprotection.2.2.0.nupkg
-microsoft.aspnetcore.dataprotection\2.2.0\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection\2.2.0\microsoft.aspnetcore.dataprotection.nuspec
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.Abstractions.dll
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\microsoft.aspnetcore.diagnostics.abstractions.nuspec
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\microsoft.aspnetcore.diagnostics.healthchecks.nuspec
-microsoft.aspnetcore.diagnostics\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.dll
-microsoft.aspnetcore.diagnostics\2.2.0\microsoft.aspnetcore.diagnostics.2.2.0.nupkg
-microsoft.aspnetcore.diagnostics\2.2.0\microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics\2.2.0\microsoft.aspnetcore.diagnostics.nuspec
-microsoft.aspnetcore.hostfiltering\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hostfiltering\2.2.0\.signature.p7s
-microsoft.aspnetcore.hostfiltering\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HostFiltering.dll
-microsoft.aspnetcore.hostfiltering\2.2.0\microsoft.aspnetcore.hostfiltering.2.2.0.nupkg
-microsoft.aspnetcore.hostfiltering\2.2.0\microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hostfiltering\2.2.0\microsoft.aspnetcore.hostfiltering.nuspec
-microsoft.aspnetcore.hosting.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Abstractions.dll
-microsoft.aspnetcore.hosting.abstractions\2.2.0\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.hosting.abstractions\2.2.0\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting.abstractions\2.2.0\microsoft.aspnetcore.hosting.abstractions.nuspec
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\microsoft.aspnetcore.hosting.server.abstractions.nuspec
-microsoft.aspnetcore.hosting\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll
-microsoft.aspnetcore.hosting\2.2.0\microsoft.aspnetcore.hosting.2.2.0.nupkg
-microsoft.aspnetcore.hosting\2.2.0\microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting\2.2.0\microsoft.aspnetcore.hosting.nuspec
-microsoft.aspnetcore.html.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.html.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.html.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Html.Abstractions.dll
-microsoft.aspnetcore.html.abstractions\2.2.0\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.html.abstractions\2.2.0\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.html.abstractions\2.2.0\microsoft.aspnetcore.html.abstractions.nuspec
-microsoft.aspnetcore.http.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll
-microsoft.aspnetcore.http.abstractions\2.2.0\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.http.abstractions\2.2.0\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.abstractions\2.2.0\microsoft.aspnetcore.http.abstractions.nuspec
-microsoft.aspnetcore.http.connections.common\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.http.connections.common\1.1.0\.signature.p7s
-microsoft.aspnetcore.http.connections.common\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.Common.dll
-microsoft.aspnetcore.http.connections.common\1.1.0\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg
-microsoft.aspnetcore.http.connections.common\1.1.0\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512
-microsoft.aspnetcore.http.connections.common\1.1.0\microsoft.aspnetcore.http.connections.common.nuspec
-microsoft.aspnetcore.http.connections\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.http.connections\1.1.0\.signature.p7s
-microsoft.aspnetcore.http.connections\1.1.0\lib\netcoreapp2.2\Microsoft.AspNetCore.Http.Connections.dll
-microsoft.aspnetcore.http.connections\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.dll
-microsoft.aspnetcore.http.connections\1.1.0\microsoft.aspnetcore.http.connections.1.1.0.nupkg
-microsoft.aspnetcore.http.connections\1.1.0\microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512
-microsoft.aspnetcore.http.connections\1.1.0\microsoft.aspnetcore.http.connections.nuspec
-microsoft.aspnetcore.http.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll
-microsoft.aspnetcore.http.extensions\2.2.0\microsoft.aspnetcore.http.extensions.2.2.0.nupkg
-microsoft.aspnetcore.http.extensions\2.2.0\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.extensions\2.2.0\microsoft.aspnetcore.http.extensions.nuspec
-microsoft.aspnetcore.http.features\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.features\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.features\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll
-microsoft.aspnetcore.http.features\2.2.0\microsoft.aspnetcore.http.features.2.2.0.nupkg
-microsoft.aspnetcore.http.features\2.2.0\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.features\2.2.0\microsoft.aspnetcore.http.features.nuspec
-microsoft.aspnetcore.http\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http\2.2.0\.signature.p7s
-microsoft.aspnetcore.http\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.dll
-microsoft.aspnetcore.http\2.2.0\microsoft.aspnetcore.http.2.2.0.nupkg
-microsoft.aspnetcore.http\2.2.0\microsoft.aspnetcore.http.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http\2.2.0\microsoft.aspnetcore.http.nuspec
-microsoft.aspnetcore.httpoverrides\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.httpoverrides\2.2.0\.signature.p7s
-microsoft.aspnetcore.httpoverrides\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HttpOverrides.dll
-microsoft.aspnetcore.httpoverrides\2.2.0\microsoft.aspnetcore.httpoverrides.2.2.0.nupkg
-microsoft.aspnetcore.httpoverrides\2.2.0\microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512
-microsoft.aspnetcore.httpoverrides\2.2.0\microsoft.aspnetcore.httpoverrides.nuspec
-microsoft.aspnetcore.httpspolicy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.httpspolicy\2.2.0\.signature.p7s
-microsoft.aspnetcore.httpspolicy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HttpsPolicy.dll
-microsoft.aspnetcore.httpspolicy\2.2.0\microsoft.aspnetcore.httpspolicy.2.2.0.nupkg
-microsoft.aspnetcore.httpspolicy\2.2.0\microsoft.aspnetcore.httpspolicy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.httpspolicy\2.2.0\microsoft.aspnetcore.httpspolicy.nuspec
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\microsoft.aspnetcore.identity.entityframeworkcore.nuspec
-microsoft.aspnetcore.identity.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.dll
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.V3.dll
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.V4.dll
-microsoft.aspnetcore.identity.ui\2.2.0\microsoft.aspnetcore.identity.ui.2.2.0.nupkg
-microsoft.aspnetcore.identity.ui\2.2.0\microsoft.aspnetcore.identity.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity.ui\2.2.0\microsoft.aspnetcore.identity.ui.nuspec
-microsoft.aspnetcore.identity.ui\2.2.0\THIRD-PARTY-NOTICES.txt
-microsoft.aspnetcore.identity\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.dll
-microsoft.aspnetcore.identity\2.2.0\microsoft.aspnetcore.identity.2.2.0.nupkg
-microsoft.aspnetcore.identity\2.2.0\microsoft.aspnetcore.identity.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity\2.2.0\microsoft.aspnetcore.identity.nuspec
-microsoft.aspnetcore.jsonpatch\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.jsonpatch\2.2.0\.signature.p7s
-microsoft.aspnetcore.jsonpatch\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.JsonPatch.dll
-microsoft.aspnetcore.jsonpatch\2.2.0\microsoft.aspnetcore.jsonpatch.2.2.0.nupkg
-microsoft.aspnetcore.jsonpatch\2.2.0\microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512
-microsoft.aspnetcore.jsonpatch\2.2.0\microsoft.aspnetcore.jsonpatch.nuspec
-microsoft.aspnetcore.localization.routing\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.localization.routing\2.2.0\.signature.p7s
-microsoft.aspnetcore.localization.routing\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Localization.Routing.dll
-microsoft.aspnetcore.localization.routing\2.2.0\microsoft.aspnetcore.localization.routing.2.2.0.nupkg
-microsoft.aspnetcore.localization.routing\2.2.0\microsoft.aspnetcore.localization.routing.2.2.0.nupkg.sha512
-microsoft.aspnetcore.localization.routing\2.2.0\microsoft.aspnetcore.localization.routing.nuspec
-microsoft.aspnetcore.localization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.localization\2.2.0\.signature.p7s
-microsoft.aspnetcore.localization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Localization.dll
-microsoft.aspnetcore.localization\2.2.0\microsoft.aspnetcore.localization.2.2.0.nupkg
-microsoft.aspnetcore.localization\2.2.0\microsoft.aspnetcore.localization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.localization\2.2.0\microsoft.aspnetcore.localization.nuspec
-microsoft.aspnetcore.middlewareanalysis\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.middlewareanalysis\2.2.0\.signature.p7s
-microsoft.aspnetcore.middlewareanalysis\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.MiddlewareAnalysis.dll
-microsoft.aspnetcore.middlewareanalysis\2.2.0\microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg
-microsoft.aspnetcore.middlewareanalysis\2.2.0\microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg.sha512
-microsoft.aspnetcore.middlewareanalysis\2.2.0\microsoft.aspnetcore.middlewareanalysis.nuspec
-microsoft.aspnetcore.mvc.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll
-microsoft.aspnetcore.mvc.abstractions\2.2.0\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.mvc.abstractions\2.2.0\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.abstractions\2.2.0\microsoft.aspnetcore.mvc.abstractions.nuspec
-microsoft.aspnetcore.mvc.analyzers\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.analyzers\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.analyzers\2.2.0\analyzers\dotnet\cs\Microsoft.AspNetCore.Mvc.Analyzers.dll
-microsoft.aspnetcore.mvc.analyzers\2.2.0\microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg
-microsoft.aspnetcore.mvc.analyzers\2.2.0\microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.analyzers\2.2.0\microsoft.aspnetcore.mvc.analyzers.nuspec
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ApiExplorer.dll
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\microsoft.aspnetcore.mvc.apiexplorer.nuspec
-microsoft.aspnetcore.mvc.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll
-microsoft.aspnetcore.mvc.core\2.2.0\microsoft.aspnetcore.mvc.core.2.2.0.nupkg
-microsoft.aspnetcore.mvc.core\2.2.0\microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.core\2.2.0\microsoft.aspnetcore.mvc.core.nuspec
-microsoft.aspnetcore.mvc.cors\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.cors\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.cors\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Cors.dll
-microsoft.aspnetcore.mvc.cors\2.2.0\microsoft.aspnetcore.mvc.cors.2.2.0.nupkg
-microsoft.aspnetcore.mvc.cors\2.2.0\microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.cors\2.2.0\microsoft.aspnetcore.mvc.cors.nuspec
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.DataAnnotations.dll
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\microsoft.aspnetcore.mvc.dataannotations.nuspec
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Json.dll
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\microsoft.aspnetcore.mvc.formatters.json.nuspec
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\microsoft.aspnetcore.mvc.formatters.xml.nuspec
-microsoft.aspnetcore.mvc.localization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.localization\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.localization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Localization.dll
-microsoft.aspnetcore.mvc.localization\2.2.0\microsoft.aspnetcore.mvc.localization.2.2.0.nupkg
-microsoft.aspnetcore.mvc.localization\2.2.0\microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.localization\2.2.0\microsoft.aspnetcore.mvc.localization.nuspec
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\lib\net46\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\microsoft.aspnetcore.mvc.razor.extensions.nuspec
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\net461\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.exe
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\net461\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\netcoreapp2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec
-microsoft.aspnetcore.mvc.razor\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.dll
-microsoft.aspnetcore.mvc.razor\2.2.0\microsoft.aspnetcore.mvc.razor.2.2.0.nupkg
-microsoft.aspnetcore.mvc.razor\2.2.0\microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor\2.2.0\microsoft.aspnetcore.mvc.razor.nuspec
-microsoft.aspnetcore.mvc.razorpages\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razorpages\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razorpages\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.RazorPages.dll
-microsoft.aspnetcore.mvc.razorpages\2.2.0\microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg
-microsoft.aspnetcore.mvc.razorpages\2.2.0\microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razorpages\2.2.0\microsoft.aspnetcore.mvc.razorpages.nuspec
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.TagHelpers.dll
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\microsoft.aspnetcore.mvc.taghelpers.nuspec
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ViewFeatures.dll
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\microsoft.aspnetcore.mvc.viewfeatures.nuspec
-microsoft.aspnetcore.mvc\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.dll
-microsoft.aspnetcore.mvc\2.2.0\microsoft.aspnetcore.mvc.2.2.0.nupkg
-microsoft.aspnetcore.mvc\2.2.0\microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc\2.2.0\microsoft.aspnetcore.mvc.nuspec
-microsoft.aspnetcore.nodeservices\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.nodeservices\2.2.0\.signature.p7s
-microsoft.aspnetcore.nodeservices\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.NodeServices.dll
-microsoft.aspnetcore.nodeservices\2.2.0\microsoft.aspnetcore.nodeservices.2.2.0.nupkg
-microsoft.aspnetcore.nodeservices\2.2.0\microsoft.aspnetcore.nodeservices.2.2.0.nupkg.sha512
-microsoft.aspnetcore.nodeservices\2.2.0\microsoft.aspnetcore.nodeservices.nuspec
-microsoft.aspnetcore.owin\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.owin\2.2.0\.signature.p7s
-microsoft.aspnetcore.owin\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Owin.dll
-microsoft.aspnetcore.owin\2.2.0\microsoft.aspnetcore.owin.2.2.0.nupkg
-microsoft.aspnetcore.owin\2.2.0\microsoft.aspnetcore.owin.2.2.0.nupkg.sha512
-microsoft.aspnetcore.owin\2.2.0\microsoft.aspnetcore.owin.nuspec
-microsoft.aspnetcore.razor.design\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.design\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
-microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.2.0\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.2.0\microsoft.aspnetcore.razor.design.2.2.0.nupkg
-microsoft.aspnetcore.razor.design\2.2.0\microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.design\2.2.0\microsoft.aspnetcore.razor.design.nuspec
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.CSharp.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.Razor.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Newtonsoft.Json.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.deps.json
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.runtimeconfig.json
-microsoft.aspnetcore.razor.language\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.language\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.language\2.2.0\lib\net46\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.language\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.language\2.2.0\microsoft.aspnetcore.razor.language.2.2.0.nupkg
-microsoft.aspnetcore.razor.language\2.2.0\microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.language\2.2.0\microsoft.aspnetcore.razor.language.nuspec
-microsoft.aspnetcore.razor.runtime\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.runtime\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.runtime\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Runtime.dll
-microsoft.aspnetcore.razor.runtime\2.2.0\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg
-microsoft.aspnetcore.razor.runtime\2.2.0\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.runtime\2.2.0\microsoft.aspnetcore.razor.runtime.nuspec
-microsoft.aspnetcore.razor\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.dll
-microsoft.aspnetcore.razor\2.2.0\microsoft.aspnetcore.razor.2.2.0.nupkg
-microsoft.aspnetcore.razor\2.2.0\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor\2.2.0\microsoft.aspnetcore.razor.nuspec
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\microsoft.aspnetcore.responsecaching.abstractions.nuspec
-microsoft.aspnetcore.responsecaching\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecaching\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecaching\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.dll
-microsoft.aspnetcore.responsecaching\2.2.0\microsoft.aspnetcore.responsecaching.2.2.0.nupkg
-microsoft.aspnetcore.responsecaching\2.2.0\microsoft.aspnetcore.responsecaching.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecaching\2.2.0\microsoft.aspnetcore.responsecaching.nuspec
-microsoft.aspnetcore.responsecompression\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecompression\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecompression\2.2.0\lib\net461\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\microsoft.aspnetcore.responsecompression.2.2.0.nupkg
-microsoft.aspnetcore.responsecompression\2.2.0\microsoft.aspnetcore.responsecompression.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecompression\2.2.0\microsoft.aspnetcore.responsecompression.nuspec
-microsoft.aspnetcore.rewrite\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.rewrite\2.2.0\.signature.p7s
-microsoft.aspnetcore.rewrite\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Rewrite.dll
-microsoft.aspnetcore.rewrite\2.2.0\microsoft.aspnetcore.rewrite.2.2.0.nupkg
-microsoft.aspnetcore.rewrite\2.2.0\microsoft.aspnetcore.rewrite.2.2.0.nupkg.sha512
-microsoft.aspnetcore.rewrite\2.2.0\microsoft.aspnetcore.rewrite.nuspec
-microsoft.aspnetcore.routing.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.routing.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.routing.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll
-microsoft.aspnetcore.routing.abstractions\2.2.0\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.routing.abstractions\2.2.0\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.routing.abstractions\2.2.0\microsoft.aspnetcore.routing.abstractions.nuspec
-microsoft.aspnetcore.routing\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.routing\2.2.0\.signature.p7s
-microsoft.aspnetcore.routing\2.2.0\lib\netcoreapp2.2\Microsoft.AspNetCore.Routing.dll
-microsoft.aspnetcore.routing\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Routing.dll
-microsoft.aspnetcore.routing\2.2.0\microsoft.aspnetcore.routing.2.2.0.nupkg
-microsoft.aspnetcore.routing\2.2.0\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512
-microsoft.aspnetcore.routing\2.2.0\microsoft.aspnetcore.routing.nuspec
-microsoft.aspnetcore.server.httpsys\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.httpsys\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.httpsys\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.HttpSys.dll
-microsoft.aspnetcore.server.httpsys\2.2.0\microsoft.aspnetcore.server.httpsys.2.2.0.nupkg
-microsoft.aspnetcore.server.httpsys\2.2.0\microsoft.aspnetcore.server.httpsys.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.httpsys\2.2.0\microsoft.aspnetcore.server.httpsys.nuspec
-microsoft.aspnetcore.server.iis\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.iis\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.iis\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Server.IIS.targets
-microsoft.aspnetcore.server.iis\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.IIS.dll
-microsoft.aspnetcore.server.iis\2.2.0\microsoft.aspnetcore.server.iis.2.2.0.nupkg
-microsoft.aspnetcore.server.iis\2.2.0\microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.iis\2.2.0\microsoft.aspnetcore.server.iis.nuspec
-microsoft.aspnetcore.server.iis\2.2.0\runtimes\win-x64\nativeassets\netcoreapp2.2\aspnetcorev2_inprocess.dll
-microsoft.aspnetcore.server.iis\2.2.0\runtimes\win-x86\nativeassets\netcoreapp2.2\aspnetcorev2_inprocess.dll
-microsoft.aspnetcore.server.iisintegration\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.iisintegration\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.iisintegration\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.targets
-microsoft.aspnetcore.server.iisintegration\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.dll
-microsoft.aspnetcore.server.iisintegration\2.2.0\microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg
-microsoft.aspnetcore.server.iisintegration\2.2.0\microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.iisintegration\2.2.0\microsoft.aspnetcore.server.iisintegration.nuspec
-microsoft.aspnetcore.server.kestrel.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.core\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Core.dll
-microsoft.aspnetcore.server.kestrel.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Core.dll
-microsoft.aspnetcore.server.kestrel.core\2.2.0\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel.core\2.2.0\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.core\2.2.0\microsoft.aspnetcore.server.kestrel.core.nuspec
-microsoft.aspnetcore.server.kestrel.https\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.https\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.https\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Https.dll
-microsoft.aspnetcore.server.kestrel.https\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll
-microsoft.aspnetcore.server.kestrel.https\2.2.0\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel.https\2.2.0\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.https\2.2.0\microsoft.aspnetcore.server.kestrel.https.nuspec
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\microsoft.aspnetcore.server.kestrel.transport.libuv.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\microsoft.aspnetcore.server.kestrel.transport.libuv.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec
-microsoft.aspnetcore.server.kestrel\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.dll
-microsoft.aspnetcore.server.kestrel\2.2.0\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg
-microsoft.aspnetcore.server.kestrel\2.2.0\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel\2.2.0\microsoft.aspnetcore.server.kestrel.nuspec
-microsoft.aspnetcore.session\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.session\2.2.0\.signature.p7s
-microsoft.aspnetcore.session\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Session.dll
-microsoft.aspnetcore.session\2.2.0\microsoft.aspnetcore.session.2.2.0.nupkg
-microsoft.aspnetcore.session\2.2.0\microsoft.aspnetcore.session.2.2.0.nupkg.sha512
-microsoft.aspnetcore.session\2.2.0\microsoft.aspnetcore.session.nuspec
-microsoft.aspnetcore.signalr.common\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.common\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.common\1.1.0\lib\netcoreapp2.2\Microsoft.AspNetCore.SignalR.Common.dll
-microsoft.aspnetcore.signalr.common\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Common.dll
-microsoft.aspnetcore.signalr.common\1.1.0\microsoft.aspnetcore.signalr.common.1.1.0.nupkg
-microsoft.aspnetcore.signalr.common\1.1.0\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.common\1.1.0\microsoft.aspnetcore.signalr.common.nuspec
-microsoft.aspnetcore.signalr.core\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.core\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.core\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Core.dll
-microsoft.aspnetcore.signalr.core\1.1.0\microsoft.aspnetcore.signalr.core.1.1.0.nupkg
-microsoft.aspnetcore.signalr.core\1.1.0\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.core\1.1.0\microsoft.aspnetcore.signalr.core.nuspec
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\microsoft.aspnetcore.signalr.protocols.json.nuspec
-microsoft.aspnetcore.signalr.redis\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.redis\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.redis\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Redis.dll
-microsoft.aspnetcore.signalr.redis\1.1.0\microsoft.aspnetcore.signalr.redis.1.1.0.nupkg
-microsoft.aspnetcore.signalr.redis\1.1.0\microsoft.aspnetcore.signalr.redis.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.redis\1.1.0\microsoft.aspnetcore.signalr.redis.nuspec
-microsoft.aspnetcore.signalr\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.dll
-microsoft.aspnetcore.signalr\1.1.0\microsoft.aspnetcore.signalr.1.1.0.nupkg
-microsoft.aspnetcore.signalr\1.1.0\microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr\1.1.0\microsoft.aspnetcore.signalr.nuspec
-microsoft.aspnetcore.spaservices.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.spaservices.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.spaservices.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.Extensions.dll
-microsoft.aspnetcore.spaservices.extensions\2.2.0\microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg
-microsoft.aspnetcore.spaservices.extensions\2.2.0\microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.spaservices.extensions\2.2.0\microsoft.aspnetcore.spaservices.extensions.nuspec
-microsoft.aspnetcore.spaservices\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.spaservices\2.2.0\.signature.p7s
-microsoft.aspnetcore.spaservices\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.dll
-microsoft.aspnetcore.spaservices\2.2.0\microsoft.aspnetcore.spaservices.2.2.0.nupkg
-microsoft.aspnetcore.spaservices\2.2.0\microsoft.aspnetcore.spaservices.2.2.0.nupkg.sha512
-microsoft.aspnetcore.spaservices\2.2.0\microsoft.aspnetcore.spaservices.nuspec
-microsoft.aspnetcore.staticfiles\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.staticfiles\2.2.0\.signature.p7s
-microsoft.aspnetcore.staticfiles\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.StaticFiles.dll
-microsoft.aspnetcore.staticfiles\2.2.0\microsoft.aspnetcore.staticfiles.2.2.0.nupkg
-microsoft.aspnetcore.staticfiles\2.2.0\microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512
-microsoft.aspnetcore.staticfiles\2.2.0\microsoft.aspnetcore.staticfiles.nuspec
-microsoft.aspnetcore.websockets\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.websockets\2.2.0\.signature.p7s
-microsoft.aspnetcore.websockets\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebSockets.dll
-microsoft.aspnetcore.websockets\2.2.0\microsoft.aspnetcore.websockets.2.2.0.nupkg
-microsoft.aspnetcore.websockets\2.2.0\microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512
-microsoft.aspnetcore.websockets\2.2.0\microsoft.aspnetcore.websockets.nuspec
-microsoft.aspnetcore.webutilities\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.webutilities\2.2.0\.signature.p7s
-microsoft.aspnetcore.webutilities\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll
-microsoft.aspnetcore.webutilities\2.2.0\microsoft.aspnetcore.webutilities.2.2.0.nupkg
-microsoft.aspnetcore.webutilities\2.2.0\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512
-microsoft.aspnetcore.webutilities\2.2.0\microsoft.aspnetcore.webutilities.nuspec
-microsoft.aspnetcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore\2.2.0\.signature.p7s
-microsoft.aspnetcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.dll
-microsoft.aspnetcore\2.2.0\microsoft.aspnetcore.2.2.0.nupkg
-microsoft.aspnetcore\2.2.0\microsoft.aspnetcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore\2.2.0\microsoft.aspnetcore.nuspec
-microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
-microsoft.azure.keyvault\2.3.2\.nupkg.metadata
-microsoft.azure.keyvault\2.3.2\.signature.p7s
-microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
-microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
-microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
-microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.2.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.2.0\.signature.p7s
-microsoft.codeanalysis.razor\2.2.0\lib\net46\Microsoft.CodeAnalysis.Razor.dll
-microsoft.codeanalysis.razor\2.2.0\lib\netstandard2.0\Microsoft.CodeAnalysis.Razor.dll
-microsoft.codeanalysis.razor\2.2.0\microsoft.codeanalysis.razor.2.2.0.nupkg
-microsoft.codeanalysis.razor\2.2.0\microsoft.codeanalysis.razor.2.2.0.nupkg.sha512
-microsoft.codeanalysis.razor\2.2.0\microsoft.codeanalysis.razor.nuspec
-microsoft.csharp\4.0.1\.nupkg.metadata
-microsoft.csharp\4.3.0\.nupkg.metadata
-microsoft.csharp\4.5.0\.nupkg.metadata
-microsoft.data.edm\5.8.2\.nupkg.metadata
-microsoft.data.odata\5.8.2\.nupkg.metadata
-microsoft.data.sqlite.core\2.2.0\.nupkg.metadata
-microsoft.data.sqlite.core\2.2.0\.signature.p7s
-microsoft.data.sqlite.core\2.2.0\lib\netstandard2.0\Microsoft.Data.Sqlite.dll
-microsoft.data.sqlite.core\2.2.0\microsoft.data.sqlite.core.2.2.0.nupkg
-microsoft.data.sqlite.core\2.2.0\microsoft.data.sqlite.core.2.2.0.nupkg.sha512
-microsoft.data.sqlite.core\2.2.0\microsoft.data.sqlite.core.nuspec
-microsoft.data.sqlite\2.2.0\.nupkg.metadata
-microsoft.data.sqlite\2.2.0\.signature.p7s
-microsoft.data.sqlite\2.2.0\lib\netstandard2.0\_._
-microsoft.data.sqlite\2.2.0\microsoft.data.sqlite.2.2.0.nupkg
-microsoft.data.sqlite\2.2.0\microsoft.data.sqlite.2.2.0.nupkg.sha512
-microsoft.data.sqlite\2.2.0\microsoft.data.sqlite.nuspec
-microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.abstractions\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-microsoft.entityframeworkcore.abstractions\2.2.0\microsoft.entityframeworkcore.abstractions.2.2.0.nupkg
-microsoft.entityframeworkcore.abstractions\2.2.0\microsoft.entityframeworkcore.abstractions.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.abstractions\2.2.0\microsoft.entityframeworkcore.abstractions.nuspec
-microsoft.entityframeworkcore.analyzers\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.analyzers\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.analyzers\2.2.0\analyzers\dotnet\cs\Microsoft.EntityFrameworkCore.Analyzers.dll
-microsoft.entityframeworkcore.analyzers\2.2.0\microsoft.entityframeworkcore.analyzers.2.2.0.nupkg
-microsoft.entityframeworkcore.analyzers\2.2.0\microsoft.entityframeworkcore.analyzers.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.analyzers\2.2.0\microsoft.entityframeworkcore.analyzers.nuspec
-microsoft.entityframeworkcore.design\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.design\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.design\2.2.0\build\net461\Microsoft.EntityFrameworkCore.Design.props
-microsoft.entityframeworkcore.design\2.2.0\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props
-microsoft.entityframeworkcore.design\2.2.0\lib\net461\Microsoft.EntityFrameworkCore.Design.dll
-microsoft.entityframeworkcore.design\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Design.dll
-microsoft.entityframeworkcore.design\2.2.0\microsoft.entityframeworkcore.design.2.2.0.nupkg
-microsoft.entityframeworkcore.design\2.2.0\microsoft.entityframeworkcore.design.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.design\2.2.0\microsoft.entityframeworkcore.design.nuspec
-microsoft.entityframeworkcore.inmemory\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.inmemory\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.inmemory\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll
-microsoft.entityframeworkcore.inmemory\2.2.0\microsoft.entityframeworkcore.inmemory.2.2.0.nupkg
-microsoft.entityframeworkcore.inmemory\2.2.0\microsoft.entityframeworkcore.inmemory.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.inmemory\2.2.0\microsoft.entityframeworkcore.inmemory.nuspec
-microsoft.entityframeworkcore.relational\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.relational\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.relational\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Relational.dll
-microsoft.entityframeworkcore.relational\2.2.0\microsoft.entityframeworkcore.relational.2.2.0.nupkg
-microsoft.entityframeworkcore.relational\2.2.0\microsoft.entityframeworkcore.relational.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.relational\2.2.0\microsoft.entityframeworkcore.relational.nuspec
-microsoft.entityframeworkcore.sqlite.core\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite.core\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlite.core\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Sqlite.dll
-microsoft.entityframeworkcore.sqlite.core\2.2.0\microsoft.entityframeworkcore.sqlite.core.2.2.0.nupkg
-microsoft.entityframeworkcore.sqlite.core\2.2.0\microsoft.entityframeworkcore.sqlite.core.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlite.core\2.2.0\microsoft.entityframeworkcore.sqlite.core.nuspec
-microsoft.entityframeworkcore.sqlite\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlite\2.2.0\lib\netstandard2.0\_._
-microsoft.entityframeworkcore.sqlite\2.2.0\microsoft.entityframeworkcore.sqlite.2.2.0.nupkg
-microsoft.entityframeworkcore.sqlite\2.2.0\microsoft.entityframeworkcore.sqlite.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlite\2.2.0\microsoft.entityframeworkcore.sqlite.nuspec
-microsoft.entityframeworkcore.sqlserver\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlserver\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlserver\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.SqlServer.dll
-microsoft.entityframeworkcore.sqlserver\2.2.0\microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg
-microsoft.entityframeworkcore.sqlserver\2.2.0\microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlserver\2.2.0\microsoft.entityframeworkcore.sqlserver.nuspec
-microsoft.entityframeworkcore.tools\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.tools\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.tools\2.2.0\lib\netstandard2.0\_._
-microsoft.entityframeworkcore.tools\2.2.0\microsoft.entityframeworkcore.tools.2.2.0.nupkg
-microsoft.entityframeworkcore.tools\2.2.0\microsoft.entityframeworkcore.tools.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.tools\2.2.0\microsoft.entityframeworkcore.tools.nuspec
-microsoft.entityframeworkcore.tools\2.2.0\tools\about_EntityFrameworkCore.help.txt
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.PowerShell2.psd1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.PowerShell2.psm1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.psd1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.psm1
-microsoft.entityframeworkcore.tools\2.2.0\tools\init.ps1
-microsoft.entityframeworkcore.tools\2.2.0\tools\install.ps1
-microsoft.entityframeworkcore.tools\2.2.0\tools\net461\any\ef.exe
-microsoft.entityframeworkcore.tools\2.2.0\tools\net461\win-x86\ef.exe
-microsoft.entityframeworkcore.tools\2.2.0\tools\netcoreapp2.0\any\ef.dll
-microsoft.entityframeworkcore.tools\2.2.0\tools\netcoreapp2.0\any\ef.runtimeconfig.json
-microsoft.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll
-microsoft.entityframeworkcore\2.2.0\microsoft.entityframeworkcore.2.2.0.nupkg
-microsoft.entityframeworkcore\2.2.0\microsoft.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore\2.2.0\microsoft.entityframeworkcore.nuspec
-microsoft.extensions.caching.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.caching.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll
-microsoft.extensions.caching.abstractions\2.2.0\microsoft.extensions.caching.abstractions.2.2.0.nupkg
-microsoft.extensions.caching.abstractions\2.2.0\microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.caching.abstractions\2.2.0\microsoft.extensions.caching.abstractions.nuspec
-microsoft.extensions.caching.memory\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.memory\2.2.0\.signature.p7s
-microsoft.extensions.caching.memory\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll
-microsoft.extensions.caching.memory\2.2.0\microsoft.extensions.caching.memory.2.2.0.nupkg
-microsoft.extensions.caching.memory\2.2.0\microsoft.extensions.caching.memory.2.2.0.nupkg.sha512
-microsoft.extensions.caching.memory\2.2.0\microsoft.extensions.caching.memory.nuspec
-microsoft.extensions.caching.redis\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.redis\2.2.0\.signature.p7s
-microsoft.extensions.caching.redis\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Redis.dll
-microsoft.extensions.caching.redis\2.2.0\microsoft.extensions.caching.redis.2.2.0.nupkg
-microsoft.extensions.caching.redis\2.2.0\microsoft.extensions.caching.redis.2.2.0.nupkg.sha512
-microsoft.extensions.caching.redis\2.2.0\microsoft.extensions.caching.redis.nuspec
-microsoft.extensions.caching.sqlserver\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.sqlserver\2.2.0\.signature.p7s
-microsoft.extensions.caching.sqlserver\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.SqlServer.dll
-microsoft.extensions.caching.sqlserver\2.2.0\microsoft.extensions.caching.sqlserver.2.2.0.nupkg
-microsoft.extensions.caching.sqlserver\2.2.0\microsoft.extensions.caching.sqlserver.2.2.0.nupkg.sha512
-microsoft.extensions.caching.sqlserver\2.2.0\microsoft.extensions.caching.sqlserver.nuspec
-microsoft.extensions.configuration.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.configuration.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll
-microsoft.extensions.configuration.abstractions\2.2.0\microsoft.extensions.configuration.abstractions.2.2.0.nupkg
-microsoft.extensions.configuration.abstractions\2.2.0\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.abstractions\2.2.0\microsoft.extensions.configuration.abstractions.nuspec
-microsoft.extensions.configuration.azurekeyvault\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.azurekeyvault\2.2.0\.signature.p7s
-microsoft.extensions.configuration.azurekeyvault\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.AzureKeyVault.dll
-microsoft.extensions.configuration.azurekeyvault\2.2.0\microsoft.extensions.configuration.azurekeyvault.2.2.0.nupkg
-microsoft.extensions.configuration.azurekeyvault\2.2.0\microsoft.extensions.configuration.azurekeyvault.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.azurekeyvault\2.2.0\microsoft.extensions.configuration.azurekeyvault.nuspec
-microsoft.extensions.configuration.binder\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.binder\2.2.0\.signature.p7s
-microsoft.extensions.configuration.binder\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll
-microsoft.extensions.configuration.binder\2.2.0\microsoft.extensions.configuration.binder.2.2.0.nupkg
-microsoft.extensions.configuration.binder\2.2.0\microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.binder\2.2.0\microsoft.extensions.configuration.binder.nuspec
-microsoft.extensions.configuration.commandline\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.commandline\2.2.0\.signature.p7s
-microsoft.extensions.configuration.commandline\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll
-microsoft.extensions.configuration.commandline\2.2.0\microsoft.extensions.configuration.commandline.2.2.0.nupkg
-microsoft.extensions.configuration.commandline\2.2.0\microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.commandline\2.2.0\microsoft.extensions.configuration.commandline.nuspec
-microsoft.extensions.configuration.environmentvariables\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.environmentvariables\2.2.0\.signature.p7s
-microsoft.extensions.configuration.environmentvariables\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
-microsoft.extensions.configuration.environmentvariables\2.2.0\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg
-microsoft.extensions.configuration.environmentvariables\2.2.0\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.environmentvariables\2.2.0\microsoft.extensions.configuration.environmentvariables.nuspec
-microsoft.extensions.configuration.fileextensions\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.fileextensions\2.2.0\.signature.p7s
-microsoft.extensions.configuration.fileextensions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll
-microsoft.extensions.configuration.fileextensions\2.2.0\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg
-microsoft.extensions.configuration.fileextensions\2.2.0\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.fileextensions\2.2.0\microsoft.extensions.configuration.fileextensions.nuspec
-microsoft.extensions.configuration.ini\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.ini\2.2.0\.signature.p7s
-microsoft.extensions.configuration.ini\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Ini.dll
-microsoft.extensions.configuration.ini\2.2.0\microsoft.extensions.configuration.ini.2.2.0.nupkg
-microsoft.extensions.configuration.ini\2.2.0\microsoft.extensions.configuration.ini.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.ini\2.2.0\microsoft.extensions.configuration.ini.nuspec
-microsoft.extensions.configuration.json\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.json\2.2.0\.signature.p7s
-microsoft.extensions.configuration.json\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Json.dll
-microsoft.extensions.configuration.json\2.2.0\microsoft.extensions.configuration.json.2.2.0.nupkg
-microsoft.extensions.configuration.json\2.2.0\microsoft.extensions.configuration.json.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.json\2.2.0\microsoft.extensions.configuration.json.nuspec
-microsoft.extensions.configuration.keyperfile\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.keyperfile\2.2.0\.signature.p7s
-microsoft.extensions.configuration.keyperfile\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.KeyPerFile.dll
-microsoft.extensions.configuration.keyperfile\2.2.0\microsoft.extensions.configuration.keyperfile.2.2.0.nupkg
-microsoft.extensions.configuration.keyperfile\2.2.0\microsoft.extensions.configuration.keyperfile.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.keyperfile\2.2.0\microsoft.extensions.configuration.keyperfile.nuspec
-microsoft.extensions.configuration.usersecrets\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.usersecrets\2.2.0\.signature.p7s
-microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props
-microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets
-microsoft.extensions.configuration.usersecrets\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll
-microsoft.extensions.configuration.usersecrets\2.2.0\microsoft.extensions.configuration.usersecrets.2.2.0.nupkg
-microsoft.extensions.configuration.usersecrets\2.2.0\microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.usersecrets\2.2.0\microsoft.extensions.configuration.usersecrets.nuspec
-microsoft.extensions.configuration.xml\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.xml\2.2.0\.signature.p7s
-microsoft.extensions.configuration.xml\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Xml.dll
-microsoft.extensions.configuration.xml\2.2.0\microsoft.extensions.configuration.xml.2.2.0.nupkg
-microsoft.extensions.configuration.xml\2.2.0\microsoft.extensions.configuration.xml.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.xml\2.2.0\microsoft.extensions.configuration.xml.nuspec
-microsoft.extensions.configuration\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration\2.2.0\.signature.p7s
-microsoft.extensions.configuration\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll
-microsoft.extensions.configuration\2.2.0\microsoft.extensions.configuration.2.2.0.nupkg
-microsoft.extensions.configuration\2.2.0\microsoft.extensions.configuration.2.2.0.nupkg.sha512
-microsoft.extensions.configuration\2.2.0\microsoft.extensions.configuration.nuspec
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\microsoft.extensions.dependencyinjection.abstractions.nuspec
-microsoft.extensions.dependencyinjection\2.2.0\.nupkg.metadata
-microsoft.extensions.dependencyinjection\2.2.0\.signature.p7s
-microsoft.extensions.dependencyinjection\2.2.0\lib\net461\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\lib\netcoreapp2.0\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\microsoft.extensions.dependencyinjection.2.2.0.nupkg
-microsoft.extensions.dependencyinjection\2.2.0\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512
-microsoft.extensions.dependencyinjection\2.2.0\microsoft.extensions.dependencyinjection.nuspec
-microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.2.0\.signature.p7s
-microsoft.extensions.diagnosticadapter\2.2.0\lib\net461\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\lib\netcoreapp2.0\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\microsoft.extensions.diagnosticadapter.2.2.0.nupkg
-microsoft.extensions.diagnosticadapter\2.2.0\microsoft.extensions.diagnosticadapter.2.2.0.nupkg.sha512
-microsoft.extensions.diagnosticadapter\2.2.0\microsoft.extensions.diagnosticadapter.nuspec
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec
-microsoft.extensions.diagnostics.healthchecks\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnostics.healthchecks\2.2.0\.signature.p7s
-microsoft.extensions.diagnostics.healthchecks\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Diagnostics.HealthChecks.dll
-microsoft.extensions.diagnostics.healthchecks\2.2.0\microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg
-microsoft.extensions.diagnostics.healthchecks\2.2.0\microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg.sha512
-microsoft.extensions.diagnostics.healthchecks\2.2.0\microsoft.extensions.diagnostics.healthchecks.nuspec
-microsoft.extensions.fileproviders.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Abstractions.dll
-microsoft.extensions.fileproviders.abstractions\2.2.0\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg
-microsoft.extensions.fileproviders.abstractions\2.2.0\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.abstractions\2.2.0\microsoft.extensions.fileproviders.abstractions.nuspec
-microsoft.extensions.fileproviders.composite\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.composite\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.composite\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll
-microsoft.extensions.fileproviders.composite\2.2.0\microsoft.extensions.fileproviders.composite.2.2.0.nupkg
-microsoft.extensions.fileproviders.composite\2.2.0\microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.composite\2.2.0\microsoft.extensions.fileproviders.composite.nuspec
-microsoft.extensions.fileproviders.embedded\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.embedded\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.embedded\2.2.0\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.props
-microsoft.extensions.fileproviders.embedded\2.2.0\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets
-microsoft.extensions.fileproviders.embedded\2.2.0\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.props
-microsoft.extensions.fileproviders.embedded\2.2.0\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.targets
-microsoft.extensions.fileproviders.embedded\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.dll
-microsoft.extensions.fileproviders.embedded\2.2.0\microsoft.extensions.fileproviders.embedded.2.2.0.nupkg
-microsoft.extensions.fileproviders.embedded\2.2.0\microsoft.extensions.fileproviders.embedded.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.embedded\2.2.0\microsoft.extensions.fileproviders.embedded.nuspec
-microsoft.extensions.fileproviders.embedded\2.2.0\tasks\net461\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll
-microsoft.extensions.fileproviders.embedded\2.2.0\tasks\netstandard1.5\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll
-microsoft.extensions.fileproviders.physical\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.physical\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.physical\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Physical.dll
-microsoft.extensions.fileproviders.physical\2.2.0\microsoft.extensions.fileproviders.physical.2.2.0.nupkg
-microsoft.extensions.fileproviders.physical\2.2.0\microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.physical\2.2.0\microsoft.extensions.fileproviders.physical.nuspec
-microsoft.extensions.filesystemglobbing\2.2.0\.nupkg.metadata
-microsoft.extensions.filesystemglobbing\2.2.0\.signature.p7s
-microsoft.extensions.filesystemglobbing\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileSystemGlobbing.dll
-microsoft.extensions.filesystemglobbing\2.2.0\microsoft.extensions.filesystemglobbing.2.2.0.nupkg
-microsoft.extensions.filesystemglobbing\2.2.0\microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512
-microsoft.extensions.filesystemglobbing\2.2.0\microsoft.extensions.filesystemglobbing.nuspec
-microsoft.extensions.hosting.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.hosting.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.hosting.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Hosting.Abstractions.dll
-microsoft.extensions.hosting.abstractions\2.2.0\microsoft.extensions.hosting.abstractions.2.2.0.nupkg
-microsoft.extensions.hosting.abstractions\2.2.0\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.hosting.abstractions\2.2.0\microsoft.extensions.hosting.abstractions.nuspec
-microsoft.extensions.hosting\2.2.0\.nupkg.metadata
-microsoft.extensions.hosting\2.2.0\.signature.p7s
-microsoft.extensions.hosting\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Hosting.dll
-microsoft.extensions.hosting\2.2.0\microsoft.extensions.hosting.2.2.0.nupkg
-microsoft.extensions.hosting\2.2.0\microsoft.extensions.hosting.2.2.0.nupkg.sha512
-microsoft.extensions.hosting\2.2.0\microsoft.extensions.hosting.nuspec
-microsoft.extensions.http\2.2.0\.nupkg.metadata
-microsoft.extensions.http\2.2.0\.signature.p7s
-microsoft.extensions.http\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Http.dll
-microsoft.extensions.http\2.2.0\microsoft.extensions.http.2.2.0.nupkg
-microsoft.extensions.http\2.2.0\microsoft.extensions.http.2.2.0.nupkg.sha512
-microsoft.extensions.http\2.2.0\microsoft.extensions.http.nuspec
-microsoft.extensions.identity.core\2.2.0\.nupkg.metadata
-microsoft.extensions.identity.core\2.2.0\.signature.p7s
-microsoft.extensions.identity.core\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Identity.Core.dll
-microsoft.extensions.identity.core\2.2.0\microsoft.extensions.identity.core.2.2.0.nupkg
-microsoft.extensions.identity.core\2.2.0\microsoft.extensions.identity.core.2.2.0.nupkg.sha512
-microsoft.extensions.identity.core\2.2.0\microsoft.extensions.identity.core.nuspec
-microsoft.extensions.identity.stores\2.2.0\.nupkg.metadata
-microsoft.extensions.identity.stores\2.2.0\.signature.p7s
-microsoft.extensions.identity.stores\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll
-microsoft.extensions.identity.stores\2.2.0\microsoft.extensions.identity.stores.2.2.0.nupkg
-microsoft.extensions.identity.stores\2.2.0\microsoft.extensions.identity.stores.2.2.0.nupkg.sha512
-microsoft.extensions.identity.stores\2.2.0\microsoft.extensions.identity.stores.nuspec
-microsoft.extensions.localization.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.localization.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.localization.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Localization.Abstractions.dll
-microsoft.extensions.localization.abstractions\2.2.0\microsoft.extensions.localization.abstractions.2.2.0.nupkg
-microsoft.extensions.localization.abstractions\2.2.0\microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.localization.abstractions\2.2.0\microsoft.extensions.localization.abstractions.nuspec
-microsoft.extensions.localization\2.2.0\.nupkg.metadata
-microsoft.extensions.localization\2.2.0\.signature.p7s
-microsoft.extensions.localization\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Localization.dll
-microsoft.extensions.localization\2.2.0\microsoft.extensions.localization.2.2.0.nupkg
-microsoft.extensions.localization\2.2.0\microsoft.extensions.localization.2.2.0.nupkg.sha512
-microsoft.extensions.localization\2.2.0\microsoft.extensions.localization.nuspec
-microsoft.extensions.logging.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.logging.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll
-microsoft.extensions.logging.abstractions\2.2.0\microsoft.extensions.logging.abstractions.2.2.0.nupkg
-microsoft.extensions.logging.abstractions\2.2.0\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.logging.abstractions\2.2.0\microsoft.extensions.logging.abstractions.nuspec
-microsoft.extensions.logging.azureappservices\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.azureappservices\2.2.0\.signature.p7s
-microsoft.extensions.logging.azureappservices\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.AzureAppServices.dll
-microsoft.extensions.logging.azureappservices\2.2.0\microsoft.extensions.logging.azureappservices.2.2.0.nupkg
-microsoft.extensions.logging.azureappservices\2.2.0\microsoft.extensions.logging.azureappservices.2.2.0.nupkg.sha512
-microsoft.extensions.logging.azureappservices\2.2.0\microsoft.extensions.logging.azureappservices.nuspec
-microsoft.extensions.logging.configuration\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.configuration\2.2.0\.signature.p7s
-microsoft.extensions.logging.configuration\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll
-microsoft.extensions.logging.configuration\2.2.0\microsoft.extensions.logging.configuration.2.2.0.nupkg
-microsoft.extensions.logging.configuration\2.2.0\microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512
-microsoft.extensions.logging.configuration\2.2.0\microsoft.extensions.logging.configuration.nuspec
-microsoft.extensions.logging.console\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.console\2.2.0\.signature.p7s
-microsoft.extensions.logging.console\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Console.dll
-microsoft.extensions.logging.console\2.2.0\microsoft.extensions.logging.console.2.2.0.nupkg
-microsoft.extensions.logging.console\2.2.0\microsoft.extensions.logging.console.2.2.0.nupkg.sha512
-microsoft.extensions.logging.console\2.2.0\microsoft.extensions.logging.console.nuspec
-microsoft.extensions.logging.debug\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.debug\2.2.0\.signature.p7s
-microsoft.extensions.logging.debug\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Debug.dll
-microsoft.extensions.logging.debug\2.2.0\microsoft.extensions.logging.debug.2.2.0.nupkg
-microsoft.extensions.logging.debug\2.2.0\microsoft.extensions.logging.debug.2.2.0.nupkg.sha512
-microsoft.extensions.logging.debug\2.2.0\microsoft.extensions.logging.debug.nuspec
-microsoft.extensions.logging.eventsource\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.eventsource\2.2.0\.signature.p7s
-microsoft.extensions.logging.eventsource\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.EventSource.dll
-microsoft.extensions.logging.eventsource\2.2.0\microsoft.extensions.logging.eventsource.2.2.0.nupkg
-microsoft.extensions.logging.eventsource\2.2.0\microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512
-microsoft.extensions.logging.eventsource\2.2.0\microsoft.extensions.logging.eventsource.nuspec
-microsoft.extensions.logging.tracesource\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.tracesource\2.2.0\.signature.p7s
-microsoft.extensions.logging.tracesource\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.TraceSource.dll
-microsoft.extensions.logging.tracesource\2.2.0\microsoft.extensions.logging.tracesource.2.2.0.nupkg
-microsoft.extensions.logging.tracesource\2.2.0\microsoft.extensions.logging.tracesource.2.2.0.nupkg.sha512
-microsoft.extensions.logging.tracesource\2.2.0\microsoft.extensions.logging.tracesource.nuspec
-microsoft.extensions.logging\2.2.0\.nupkg.metadata
-microsoft.extensions.logging\2.2.0\.signature.p7s
-microsoft.extensions.logging\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.dll
-microsoft.extensions.logging\2.2.0\microsoft.extensions.logging.2.2.0.nupkg
-microsoft.extensions.logging\2.2.0\microsoft.extensions.logging.2.2.0.nupkg.sha512
-microsoft.extensions.logging\2.2.0\microsoft.extensions.logging.nuspec
-microsoft.extensions.objectpool\2.2.0\.nupkg.metadata
-microsoft.extensions.objectpool\2.2.0\.signature.p7s
-microsoft.extensions.objectpool\2.2.0\lib\netstandard2.0\Microsoft.Extensions.ObjectPool.dll
-microsoft.extensions.objectpool\2.2.0\microsoft.extensions.objectpool.2.2.0.nupkg
-microsoft.extensions.objectpool\2.2.0\microsoft.extensions.objectpool.2.2.0.nupkg.sha512
-microsoft.extensions.objectpool\2.2.0\microsoft.extensions.objectpool.nuspec
-microsoft.extensions.options.configurationextensions\2.2.0\.nupkg.metadata
-microsoft.extensions.options.configurationextensions\2.2.0\.signature.p7s
-microsoft.extensions.options.configurationextensions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
-microsoft.extensions.options.configurationextensions\2.2.0\microsoft.extensions.options.configurationextensions.2.2.0.nupkg
-microsoft.extensions.options.configurationextensions\2.2.0\microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512
-microsoft.extensions.options.configurationextensions\2.2.0\microsoft.extensions.options.configurationextensions.nuspec
-microsoft.extensions.options.dataannotations\2.2.0\.nupkg.metadata
-microsoft.extensions.options.dataannotations\2.2.0\.signature.p7s
-microsoft.extensions.options.dataannotations\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.DataAnnotations.dll
-microsoft.extensions.options.dataannotations\2.2.0\microsoft.extensions.options.dataannotations.2.2.0.nupkg
-microsoft.extensions.options.dataannotations\2.2.0\microsoft.extensions.options.dataannotations.2.2.0.nupkg.sha512
-microsoft.extensions.options.dataannotations\2.2.0\microsoft.extensions.options.dataannotations.nuspec
-microsoft.extensions.options\2.2.0\.nupkg.metadata
-microsoft.extensions.options\2.2.0\.signature.p7s
-microsoft.extensions.options\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.dll
-microsoft.extensions.options\2.2.0\microsoft.extensions.options.2.2.0.nupkg
-microsoft.extensions.options\2.2.0\microsoft.extensions.options.2.2.0.nupkg.sha512
-microsoft.extensions.options\2.2.0\microsoft.extensions.options.nuspec
-microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
-microsoft.extensions.primitives\2.2.0\.nupkg.metadata
-microsoft.extensions.primitives\2.2.0\.signature.p7s
-microsoft.extensions.primitives\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll
-microsoft.extensions.primitives\2.2.0\microsoft.extensions.primitives.2.2.0.nupkg
-microsoft.extensions.primitives\2.2.0\microsoft.extensions.primitives.2.2.0.nupkg.sha512
-microsoft.extensions.primitives\2.2.0\microsoft.extensions.primitives.nuspec
-microsoft.extensions.webencoders\2.2.0\.nupkg.metadata
-microsoft.extensions.webencoders\2.2.0\.signature.p7s
-microsoft.extensions.webencoders\2.2.0\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll
-microsoft.extensions.webencoders\2.2.0\microsoft.extensions.webencoders.2.2.0.nupkg
-microsoft.extensions.webencoders\2.2.0\microsoft.extensions.webencoders.2.2.0.nupkg.sha512
-microsoft.extensions.webencoders\2.2.0\microsoft.extensions.webencoders.nuspec
-microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
-microsoft.identitymodel.clients.activedirectory\3.19.8\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.19.8\.signature.p7s
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\MonoAndroid7\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\MonoAndroid7\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.1\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.1\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\microsoft.identitymodel.clients.activedirectory.3.19.8.nupkg
-microsoft.identitymodel.clients.activedirectory\3.19.8\microsoft.identitymodel.clients.activedirectory.3.19.8.nupkg.sha512
-microsoft.identitymodel.clients.activedirectory\3.19.8\microsoft.identitymodel.clients.activedirectory.nuspec
-microsoft.identitymodel.jsonwebtokens\5.3.0\.nupkg.metadata
-microsoft.identitymodel.jsonwebtokens\5.3.0\.signature.p7s
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net45\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net45\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net451\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net451\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg
-microsoft.identitymodel.jsonwebtokens\5.3.0\microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512
-microsoft.identitymodel.jsonwebtokens\5.3.0\microsoft.identitymodel.jsonwebtokens.nuspec
-microsoft.identitymodel.logging\5.3.0\.nupkg.metadata
-microsoft.identitymodel.logging\5.3.0\.signature.p7s
-microsoft.identitymodel.logging\5.3.0\lib\net45\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net45\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\net451\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net451\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\net461\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net461\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\microsoft.identitymodel.logging.5.3.0.nupkg
-microsoft.identitymodel.logging\5.3.0\microsoft.identitymodel.logging.5.3.0.nupkg.sha512
-microsoft.identitymodel.logging\5.3.0\microsoft.identitymodel.logging.nuspec
-microsoft.identitymodel.protocols.openidconnect\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols.openidconnect\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg
-microsoft.identitymodel.protocols.openidconnect\5.3.0\microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols.openidconnect\5.3.0\microsoft.identitymodel.protocols.openidconnect.nuspec
-microsoft.identitymodel.protocols.wsfederation\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols.wsfederation\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg
-microsoft.identitymodel.protocols.wsfederation\5.3.0\microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols.wsfederation\5.3.0\microsoft.identitymodel.protocols.wsfederation.nuspec
-microsoft.identitymodel.protocols\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\microsoft.identitymodel.protocols.5.3.0.nupkg
-microsoft.identitymodel.protocols\5.3.0\microsoft.identitymodel.protocols.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols\5.3.0\microsoft.identitymodel.protocols.nuspec
-microsoft.identitymodel.tokens.saml\5.3.0\.nupkg.metadata
-microsoft.identitymodel.tokens.saml\5.3.0\.signature.p7s
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\microsoft.identitymodel.tokens.saml.5.3.0.nupkg
-microsoft.identitymodel.tokens.saml\5.3.0\microsoft.identitymodel.tokens.saml.5.3.0.nupkg.sha512
-microsoft.identitymodel.tokens.saml\5.3.0\microsoft.identitymodel.tokens.saml.nuspec
-microsoft.identitymodel.tokens\5.3.0\.nupkg.metadata
-microsoft.identitymodel.tokens\5.3.0\.signature.p7s
-microsoft.identitymodel.tokens\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\microsoft.identitymodel.tokens.5.3.0.nupkg
-microsoft.identitymodel.tokens\5.3.0\microsoft.identitymodel.tokens.5.3.0.nupkg.sha512
-microsoft.identitymodel.tokens\5.3.0\microsoft.identitymodel.tokens.nuspec
-microsoft.identitymodel.xml\5.3.0\.nupkg.metadata
-microsoft.identitymodel.xml\5.3.0\.signature.p7s
-microsoft.identitymodel.xml\5.3.0\lib\net45\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net45\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\net451\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net451\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\net461\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net461\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\microsoft.identitymodel.xml.5.3.0.nupkg
-microsoft.identitymodel.xml\5.3.0\microsoft.identitymodel.xml.5.3.0.nupkg.sha512
-microsoft.identitymodel.xml\5.3.0\microsoft.identitymodel.xml.nuspec
-microsoft.net.http.headers\2.2.0\.nupkg.metadata
-microsoft.net.http.headers\2.2.0\.signature.p7s
-microsoft.net.http.headers\2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll
-microsoft.net.http.headers\2.2.0\microsoft.net.http.headers.2.2.0.nupkg
-microsoft.net.http.headers\2.2.0\microsoft.net.http.headers.2.2.0.nupkg.sha512
-microsoft.net.http.headers\2.2.0\microsoft.net.http.headers.nuspec
-microsoft.netcore.app\2.2.0\.nupkg.metadata
-microsoft.netcore.app\2.2.0\.signature.p7s
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.PlatformManifest.txt
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets
-microsoft.netcore.app\2.2.0\LICENSE.TXT
-microsoft.netcore.app\2.2.0\microsoft.netcore.app.2.2.0.nupkg
-microsoft.netcore.app\2.2.0\microsoft.netcore.app.2.2.0.nupkg.sha512
-microsoft.netcore.app\2.2.0\microsoft.netcore.app.nuspec
-microsoft.netcore.app\2.2.0\Microsoft.NETCore.App.versions.txt
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.CSharp.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.VisualBasic.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.Win32.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\mscorlib.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\netstandard.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.AppContext.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Buffers.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Concurrent.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Immutable.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.NonGeneric.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Specialized.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.Annotations.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.DataAnnotations.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.EventBasedAsync.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.TypeConverter.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Configuration.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Console.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Core.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Data.Common.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Data.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Contracts.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Debug.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.DiagnosticSource.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.FileVersionInfo.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Process.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.StackTrace.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.TextWriterTraceListener.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Tools.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.TraceSource.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Tracing.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Drawing.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Drawing.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Dynamic.Runtime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.Calendars.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.Brotli.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.FileSystem.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.ZipFile.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.DriveInfo.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.Watcher.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.IsolatedStorage.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.MemoryMappedFiles.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Pipes.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.UnmanagedMemoryStream.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Expressions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Parallel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Queryable.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Memory.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Http.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.HttpListener.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Mail.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.NameResolution.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.NetworkInformation.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Ping.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Requests.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Security.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.ServicePoint.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Sockets.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebClient.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebHeaderCollection.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebProxy.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebSockets.Client.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebSockets.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Numerics.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Numerics.Vectors.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ObjectModel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.DispatchProxy.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.ILGeneration.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.Lightweight.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Metadata.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.TypeExtensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.Reader.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.ResourceManager.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.Writer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.CompilerServices.VisualC.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Handles.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.RuntimeInformation.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.WindowsRuntime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Loader.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Numerics.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Formatters.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Json.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Xml.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Claims.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Algorithms.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Csp.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Encoding.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.X509Certificates.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Principal.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.SecureString.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ServiceModel.Web.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ServiceProcess.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.Encoding.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.Encoding.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.RegularExpressions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Overlapped.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Dataflow.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Parallel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Thread.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.ThreadPool.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Timer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Transactions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Transactions.Local.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ValueTuple.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Web.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Web.HttpUtility.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Windows.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.Linq.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.ReaderWriter.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.Serialization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XmlDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XmlSerializer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XPath.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XPath.XDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\WindowsBase.dll
-microsoft.netcore.app\2.2.0\runtime.json
-microsoft.netcore.app\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnetapphost\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnetapphost\2.2.0\.signature.p7s
-microsoft.netcore.dotnetapphost\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnetapphost\2.2.0\microsoft.netcore.dotnetapphost.2.2.0.nupkg
-microsoft.netcore.dotnetapphost\2.2.0\microsoft.netcore.dotnetapphost.2.2.0.nupkg.sha512
-microsoft.netcore.dotnetapphost\2.2.0\microsoft.netcore.dotnetapphost.nuspec
-microsoft.netcore.dotnetapphost\2.2.0\runtime.json
-microsoft.netcore.dotnetapphost\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostpolicy\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnethostpolicy\2.2.0\.signature.p7s
-microsoft.netcore.dotnethostpolicy\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnethostpolicy\2.2.0\microsoft.netcore.dotnethostpolicy.2.2.0.nupkg
-microsoft.netcore.dotnethostpolicy\2.2.0\microsoft.netcore.dotnethostpolicy.2.2.0.nupkg.sha512
-microsoft.netcore.dotnethostpolicy\2.2.0\microsoft.netcore.dotnethostpolicy.nuspec
-microsoft.netcore.dotnethostpolicy\2.2.0\runtime.json
-microsoft.netcore.dotnethostpolicy\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostresolver\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnethostresolver\2.2.0\.signature.p7s
-microsoft.netcore.dotnethostresolver\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnethostresolver\2.2.0\microsoft.netcore.dotnethostresolver.2.2.0.nupkg
-microsoft.netcore.dotnethostresolver\2.2.0\microsoft.netcore.dotnethostresolver.2.2.0.nupkg.sha512
-microsoft.netcore.dotnethostresolver\2.2.0\microsoft.netcore.dotnethostresolver.nuspec
-microsoft.netcore.dotnethostresolver\2.2.0\runtime.json
-microsoft.netcore.dotnethostresolver\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.platforms\1.0.1\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.signature.p7s
-microsoft.netcore.platforms\1.0.2\.nupkg.metadata
-microsoft.netcore.platforms\1.0.2\.signature.p7s
-microsoft.netcore.platforms\1.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.1.0\.signature.p7s
-microsoft.netcore.platforms\2.0.0\.nupkg.metadata
-microsoft.netcore.platforms\2.0.0\.signature.p7s
-microsoft.netcore.platforms\2.2.0\.nupkg.metadata
-microsoft.netcore.platforms\2.2.0\.signature.p7s
-microsoft.netcore.platforms\2.2.0\lib\netstandard1.0\_._
-microsoft.netcore.platforms\2.2.0\LICENSE.TXT
-microsoft.netcore.platforms\2.2.0\microsoft.netcore.platforms.2.2.0.nupkg
-microsoft.netcore.platforms\2.2.0\microsoft.netcore.platforms.2.2.0.nupkg.sha512
-microsoft.netcore.platforms\2.2.0\microsoft.netcore.platforms.nuspec
-microsoft.netcore.platforms\2.2.0\runtime.json
-microsoft.netcore.platforms\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.platforms\2.2.0\useSharedDesignerContext.txt
-microsoft.netcore.platforms\2.2.0\version.txt
-microsoft.netcore.targets\1.0.1\.nupkg.metadata
-microsoft.netcore.targets\1.1.0\.nupkg.metadata
-microsoft.netcore.targets\2.0.0\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
-microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
-microsoft.rest.clientruntime\2.3.8\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.2.0\.nupkg.metadata
-microsoft.visualstudio.web.browserlink\2.2.0\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.2.0\lib\netstandard2.0\Microsoft.VisualStudio.Web.BrowserLink.dll
-microsoft.visualstudio.web.browserlink\2.2.0\microsoft.visualstudio.web.browserlink.2.2.0.nupkg
-microsoft.visualstudio.web.browserlink\2.2.0\microsoft.visualstudio.web.browserlink.2.2.0.nupkg.sha512
-microsoft.visualstudio.web.browserlink\2.2.0\microsoft.visualstudio.web.browserlink.nuspec
-microsoft.win32.primitives\4.0.1\.nupkg.metadata
-microsoft.win32.primitives\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.5.0\.nupkg.metadata
-netstandard.library\1.6.0\.nupkg.metadata
-netstandard.library\1.6.1\.nupkg.metadata
-netstandard.library\2.0.3\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.signature.p7s
-newtonsoft.json\10.0.1\.nupkg.metadata
-newtonsoft.json\10.0.1\.signature.p7s
-newtonsoft.json\11.0.2\.nupkg.metadata
-newtonsoft.json\11.0.2\.signature.p7s
-newtonsoft.json\9.0.1\.nupkg.metadata
-remotion.linq\2.2.0\.nupkg.metadata
-remotion.linq\2.2.0\.signature.p7s
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.5.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.5.0\.signature.p7s
-runtime.native.system.data.sqlclient.sni\4.5.0\LICENSE.TXT
-runtime.native.system.data.sqlclient.sni\4.5.0\runtime.native.system.data.sqlclient.sni.4.5.0.nupkg
-runtime.native.system.data.sqlclient.sni\4.5.0\runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512
-runtime.native.system.data.sqlclient.sni\4.5.0\runtime.native.system.data.sqlclient.sni.nuspec
-runtime.native.system.data.sqlclient.sni\4.5.0\THIRD-PARTY-NOTICES.TXT
-runtime.native.system.data.sqlclient.sni\4.5.0\useSharedDesignerContext.txt
-runtime.native.system.data.sqlclient.sni\4.5.0\version.txt
-runtime.native.system.io.compression\4.1.0\.nupkg.metadata
-runtime.native.system.io.compression\4.3.0\.nupkg.metadata
-runtime.native.system.net.http\4.0.1\.nupkg.metadata
-runtime.native.system.net.http\4.3.0\.nupkg.metadata
-runtime.native.system.net.security\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
-runtime.native.system\4.0.0\.nupkg.metadata
-runtime.native.system\4.3.0\.nupkg.metadata
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.signature.p7s
-sqlitepclraw.core\1.1.11\.nupkg.metadata
-sqlitepclraw.core\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
-stackexchange.redis.strongname\1.2.6\.nupkg.metadata
-stackexchange.redis.strongname\1.2.6\.signature.p7s
-stackexchange.redis.strongname\1.2.6\lib\net45\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\lib\net46\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\lib\netstandard1.5\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\stackexchange.redis.strongname.1.2.6.nupkg
-stackexchange.redis.strongname\1.2.6\stackexchange.redis.strongname.1.2.6.nupkg.sha512
-stackexchange.redis.strongname\1.2.6\stackexchange.redis.strongname.nuspec
-system.appcontext\4.1.0\.nupkg.metadata
-system.appcontext\4.3.0\.nupkg.metadata
-system.buffers\4.0.0\.nupkg.metadata
-system.buffers\4.3.0\.nupkg.metadata
-system.buffers\4.5.0\.nupkg.metadata
-system.collections.concurrent\4.0.12\.nupkg.metadata
-system.collections.concurrent\4.3.0\.nupkg.metadata
-system.collections.immutable\1.3.0\.nupkg.metadata
-system.collections.immutable\1.3.1\.nupkg.metadata
-system.collections.immutable\1.5.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.signature.p7s
-system.collections.specialized\4.3.0\.nupkg.metadata
-system.collections\4.0.11\.nupkg.metadata
-system.collections\4.3.0\.nupkg.metadata
-system.componentmodel.annotations\4.5.0\.nupkg.metadata
-system.componentmodel.primitives\4.3.0\.nupkg.metadata
-system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
-system.componentmodel\4.3.0\.nupkg.metadata
-system.console\4.0.0\.nupkg.metadata
-system.console\4.3.0\.nupkg.metadata
-system.data.sqlclient\4.6.0\.nupkg.metadata
-system.data.sqlclient\4.6.0\.signature.p7s
-system.data.sqlclient\4.6.0\lib\MonoAndroid10\_._
-system.data.sqlclient\4.6.0\lib\MonoTouch10\_._
-system.data.sqlclient\4.6.0\lib\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard1.2\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\xamarinios10\_._
-system.data.sqlclient\4.6.0\lib\xamarinmac20\_._
-system.data.sqlclient\4.6.0\lib\xamarintvos10\_._
-system.data.sqlclient\4.6.0\lib\xamarinwatchos10\_._
-system.data.sqlclient\4.6.0\LICENSE.TXT
-system.data.sqlclient\4.6.0\ref\MonoAndroid10\_._
-system.data.sqlclient\4.6.0\ref\MonoTouch10\_._
-system.data.sqlclient\4.6.0\ref\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard1.2\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\xamarinios10\_._
-system.data.sqlclient\4.6.0\ref\xamarinmac20\_._
-system.data.sqlclient\4.6.0\ref\xamarintvos10\_._
-system.data.sqlclient\4.6.0\ref\xamarinwatchos10\_._
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\uap10.0.16299\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\system.data.sqlclient.4.6.0.nupkg
-system.data.sqlclient\4.6.0\system.data.sqlclient.4.6.0.nupkg.sha512
-system.data.sqlclient\4.6.0\system.data.sqlclient.nuspec
-system.data.sqlclient\4.6.0\THIRD-PARTY-NOTICES.TXT
-system.data.sqlclient\4.6.0\useSharedDesignerContext.txt
-system.data.sqlclient\4.6.0\version.txt
-system.diagnostics.contracts\4.3.0\.nupkg.metadata
-system.diagnostics.contracts\4.3.0\.signature.p7s
-system.diagnostics.debug\4.0.11\.nupkg.metadata
-system.diagnostics.debug\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
-system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.signature.p7s
-system.diagnostics.process\4.3.0\.nupkg.metadata
-system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
-system.diagnostics.tools\4.0.1\.nupkg.metadata
-system.diagnostics.tools\4.3.0\.nupkg.metadata
-system.diagnostics.tracing\4.1.0\.nupkg.metadata
-system.diagnostics.tracing\4.3.0\.nupkg.metadata
-system.dynamic.runtime\4.0.11\.nupkg.metadata
-system.dynamic.runtime\4.3.0\.nupkg.metadata
-system.globalization.calendars\4.0.1\.nupkg.metadata
-system.globalization.calendars\4.3.0\.nupkg.metadata
-system.globalization.extensions\4.0.1\.nupkg.metadata
-system.globalization.extensions\4.3.0\.nupkg.metadata
-system.globalization\4.0.11\.nupkg.metadata
-system.globalization\4.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.3.0\.signature.p7s
-system.identitymodel.tokens.jwt\5.3.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net45\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\net451\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net451\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\net461\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net461\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\system.identitymodel.tokens.jwt.5.3.0.nupkg
-system.identitymodel.tokens.jwt\5.3.0\system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512
-system.identitymodel.tokens.jwt\5.3.0\system.identitymodel.tokens.jwt.nuspec
-system.interactive.async\3.2.0\.nupkg.metadata
-system.interactive.async\3.2.0\.signature.p7s
-system.interactive.async\3.2.0\lib\net45\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\net46\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard1.0\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard1.3\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard2.0\System.Interactive.Async.dll
-system.interactive.async\3.2.0\system.interactive.async.3.2.0.nupkg
-system.interactive.async\3.2.0\system.interactive.async.3.2.0.nupkg.sha512
-system.interactive.async\3.2.0\system.interactive.async.nuspec
-system.io.compression.zipfile\4.0.1\.nupkg.metadata
-system.io.compression.zipfile\4.3.0\.nupkg.metadata
-system.io.compression\4.1.0\.nupkg.metadata
-system.io.compression\4.3.0\.nupkg.metadata
-system.io.filesystem.primitives\4.0.1\.nupkg.metadata
-system.io.filesystem.primitives\4.3.0\.nupkg.metadata
-system.io.filesystem\4.0.1\.nupkg.metadata
-system.io.filesystem\4.3.0\.nupkg.metadata
-system.io.pipelines\4.5.2\.nupkg.metadata
-system.io.pipelines\4.5.2\.signature.p7s
-system.io.pipelines\4.5.2\lib\netcoreapp2.1\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\lib\netstandard1.3\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\lib\netstandard2.0\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\LICENSE.TXT
-system.io.pipelines\4.5.2\ref\netstandard1.3\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\system.io.pipelines.4.5.2.nupkg
-system.io.pipelines\4.5.2\system.io.pipelines.4.5.2.nupkg.sha512
-system.io.pipelines\4.5.2\system.io.pipelines.nuspec
-system.io.pipelines\4.5.2\THIRD-PARTY-NOTICES.TXT
-system.io.pipelines\4.5.2\useSharedDesignerContext.txt
-system.io.pipelines\4.5.2\version.txt
-system.io\4.1.0\.nupkg.metadata
-system.io\4.3.0\.nupkg.metadata
-system.linq.expressions\4.1.0\.nupkg.metadata
-system.linq.expressions\4.3.0\.nupkg.metadata
-system.linq.queryable\4.0.1\.nupkg.metadata
-system.linq\4.1.0\.nupkg.metadata
-system.linq\4.3.0\.nupkg.metadata
-system.memory\4.5.1\.nupkg.metadata
-system.net.http\4.1.0\.nupkg.metadata
-system.net.http\4.1.0\.signature.p7s
-system.net.http\4.3.0\.nupkg.metadata
-system.net.http\4.3.0\.signature.p7s
-system.net.nameresolution\4.3.0\.nupkg.metadata
-system.net.primitives\4.0.11\.nupkg.metadata
-system.net.primitives\4.3.0\.nupkg.metadata
-system.net.security\4.3.0\.nupkg.metadata
-system.net.sockets\4.1.0\.nupkg.metadata
-system.net.sockets\4.3.0\.nupkg.metadata
-system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
-system.numerics.vectors\4.5.0\.nupkg.metadata
-system.objectmodel\4.0.12\.nupkg.metadata
-system.objectmodel\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.1.1\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.signature.p7s
-system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
-system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
-system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
-system.reflection.emit\4.0.1\.nupkg.metadata
-system.reflection.emit\4.3.0\.nupkg.metadata
-system.reflection.extensions\4.0.1\.nupkg.metadata
-system.reflection.extensions\4.3.0\.nupkg.metadata
-system.reflection.metadata\1.4.1\.nupkg.metadata
-system.reflection.metadata\1.4.2\.nupkg.metadata
-system.reflection.metadata\1.6.0\.nupkg.metadata
-system.reflection.primitives\4.0.1\.nupkg.metadata
-system.reflection.primitives\4.3.0\.nupkg.metadata
-system.reflection.typeextensions\4.1.0\.nupkg.metadata
-system.reflection.typeextensions\4.3.0\.nupkg.metadata
-system.reflection\4.1.0\.nupkg.metadata
-system.reflection\4.3.0\.nupkg.metadata
-system.resources.resourcemanager\4.0.1\.nupkg.metadata
-system.resources.resourcemanager\4.3.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
-system.runtime.extensions\4.1.0\.nupkg.metadata
-system.runtime.extensions\4.3.0\.nupkg.metadata
-system.runtime.handles\4.0.1\.nupkg.metadata
-system.runtime.handles\4.3.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
-system.runtime.interopservices\4.1.0\.nupkg.metadata
-system.runtime.interopservices\4.3.0\.nupkg.metadata
-system.runtime.numerics\4.0.1\.nupkg.metadata
-system.runtime.numerics\4.3.0\.nupkg.metadata
-system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.0.2\.nupkg.metadata
-system.runtime.serialization.json\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.3.0\dotnet_library_license.txt
-system.runtime.serialization.json\4.3.0\lib\MonoAndroid10\_._
-system.runtime.serialization.json\4.3.0\lib\MonoTouch10\_._
-system.runtime.serialization.json\4.3.0\lib\net45\_._
-system.runtime.serialization.json\4.3.0\lib\netcore50\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._
-system.runtime.serialization.json\4.3.0\lib\win8\_._
-system.runtime.serialization.json\4.3.0\lib\wp80\_._
-system.runtime.serialization.json\4.3.0\lib\wpa81\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinios10\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinmac20\_._
-system.runtime.serialization.json\4.3.0\lib\xamarintvos10\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinwatchos10\_._
-system.runtime.serialization.json\4.3.0\ref\MonoAndroid10\_._
-system.runtime.serialization.json\4.3.0\ref\MonoTouch10\_._
-system.runtime.serialization.json\4.3.0\ref\net45\_._
-system.runtime.serialization.json\4.3.0\ref\netcore50\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._
-system.runtime.serialization.json\4.3.0\ref\win8\_._
-system.runtime.serialization.json\4.3.0\ref\wp80\_._
-system.runtime.serialization.json\4.3.0\ref\wpa81\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinios10\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinmac20\_._
-system.runtime.serialization.json\4.3.0\ref\xamarintvos10\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinwatchos10\_._
-system.runtime.serialization.json\4.3.0\system.runtime.serialization.json.4.3.0.nupkg
-system.runtime.serialization.json\4.3.0\system.runtime.serialization.json.4.3.0.nupkg.sha512
-system.runtime.serialization.json\4.3.0\system.runtime.serialization.json.nuspec
-system.runtime.serialization.json\4.3.0\ThirdPartyNotices.txt
-system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
-system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.signature.p7s
-system.runtime\4.1.0\.nupkg.metadata
-system.runtime\4.3.0\.nupkg.metadata
-system.security.accesscontrol\4.5.0\.nupkg.metadata
-system.security.claims\4.3.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.2.0\.nupkg.metadata
-system.security.cryptography.cng\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.5.0\.nupkg.metadata
-system.security.cryptography.csp\4.0.0\.nupkg.metadata
-system.security.cryptography.csp\4.3.0\.nupkg.metadata
-system.security.cryptography.encoding\4.0.0\.nupkg.metadata
-system.security.cryptography.encoding\4.3.0\.nupkg.metadata
-system.security.cryptography.openssl\4.0.0\.nupkg.metadata
-system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
-system.security.cryptography.primitives\4.0.0\.nupkg.metadata
-system.security.cryptography.primitives\4.3.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
-system.security.cryptography.xml\4.5.0\.nupkg.metadata
-system.security.permissions\4.5.0\.nupkg.metadata
-system.security.principal.windows\4.3.0\.nupkg.metadata
-system.security.principal.windows\4.5.0\.nupkg.metadata
-system.security.principal\4.3.0\.nupkg.metadata
-system.spatial\5.8.2\.nupkg.metadata
-system.text.encoding.codepages\4.3.0\.nupkg.metadata
-system.text.encoding.codepages\4.5.0\.nupkg.metadata
-system.text.encoding.extensions\4.0.11\.nupkg.metadata
-system.text.encoding.extensions\4.3.0\.nupkg.metadata
-system.text.encoding\4.0.11\.nupkg.metadata
-system.text.encoding\4.3.0\.nupkg.metadata
-system.text.encodings.web\4.3.1\.nupkg.metadata
-system.text.encodings.web\4.3.1\.signature.p7s
-system.text.encodings.web\4.5.0\.nupkg.metadata
-system.text.regularexpressions\4.1.0\.nupkg.metadata
-system.text.regularexpressions\4.3.0\.nupkg.metadata
-system.threading.channels\4.5.0\.nupkg.metadata
-system.threading.tasks.extensions\4.0.0\.nupkg.metadata
-system.threading.tasks.extensions\4.3.0\.nupkg.metadata
-system.threading.tasks.extensions\4.5.1\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.signature.p7s
-system.threading.tasks\4.0.11\.nupkg.metadata
-system.threading.tasks\4.3.0\.nupkg.metadata
-system.threading.thread\4.3.0\.nupkg.metadata
-system.threading.threadpool\4.3.0\.nupkg.metadata
-system.threading.timer\4.0.1\.nupkg.metadata
-system.threading.timer\4.3.0\.nupkg.metadata
-system.threading\4.0.11\.nupkg.metadata
-system.threading\4.3.0\.nupkg.metadata
-system.valuetuple\4.3.0\.nupkg.metadata
-system.valuetuple\4.5.0\.nupkg.metadata
-system.xml.readerwriter\4.0.11\.nupkg.metadata
-system.xml.readerwriter\4.3.0\.nupkg.metadata
-system.xml.xdocument\4.0.11\.nupkg.metadata
-system.xml.xdocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.0.1\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.signature.p7s
-system.xml.xmlserializer\4.0.11\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.signature.p7s
-system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.signature.p7s
-windowsazure.storage\8.1.4\.nupkg.metadata
-windowsazure.storage\8.1.4\.signature.p7s
diff --git a/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj b/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj
deleted file mode 100644
index b7c357f50f..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/Archive.CiServer.Patch.zipproj
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
- 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
deleted file mode 100644
index 76d662d026..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.1.txt
+++ /dev/null
@@ -1,6141 +0,0 @@
-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
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.3.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.3.txt
deleted file mode 100644
index 35771464bf..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.3.txt
+++ /dev/null
@@ -1,368 +0,0 @@
-microsoft.netcore.app\2.1.0\.signature.p7s
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.PlatformManifest.txt
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props
-microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets
-microsoft.netcore.app\2.1.0\LICENSE.TXT
-microsoft.netcore.app\2.1.0\microsoft.netcore.app.2.1.0.nupkg.sha512
-microsoft.netcore.app\2.1.0\microsoft.netcore.app.nuspec
-microsoft.netcore.app\2.1.0\Microsoft.NETCore.App.versions.txt
-microsoft.netcore.app\2.1.0\ref\netcoreapp\_._
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.CSharp.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.VisualBasic.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\Microsoft.Win32.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\mscorlib.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\netstandard.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.AppContext.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Buffers.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Concurrent.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Immutable.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.NonGeneric.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Collections.Specialized.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Annotations.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.DataAnnotations.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.EventBasedAsync.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ComponentModel.TypeConverter.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Configuration.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Console.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Core.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.Common.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Data.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Contracts.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Debug.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.DiagnosticSource.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.FileVersionInfo.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Process.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.StackTrace.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TextWriterTraceListener.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tools.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.TraceSource.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Diagnostics.Tracing.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Drawing.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Dynamic.Runtime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Calendars.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Globalization.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.Brotli.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.FileSystem.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Compression.ZipFile.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.DriveInfo.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.FileSystem.Watcher.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.IsolatedStorage.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.MemoryMappedFiles.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.Pipes.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.IO.UnmanagedMemoryStream.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Expressions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Parallel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Linq.Queryable.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Memory.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Http.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.HttpListener.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Mail.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NameResolution.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.NetworkInformation.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Ping.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Requests.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Security.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.ServicePoint.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.Sockets.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebClient.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebHeaderCollection.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebProxy.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.Client.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Net.WebSockets.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Numerics.Vectors.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ObjectModel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.DispatchProxy.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.ILGeneration.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Emit.Lightweight.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Metadata.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Reflection.TypeExtensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Reader.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.ResourceManager.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Resources.Writer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.CompilerServices.VisualC.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Handles.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.RuntimeInformation.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.InteropServices.WindowsRuntime.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Loader.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Numerics.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Formatters.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Json.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Runtime.Serialization.Xml.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Claims.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Algorithms.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Csp.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Encoding.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.Primitives.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Cryptography.X509Certificates.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.Principal.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Security.SecureString.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceModel.Web.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ServiceProcess.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.Encoding.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Text.RegularExpressions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Overlapped.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Dataflow.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Extensions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Tasks.Parallel.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Thread.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.ThreadPool.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Threading.Timer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Transactions.Local.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.ValueTuple.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Web.HttpUtility.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Windows.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Linq.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.ReaderWriter.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.Serialization.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XmlSerializer.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\System.Xml.XPath.XDocument.dll
-microsoft.netcore.app\2.1.0\ref\netcoreapp2.1\WindowsBase.dll
-microsoft.netcore.app\2.1.0\runtime.json
-microsoft.netcore.app\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnetapphost\2.1.0\.signature.p7s
-microsoft.netcore.dotnetapphost\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512
-microsoft.netcore.dotnetapphost\2.1.0\microsoft.netcore.dotnetapphost.nuspec
-microsoft.netcore.dotnetapphost\2.1.0\runtime.json
-microsoft.netcore.dotnetapphost\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostpolicy\2.1.0\.signature.p7s
-microsoft.netcore.dotnethostpolicy\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512
-microsoft.netcore.dotnethostpolicy\2.1.0\microsoft.netcore.dotnethostpolicy.nuspec
-microsoft.netcore.dotnethostpolicy\2.1.0\runtime.json
-microsoft.netcore.dotnethostpolicy\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostresolver\2.1.0\.signature.p7s
-microsoft.netcore.dotnethostresolver\2.1.0\LICENSE.TXT
-microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512
-microsoft.netcore.dotnethostresolver\2.1.0\microsoft.netcore.dotnethostresolver.nuspec
-microsoft.netcore.dotnethostresolver\2.1.0\runtime.json
-microsoft.netcore.dotnethostresolver\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.targets\2.1.0\.signature.p7s
-microsoft.netcore.targets\2.1.0\lib\netstandard1.0\_._
-microsoft.netcore.targets\2.1.0\LICENSE.TXT
-microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.2.1.0.nupkg.sha512
-microsoft.netcore.targets\2.1.0\microsoft.netcore.targets.nuspec
-microsoft.netcore.targets\2.1.0\runtime.json
-microsoft.netcore.targets\2.1.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.targets\2.1.0\useSharedDesignerContext.txt
-microsoft.netcore.targets\2.1.0\version.txt
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.3\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.3\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.3\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.3\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.3\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.3\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.3\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.3\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.2.1.3.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.3\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.4.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.4.txt
deleted file mode 100644
index f7116bcbe5..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.4.txt
+++ /dev/null
@@ -1,187 +0,0 @@
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.4\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.4\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.4\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.4\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.4\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.4\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.4\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.4\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.2.1.4.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.4\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.5.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.5.txt
deleted file mode 100644
index e16aa65b04..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.5.txt
+++ /dev/null
@@ -1,205 +0,0 @@
-microsoft.aspnetcore.razor.design\2.1.2\.signature.p7s
-microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
-microsoft.aspnetcore.razor.design\2.1.2\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.1.2\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512
-microsoft.aspnetcore.razor.design\2.1.2\microsoft.aspnetcore.razor.design.nuspec
-microsoft.aspnetcore.razor.design\2.1.2\tasks\net46\Microsoft.AspNetCore.Razor.Tasks.dll
-microsoft.aspnetcore.razor.design\2.1.2\tasks\netstandard2.0\Microsoft.AspNetCore.Razor.Tasks.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.CSharp.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Microsoft.CodeAnalysis.Razor.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\Newtonsoft.Json.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.deps.json
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.dll
-microsoft.aspnetcore.razor.design\2.1.2\tools\rzc.runtimeconfig.json
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.5\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.5\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.5\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.5\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.5\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.5\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.5\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.5\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.2.1.5.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.5\Templates\ViewGenerator\List.cshtml
diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.6.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.6.txt
deleted file mode 100644
index ba2033ed81..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.1.6.txt
+++ /dev/null
@@ -1,667 +0,0 @@
-libuv\1.10.0\.nupkg.metadata
-libuv\1.10.0\.signature.p7s
-messagepack\1.7.3.4\.nupkg.metadata
-messagepack\1.7.3.4\.signature.p7s
-microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
-microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
-microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
-microsoft.applicationinsights\2.4.0\.nupkg.metadata
-microsoft.applicationinsights\2.4.0\.signature.p7s
-microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
-microsoft.aspnetcore.all\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.antiforgery\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.app\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.azuread.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.cookies\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.facebook\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.google\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.jwtbearer\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.microsoftaccount\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.oauth\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.openidconnect\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.twitter\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication.wsfederation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authentication\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authorization.policy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.authorization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.azureappservices.hostingstartup\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.azureappservicesintegration\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.connections.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cookiepolicy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cors\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cryptography.internal\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.cryptography.keyderivation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurestorage\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.dataprotection\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.diagnostics\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hostfiltering\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting.server.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.hosting\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.html.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.connections.common\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.http.connections\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.http.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http.features\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.http\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.httpoverrides\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.httpspolicy\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity.ui\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.identity\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.jsonpatch\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.localization.routing\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.localization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.middlewareanalysis\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.analyzers\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.apiexplorer\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.cors\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.dataannotations\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.json\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.xml\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.localization\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.razorpages\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.taghelpers\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc.viewfeatures\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.mvc\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.nodeservices\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.owin\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor.design\2.1.2\.nupkg.metadata
-microsoft.aspnetcore.razor.language\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor.runtime\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.razor\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecaching.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecaching\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.responsecompression\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.rewrite\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.routing.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.routing\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.httpsys\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.iisintegration\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.core\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.https\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.session\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.common\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.core\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.protocols.json\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr.redis\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.signalr\1.0.1\.nupkg.metadata
-microsoft.aspnetcore.spaservices.extensions\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.spaservices\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.staticfiles\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.websockets\2.1.1\.nupkg.metadata
-microsoft.aspnetcore.webutilities\2.1.1\.nupkg.metadata
-microsoft.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
-microsoft.azure.keyvault\2.3.2\.nupkg.metadata
-microsoft.azure.keyvault\2.3.2\.signature.p7s
-microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
-microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
-microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
-microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp.workspaces\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.1.1\.nupkg.metadata
-microsoft.codeanalysis.workspaces.common\2.8.0\.nupkg.metadata
-microsoft.csharp\4.0.1\.nupkg.metadata
-microsoft.csharp\4.3.0\.nupkg.metadata
-microsoft.csharp\4.5.0\.nupkg.metadata
-microsoft.data.edm\5.8.2\.nupkg.metadata
-microsoft.data.odata\5.8.2\.nupkg.metadata
-microsoft.data.sqlite.core\2.1.0\.nupkg.metadata
-microsoft.data.sqlite\2.1.0\.nupkg.metadata
-microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.analyzers\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.design\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.inmemory\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.relational\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite.core\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.sqlserver\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore.tools\2.1.1\.nupkg.metadata
-microsoft.entityframeworkcore\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.memory\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.redis\2.1.1\.nupkg.metadata
-microsoft.extensions.caching.sqlserver\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.azurekeyvault\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.binder\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.commandline\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.environmentvariables\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.fileextensions\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.ini\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.json\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.keyperfile\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.usersecrets\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration.xml\2.1.1\.nupkg.metadata
-microsoft.extensions.configuration\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencyinjection.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencyinjection\2.1.1\.nupkg.metadata
-microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.1.0\.nupkg.metadata
-microsoft.extensions.fileproviders.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.composite\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.embedded\2.1.1\.nupkg.metadata
-microsoft.extensions.fileproviders.physical\2.1.1\.nupkg.metadata
-microsoft.extensions.filesystemglobbing\2.1.1\.nupkg.metadata
-microsoft.extensions.hosting.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.hosting\2.1.1\.nupkg.metadata
-microsoft.extensions.http\2.1.1\.nupkg.metadata
-microsoft.extensions.identity.core\2.1.1\.nupkg.metadata
-microsoft.extensions.identity.stores\2.1.1\.nupkg.metadata
-microsoft.extensions.localization.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.localization\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.abstractions\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.azureappservices\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.configuration\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.console\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.debug\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.eventsource\2.1.1\.nupkg.metadata
-microsoft.extensions.logging.tracesource\2.1.1\.nupkg.metadata
-microsoft.extensions.logging\2.1.1\.nupkg.metadata
-microsoft.extensions.objectpool\2.1.1\.nupkg.metadata
-microsoft.extensions.options.configurationextensions\2.1.1\.nupkg.metadata
-microsoft.extensions.options\2.1.1\.nupkg.metadata
-microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
-microsoft.extensions.primitives\2.1.1\.nupkg.metadata
-microsoft.extensions.webencoders\2.1.1\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
-microsoft.identitymodel.logging\5.2.0\.nupkg.metadata
-microsoft.identitymodel.logging\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols.openidconnect\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols.openidconnect\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols.wsfederation\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols.wsfederation\5.2.0\.signature.p7s
-microsoft.identitymodel.protocols\5.2.0\.nupkg.metadata
-microsoft.identitymodel.protocols\5.2.0\.signature.p7s
-microsoft.identitymodel.tokens.saml\5.2.0\.nupkg.metadata
-microsoft.identitymodel.tokens.saml\5.2.0\.signature.p7s
-microsoft.identitymodel.tokens\5.2.0\.nupkg.metadata
-microsoft.identitymodel.tokens\5.2.0\.signature.p7s
-microsoft.identitymodel.xml\5.2.0\.nupkg.metadata
-microsoft.identitymodel.xml\5.2.0\.signature.p7s
-microsoft.net.http.headers\2.1.1\.nupkg.metadata
-microsoft.netcore.app\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnetapphost\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnethostpolicy\2.1.0\.nupkg.metadata
-microsoft.netcore.dotnethostresolver\2.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.signature.p7s
-microsoft.netcore.platforms\1.0.2\.nupkg.metadata
-microsoft.netcore.platforms\1.0.2\.signature.p7s
-microsoft.netcore.platforms\1.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.1.0\.signature.p7s
-microsoft.netcore.platforms\2.0.0\.nupkg.metadata
-microsoft.netcore.platforms\2.0.0\.signature.p7s
-microsoft.netcore.platforms\2.1.0\.nupkg.metadata
-microsoft.netcore.targets\1.0.1\.nupkg.metadata
-microsoft.netcore.targets\1.1.0\.nupkg.metadata
-microsoft.netcore.targets\2.1.0\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
-microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
-microsoft.rest.clientruntime\2.3.8\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.1.1\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.contracts\2.1.6\microsoft.visualstudio.web.codegeneration.contracts.nuspec
-microsoft.visualstudio.web.codegeneration.core\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.core\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.core\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.core\2.1.6\microsoft.visualstudio.web.codegeneration.core.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.design\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\lib\netstandard2.0\dotnet-aspnet-codegenerator-design.dll
-microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.design\2.1.6\microsoft.visualstudio.web.codegeneration.design.nuspec
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win7-x86\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.design\2.1.6\runtimes\win-arm64\lib\net461\dotnet-aspnet-codegenerator-design.exe
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec
-microsoft.visualstudio.web.codegeneration.entityframeworkcore\2.1.6\Templates\DbContext\NewLocalDbContext.cshtml
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.templating\2.1.6\microsoft.visualstudio.web.codegeneration.templating.nuspec
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration.utils\2.1.6\microsoft.visualstudio.web.codegeneration.utils.nuspec
-microsoft.visualstudio.web.codegeneration\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegeneration\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegeneration\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGeneration.dll
-microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegeneration\2.1.6\microsoft.visualstudio.web.codegeneration.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.nupkg.metadata
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\.signature.p7s
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\area.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\controller.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\identity.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\razorpage.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Generators\ParameterDefinitions\view.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\identitygeneratorfilesconfig.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\lib\netstandard2.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.2.1.6.nupkg.sha512
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\microsoft.visualstudio.web.codegenerators.mvc.nuspec
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ApiEmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\ControllerWithActions.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\EmptyController.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ControllerGenerator\MvcControllerWithContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\_LoginPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationDbContext.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Data\ApplicationUser.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\IdentityHostingStartup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\_ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.AccessDenied.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ConfirmEmail.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ExternalLogin.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ForgotPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Lockout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Login.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWith2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.LoginWithRecoveryCode.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Logout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.Register.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Account.ResetPasswordConfirmation.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ManageNav.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._StatusMessage.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ChangePassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DeletePersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Disable2fa.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.DownloadPersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.EnableAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ExternalLogins.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.GenerateRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.Index.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ManageNavPages.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.PersonalData.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ResetAuthenticator.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.SetPassword.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.ShowRecoveryCodes.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Account\Manage\Account.Manage.TwoFactorAuthentication.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cs.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\Pages\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\ScaffoldingReadme.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._CookieConsentPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewImports.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\SupportPages._ViewStart.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\css\site.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\favicon.ico
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner1.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner2.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\images\banner3.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\js\site.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\css\bootstrap-theme.min.css.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.eot
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.svg
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.ttf
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\fonts\glyphicons-halflings-regular.woff2
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\bootstrap.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\dist\js\npm.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\bootstrap\LICENSE
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\dist\jquery.min.map
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\additional-methods.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\dist\jquery.validate.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation\LICENSE.md
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\.bower.json
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\jquery.validate.unobtrusive.min.js
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Identity\wwwroot\lib\jquery-validation-unobtrusive\LICENSE.txt
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\_Layout.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\MvcLayout\Error.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\CreatePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DeletePageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\DetailsPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EditPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\EmptyPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\List.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\RazorPageGenerator\ListPageModel.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\ReadMe.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\Startup\Startup.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\_ValidationScriptsPartial.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Create.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Delete.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Details.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Edit.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\Empty.cshtml
-microsoft.visualstudio.web.codegenerators.mvc\2.1.6\Templates\ViewGenerator\List.cshtml
-microsoft.win32.primitives\4.0.1\.nupkg.metadata
-microsoft.win32.primitives\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.5.0\.nupkg.metadata
-netstandard.library\1.6.0\.nupkg.metadata
-netstandard.library\1.6.1\.nupkg.metadata
-netstandard.library\2.0.3\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.signature.p7s
-newtonsoft.json\10.0.1\.nupkg.metadata
-newtonsoft.json\10.0.1\.signature.p7s
-newtonsoft.json\11.0.2\.nupkg.metadata
-newtonsoft.json\11.0.2\.signature.p7s
-newtonsoft.json\9.0.1\.nupkg.metadata
-nuget.frameworks\4.7.0\.nupkg.metadata
-remotion.linq\2.2.0\.nupkg.metadata
-remotion.linq\2.2.0\.signature.p7s
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.native.system.io.compression\4.1.0\.nupkg.metadata
-runtime.native.system.io.compression\4.3.0\.nupkg.metadata
-runtime.native.system.net.http\4.0.1\.nupkg.metadata
-runtime.native.system.net.http\4.3.0\.nupkg.metadata
-runtime.native.system.net.security\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
-runtime.native.system\4.0.0\.nupkg.metadata
-runtime.native.system\4.3.0\.nupkg.metadata
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.signature.p7s
-sqlitepclraw.core\1.1.11\.nupkg.metadata
-sqlitepclraw.core\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
-stackexchange.redis.strongname\1.2.4\.nupkg.metadata
-stackexchange.redis.strongname\1.2.4\.signature.p7s
-system.appcontext\4.1.0\.nupkg.metadata
-system.appcontext\4.3.0\.nupkg.metadata
-system.buffers\4.0.0\.nupkg.metadata
-system.buffers\4.3.0\.nupkg.metadata
-system.buffers\4.5.0\.nupkg.metadata
-system.collections.concurrent\4.0.12\.nupkg.metadata
-system.collections.concurrent\4.3.0\.nupkg.metadata
-system.collections.immutable\1.3.0\.nupkg.metadata
-system.collections.immutable\1.3.1\.nupkg.metadata
-system.collections.immutable\1.5.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.nupkg.metadata
-system.collections.specialized\4.3.0\.nupkg.metadata
-system.collections\4.0.11\.nupkg.metadata
-system.collections\4.3.0\.nupkg.metadata
-system.componentmodel.annotations\4.5.0\.nupkg.metadata
-system.componentmodel.primitives\4.3.0\.nupkg.metadata
-system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
-system.componentmodel\4.3.0\.nupkg.metadata
-system.composition.attributedmodel\1.0.31\.nupkg.metadata
-system.composition.convention\1.0.31\.nupkg.metadata
-system.composition.hosting\1.0.31\.nupkg.metadata
-system.composition.runtime\1.0.31\.nupkg.metadata
-system.composition.typedparts\1.0.31\.nupkg.metadata
-system.composition\1.0.31\.nupkg.metadata
-system.console\4.0.0\.nupkg.metadata
-system.console\4.3.0\.nupkg.metadata
-system.data.sqlclient\4.5.1\.nupkg.metadata
-system.diagnostics.contracts\4.3.0\.nupkg.metadata
-system.diagnostics.debug\4.0.11\.nupkg.metadata
-system.diagnostics.debug\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
-system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
-system.diagnostics.process\4.3.0\.nupkg.metadata
-system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
-system.diagnostics.tools\4.0.1\.nupkg.metadata
-system.diagnostics.tools\4.3.0\.nupkg.metadata
-system.diagnostics.tracing\4.1.0\.nupkg.metadata
-system.diagnostics.tracing\4.3.0\.nupkg.metadata
-system.dynamic.runtime\4.0.11\.nupkg.metadata
-system.dynamic.runtime\4.3.0\.nupkg.metadata
-system.globalization.calendars\4.0.1\.nupkg.metadata
-system.globalization.calendars\4.3.0\.nupkg.metadata
-system.globalization.extensions\4.0.1\.nupkg.metadata
-system.globalization.extensions\4.3.0\.nupkg.metadata
-system.globalization\4.0.11\.nupkg.metadata
-system.globalization\4.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.2.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.2.0\.signature.p7s
-system.interactive.async\3.1.1\.nupkg.metadata
-system.interactive.async\3.1.1\.signature.p7s
-system.io.compression.zipfile\4.0.1\.nupkg.metadata
-system.io.compression.zipfile\4.3.0\.nupkg.metadata
-system.io.compression\4.1.0\.nupkg.metadata
-system.io.compression\4.3.0\.nupkg.metadata
-system.io.filesystem.primitives\4.0.1\.nupkg.metadata
-system.io.filesystem.primitives\4.3.0\.nupkg.metadata
-system.io.filesystem\4.0.1\.nupkg.metadata
-system.io.filesystem\4.3.0\.nupkg.metadata
-system.io.pipelines\4.5.0\.nupkg.metadata
-system.io\4.1.0\.nupkg.metadata
-system.io\4.3.0\.nupkg.metadata
-system.linq.expressions\4.1.0\.nupkg.metadata
-system.linq.expressions\4.3.0\.nupkg.metadata
-system.linq.parallel\4.3.0\.nupkg.metadata
-system.linq.queryable\4.0.1\.nupkg.metadata
-system.linq\4.1.0\.nupkg.metadata
-system.linq\4.3.0\.nupkg.metadata
-system.memory\4.5.1\.nupkg.metadata
-system.net.http\4.1.0\.nupkg.metadata
-system.net.http\4.1.0\.signature.p7s
-system.net.http\4.3.0\.nupkg.metadata
-system.net.http\4.3.0\.signature.p7s
-system.net.nameresolution\4.3.0\.nupkg.metadata
-system.net.primitives\4.0.11\.nupkg.metadata
-system.net.primitives\4.3.0\.nupkg.metadata
-system.net.security\4.3.0\.nupkg.metadata
-system.net.sockets\4.1.0\.nupkg.metadata
-system.net.sockets\4.3.0\.nupkg.metadata
-system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
-system.numerics.vectors\4.5.0\.nupkg.metadata
-system.objectmodel\4.0.12\.nupkg.metadata
-system.objectmodel\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.1.1\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
-system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
-system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
-system.reflection.emit\4.0.1\.nupkg.metadata
-system.reflection.emit\4.3.0\.nupkg.metadata
-system.reflection.extensions\4.0.1\.nupkg.metadata
-system.reflection.extensions\4.3.0\.nupkg.metadata
-system.reflection.metadata\1.4.1\.nupkg.metadata
-system.reflection.metadata\1.4.2\.nupkg.metadata
-system.reflection.metadata\1.6.0\.nupkg.metadata
-system.reflection.primitives\4.0.1\.nupkg.metadata
-system.reflection.primitives\4.3.0\.nupkg.metadata
-system.reflection.typeextensions\4.1.0\.nupkg.metadata
-system.reflection.typeextensions\4.3.0\.nupkg.metadata
-system.reflection\4.1.0\.nupkg.metadata
-system.reflection\4.3.0\.nupkg.metadata
-system.resources.resourcemanager\4.0.1\.nupkg.metadata
-system.resources.resourcemanager\4.3.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
-system.runtime.extensions\4.1.0\.nupkg.metadata
-system.runtime.extensions\4.3.0\.nupkg.metadata
-system.runtime.handles\4.0.1\.nupkg.metadata
-system.runtime.handles\4.3.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
-system.runtime.interopservices\4.1.0\.nupkg.metadata
-system.runtime.interopservices\4.3.0\.nupkg.metadata
-system.runtime.numerics\4.0.1\.nupkg.metadata
-system.runtime.numerics\4.3.0\.nupkg.metadata
-system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.0.2\.nupkg.metadata
-system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
-system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.nupkg.metadata
-system.runtime\4.1.0\.nupkg.metadata
-system.runtime\4.3.0\.nupkg.metadata
-system.security.accesscontrol\4.5.0\.nupkg.metadata
-system.security.claims\4.3.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.2.0\.nupkg.metadata
-system.security.cryptography.cng\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.5.0\.nupkg.metadata
-system.security.cryptography.csp\4.0.0\.nupkg.metadata
-system.security.cryptography.csp\4.3.0\.nupkg.metadata
-system.security.cryptography.encoding\4.0.0\.nupkg.metadata
-system.security.cryptography.encoding\4.3.0\.nupkg.metadata
-system.security.cryptography.openssl\4.0.0\.nupkg.metadata
-system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
-system.security.cryptography.primitives\4.0.0\.nupkg.metadata
-system.security.cryptography.primitives\4.3.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
-system.security.cryptography.xml\4.5.0\.nupkg.metadata
-system.security.permissions\4.5.0\.nupkg.metadata
-system.security.principal.windows\4.3.0\.nupkg.metadata
-system.security.principal.windows\4.5.0\.nupkg.metadata
-system.security.principal\4.3.0\.nupkg.metadata
-system.spatial\5.8.2\.nupkg.metadata
-system.text.encoding.codepages\4.3.0\.nupkg.metadata
-system.text.encoding.codepages\4.5.0\.nupkg.metadata
-system.text.encoding.extensions\4.0.11\.nupkg.metadata
-system.text.encoding.extensions\4.3.0\.nupkg.metadata
-system.text.encoding\4.0.11\.nupkg.metadata
-system.text.encoding\4.3.0\.nupkg.metadata
-system.text.encodings.web\4.3.1\.nupkg.metadata
-system.text.encodings.web\4.3.1\.signature.p7s
-system.text.encodings.web\4.5.0\.nupkg.metadata
-system.text.regularexpressions\4.1.0\.nupkg.metadata
-system.text.regularexpressions\4.3.0\.nupkg.metadata
-system.threading.channels\4.5.0\.nupkg.metadata
-system.threading.tasks.extensions\4.0.0\.nupkg.metadata
-system.threading.tasks.extensions\4.3.0\.nupkg.metadata
-system.threading.tasks.extensions\4.5.1\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.nupkg.metadata
-system.threading.tasks\4.0.11\.nupkg.metadata
-system.threading.tasks\4.3.0\.nupkg.metadata
-system.threading.thread\4.3.0\.nupkg.metadata
-system.threading.threadpool\4.3.0\.nupkg.metadata
-system.threading.timer\4.0.1\.nupkg.metadata
-system.threading.timer\4.3.0\.nupkg.metadata
-system.threading\4.0.11\.nupkg.metadata
-system.threading\4.3.0\.nupkg.metadata
-system.valuetuple\4.3.0\.nupkg.metadata
-system.valuetuple\4.5.0\.nupkg.metadata
-system.xml.readerwriter\4.0.11\.nupkg.metadata
-system.xml.readerwriter\4.3.0\.nupkg.metadata
-system.xml.xdocument\4.0.11\.nupkg.metadata
-system.xml.xdocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.0.1\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.nupkg.metadata
-system.xml.xmlserializer\4.0.11\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.nupkg.metadata
-system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.nupkg.metadata
-windowsazure.storage\8.1.4\.nupkg.metadata
-windowsazure.storage\8.1.4\.signature.p7s
diff --git a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.2.0.txt b/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.2.0.txt
deleted file mode 100644
index 7579756141..0000000000
--- a/src/PackageArchive/Archive.CiServer.Patch/ArchiveBaseline.2.2.0.txt
+++ /dev/null
@@ -1,1629 +0,0 @@
-libuv\1.10.0\.nupkg.metadata
-libuv\1.10.0\.signature.p7s
-messagepack\1.7.3.4\.nupkg.metadata
-messagepack\1.7.3.4\.signature.p7s
-microsoft.applicationinsights.aspnetcore\2.1.1\.nupkg.metadata
-microsoft.applicationinsights.aspnetcore\2.1.1\.signature.p7s
-microsoft.applicationinsights.dependencycollector\2.4.1\.nupkg.metadata
-microsoft.applicationinsights.dependencycollector\2.4.1\.signature.p7s
-microsoft.applicationinsights\2.4.0\.nupkg.metadata
-microsoft.applicationinsights\2.4.0\.signature.p7s
-microsoft.aspnet.webapi.client\5.2.6\.nupkg.metadata
-microsoft.aspnetcore.all\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.all\2.2.0\.signature.p7s
-microsoft.aspnetcore.all\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.All.props
-microsoft.aspnetcore.all\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.All.targets
-microsoft.aspnetcore.all\2.2.0\lib\netcoreapp2.2\_._
-microsoft.aspnetcore.all\2.2.0\microsoft.aspnetcore.all.2.2.0.nupkg.sha512
-microsoft.aspnetcore.all\2.2.0\microsoft.aspnetcore.all.nuspec
-microsoft.aspnetcore.antiforgery\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.antiforgery\2.2.0\.signature.p7s
-microsoft.aspnetcore.antiforgery\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Antiforgery.dll
-microsoft.aspnetcore.antiforgery\2.2.0\microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512
-microsoft.aspnetcore.antiforgery\2.2.0\microsoft.aspnetcore.antiforgery.nuspec
-microsoft.aspnetcore.app\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.app\2.2.0\.signature.p7s
-microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.props
-microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.targets
-microsoft.aspnetcore.app\2.2.0\lib\netcoreapp2.2\_._
-microsoft.aspnetcore.app\2.2.0\microsoft.aspnetcore.app.2.2.0.nupkg.sha512
-microsoft.aspnetcore.app\2.2.0\microsoft.aspnetcore.app.nuspec
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\.signature.p7s
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\net461\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\microsoft.aspnetcore.applicationinsights.hostingstartup.2.2.0.nupkg.sha512
-microsoft.aspnetcore.applicationinsights.hostingstartup\2.2.0\microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec
-microsoft.aspnetcore.authentication.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Abstractions.dll
-microsoft.aspnetcore.authentication.abstractions\2.2.0\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.abstractions\2.2.0\microsoft.aspnetcore.authentication.abstractions.nuspec
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.dll
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureAD.UI.Views.dll
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\microsoft.aspnetcore.authentication.azuread.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.azuread.ui\2.2.0\microsoft.aspnetcore.authentication.azuread.ui.nuspec
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.dll
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.AzureADB2C.UI.Views.dll
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\microsoft.aspnetcore.authentication.azureadb2c.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.azureadb2c.ui\2.2.0\microsoft.aspnetcore.authentication.azureadb2c.ui.nuspec
-microsoft.aspnetcore.authentication.cookies\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.cookies\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.cookies\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Cookies.dll
-microsoft.aspnetcore.authentication.cookies\2.2.0\microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.cookies\2.2.0\microsoft.aspnetcore.authentication.cookies.nuspec
-microsoft.aspnetcore.authentication.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Core.dll
-microsoft.aspnetcore.authentication.core\2.2.0\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.core\2.2.0\microsoft.aspnetcore.authentication.core.nuspec
-microsoft.aspnetcore.authentication.facebook\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.facebook\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.facebook\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Facebook.dll
-microsoft.aspnetcore.authentication.facebook\2.2.0\microsoft.aspnetcore.authentication.facebook.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.facebook\2.2.0\microsoft.aspnetcore.authentication.facebook.nuspec
-microsoft.aspnetcore.authentication.google\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.google\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.google\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Google.dll
-microsoft.aspnetcore.authentication.google\2.2.0\microsoft.aspnetcore.authentication.google.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.google\2.2.0\microsoft.aspnetcore.authentication.google.nuspec
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\microsoft.aspnetcore.authentication.jwtbearer.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.jwtbearer\2.2.0\microsoft.aspnetcore.authentication.jwtbearer.nuspec
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\microsoft.aspnetcore.authentication.microsoftaccount.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.microsoftaccount\2.2.0\microsoft.aspnetcore.authentication.microsoftaccount.nuspec
-microsoft.aspnetcore.authentication.oauth\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.oauth\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.oauth\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OAuth.dll
-microsoft.aspnetcore.authentication.oauth\2.2.0\microsoft.aspnetcore.authentication.oauth.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.oauth\2.2.0\microsoft.aspnetcore.authentication.oauth.nuspec
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\microsoft.aspnetcore.authentication.openidconnect.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.openidconnect\2.2.0\microsoft.aspnetcore.authentication.openidconnect.nuspec
-microsoft.aspnetcore.authentication.twitter\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.twitter\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.twitter\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.Twitter.dll
-microsoft.aspnetcore.authentication.twitter\2.2.0\microsoft.aspnetcore.authentication.twitter.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.twitter\2.2.0\microsoft.aspnetcore.authentication.twitter.nuspec
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.WsFederation.dll
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\microsoft.aspnetcore.authentication.wsfederation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication.wsfederation\2.2.0\microsoft.aspnetcore.authentication.wsfederation.nuspec
-microsoft.aspnetcore.authentication\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authentication\2.2.0\.signature.p7s
-microsoft.aspnetcore.authentication\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authentication.dll
-microsoft.aspnetcore.authentication\2.2.0\microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authentication\2.2.0\microsoft.aspnetcore.authentication.nuspec
-microsoft.aspnetcore.authorization.policy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authorization.policy\2.2.0\.signature.p7s
-microsoft.aspnetcore.authorization.policy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.Policy.dll
-microsoft.aspnetcore.authorization.policy\2.2.0\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authorization.policy\2.2.0\microsoft.aspnetcore.authorization.policy.nuspec
-microsoft.aspnetcore.authorization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.authorization\2.2.0\.signature.p7s
-microsoft.aspnetcore.authorization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Authorization.dll
-microsoft.aspnetcore.authorization\2.2.0\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.authorization\2.2.0\microsoft.aspnetcore.authorization.nuspec
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\.signature.p7s
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\net461\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\microsoft.aspnetcore.azureappservices.hostingstartup.2.2.0.nupkg.sha512
-microsoft.aspnetcore.azureappservices.hostingstartup\2.2.0\microsoft.aspnetcore.azureappservices.hostingstartup.nuspec
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\.signature.p7s
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.AzureAppServicesIntegration.dll
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\microsoft.aspnetcore.azureappservicesintegration.2.2.0.nupkg.sha512
-microsoft.aspnetcore.azureappservicesintegration\2.2.0\microsoft.aspnetcore.azureappservicesintegration.nuspec
-microsoft.aspnetcore.connections.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.connections.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.connections.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Connections.Abstractions.dll
-microsoft.aspnetcore.connections.abstractions\2.2.0\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.connections.abstractions\2.2.0\microsoft.aspnetcore.connections.abstractions.nuspec
-microsoft.aspnetcore.cookiepolicy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cookiepolicy\2.2.0\.signature.p7s
-microsoft.aspnetcore.cookiepolicy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.CookiePolicy.dll
-microsoft.aspnetcore.cookiepolicy\2.2.0\microsoft.aspnetcore.cookiepolicy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cookiepolicy\2.2.0\microsoft.aspnetcore.cookiepolicy.nuspec
-microsoft.aspnetcore.cors\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cors\2.2.0\.signature.p7s
-microsoft.aspnetcore.cors\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cors.dll
-microsoft.aspnetcore.cors\2.2.0\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cors\2.2.0\microsoft.aspnetcore.cors.nuspec
-microsoft.aspnetcore.cryptography.internal\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cryptography.internal\2.2.0\.signature.p7s
-microsoft.aspnetcore.cryptography.internal\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.Internal.dll
-microsoft.aspnetcore.cryptography.internal\2.2.0\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cryptography.internal\2.2.0\microsoft.aspnetcore.cryptography.internal.nuspec
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\.signature.p7s
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\lib\netcoreapp2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\microsoft.aspnetcore.cryptography.keyderivation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.cryptography.keyderivation\2.2.0\microsoft.aspnetcore.cryptography.keyderivation.nuspec
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Abstractions.dll
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.abstractions\2.2.0\microsoft.aspnetcore.dataprotection.abstractions.nuspec
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureKeyVault.dll
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\microsoft.aspnetcore.dataprotection.azurekeyvault.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.azurekeyvault\2.2.0\microsoft.aspnetcore.dataprotection.azurekeyvault.nuspec
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.AzureStorage.dll
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\microsoft.aspnetcore.dataprotection.azurestorage.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.azurestorage\2.2.0\microsoft.aspnetcore.dataprotection.azurestorage.nuspec
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.Extensions.dll
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\microsoft.aspnetcore.dataprotection.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection.extensions\2.2.0\microsoft.aspnetcore.dataprotection.extensions.nuspec
-microsoft.aspnetcore.dataprotection\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.dataprotection\2.2.0\.signature.p7s
-microsoft.aspnetcore.dataprotection\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.DataProtection.dll
-microsoft.aspnetcore.dataprotection\2.2.0\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512
-microsoft.aspnetcore.dataprotection\2.2.0\microsoft.aspnetcore.dataprotection.nuspec
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.Abstractions.dll
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.abstractions\2.2.0\microsoft.aspnetcore.diagnostics.abstractions.nuspec
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\microsoft.aspnetcore.diagnostics.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.entityframeworkcore\2.2.0\microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\microsoft.aspnetcore.diagnostics.healthchecks.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics.healthchecks\2.2.0\microsoft.aspnetcore.diagnostics.healthchecks.nuspec
-microsoft.aspnetcore.diagnostics\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.diagnostics\2.2.0\.signature.p7s
-microsoft.aspnetcore.diagnostics\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Diagnostics.dll
-microsoft.aspnetcore.diagnostics\2.2.0\microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512
-microsoft.aspnetcore.diagnostics\2.2.0\microsoft.aspnetcore.diagnostics.nuspec
-microsoft.aspnetcore.hostfiltering\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hostfiltering\2.2.0\.signature.p7s
-microsoft.aspnetcore.hostfiltering\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HostFiltering.dll
-microsoft.aspnetcore.hostfiltering\2.2.0\microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hostfiltering\2.2.0\microsoft.aspnetcore.hostfiltering.nuspec
-microsoft.aspnetcore.hosting.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Abstractions.dll
-microsoft.aspnetcore.hosting.abstractions\2.2.0\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting.abstractions\2.2.0\microsoft.aspnetcore.hosting.abstractions.nuspec
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting.server.abstractions\2.2.0\microsoft.aspnetcore.hosting.server.abstractions.nuspec
-microsoft.aspnetcore.hosting\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.hosting\2.2.0\.signature.p7s
-microsoft.aspnetcore.hosting\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Hosting.dll
-microsoft.aspnetcore.hosting\2.2.0\microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512
-microsoft.aspnetcore.hosting\2.2.0\microsoft.aspnetcore.hosting.nuspec
-microsoft.aspnetcore.html.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.html.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.html.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Html.Abstractions.dll
-microsoft.aspnetcore.html.abstractions\2.2.0\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.html.abstractions\2.2.0\microsoft.aspnetcore.html.abstractions.nuspec
-microsoft.aspnetcore.http.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll
-microsoft.aspnetcore.http.abstractions\2.2.0\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.abstractions\2.2.0\microsoft.aspnetcore.http.abstractions.nuspec
-microsoft.aspnetcore.http.connections.common\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.http.connections.common\1.1.0\.signature.p7s
-microsoft.aspnetcore.http.connections.common\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.Common.dll
-microsoft.aspnetcore.http.connections.common\1.1.0\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512
-microsoft.aspnetcore.http.connections.common\1.1.0\microsoft.aspnetcore.http.connections.common.nuspec
-microsoft.aspnetcore.http.connections\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.http.connections\1.1.0\.signature.p7s
-microsoft.aspnetcore.http.connections\1.1.0\lib\netcoreapp2.2\Microsoft.AspNetCore.Http.Connections.dll
-microsoft.aspnetcore.http.connections\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Connections.dll
-microsoft.aspnetcore.http.connections\1.1.0\microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512
-microsoft.aspnetcore.http.connections\1.1.0\microsoft.aspnetcore.http.connections.nuspec
-microsoft.aspnetcore.http.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Extensions.dll
-microsoft.aspnetcore.http.extensions\2.2.0\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.extensions\2.2.0\microsoft.aspnetcore.http.extensions.nuspec
-microsoft.aspnetcore.http.features\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http.features\2.2.0\.signature.p7s
-microsoft.aspnetcore.http.features\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll
-microsoft.aspnetcore.http.features\2.2.0\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http.features\2.2.0\microsoft.aspnetcore.http.features.nuspec
-microsoft.aspnetcore.http\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.http\2.2.0\.signature.p7s
-microsoft.aspnetcore.http\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.dll
-microsoft.aspnetcore.http\2.2.0\microsoft.aspnetcore.http.2.2.0.nupkg.sha512
-microsoft.aspnetcore.http\2.2.0\microsoft.aspnetcore.http.nuspec
-microsoft.aspnetcore.httpoverrides\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.httpoverrides\2.2.0\.signature.p7s
-microsoft.aspnetcore.httpoverrides\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HttpOverrides.dll
-microsoft.aspnetcore.httpoverrides\2.2.0\microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512
-microsoft.aspnetcore.httpoverrides\2.2.0\microsoft.aspnetcore.httpoverrides.nuspec
-microsoft.aspnetcore.httpspolicy\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.httpspolicy\2.2.0\.signature.p7s
-microsoft.aspnetcore.httpspolicy\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.HttpsPolicy.dll
-microsoft.aspnetcore.httpspolicy\2.2.0\microsoft.aspnetcore.httpspolicy.2.2.0.nupkg.sha512
-microsoft.aspnetcore.httpspolicy\2.2.0\microsoft.aspnetcore.httpspolicy.nuspec
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\microsoft.aspnetcore.identity.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity.entityframeworkcore\2.2.0\microsoft.aspnetcore.identity.entityframeworkcore.nuspec
-microsoft.aspnetcore.identity.ui\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity.ui\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.dll
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.V3.dll
-microsoft.aspnetcore.identity.ui\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.UI.Views.V4.dll
-microsoft.aspnetcore.identity.ui\2.2.0\microsoft.aspnetcore.identity.ui.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity.ui\2.2.0\microsoft.aspnetcore.identity.ui.nuspec
-microsoft.aspnetcore.identity.ui\2.2.0\THIRD-PARTY-NOTICES.txt
-microsoft.aspnetcore.identity\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.identity\2.2.0\.signature.p7s
-microsoft.aspnetcore.identity\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Identity.dll
-microsoft.aspnetcore.identity\2.2.0\microsoft.aspnetcore.identity.2.2.0.nupkg.sha512
-microsoft.aspnetcore.identity\2.2.0\microsoft.aspnetcore.identity.nuspec
-microsoft.aspnetcore.jsonpatch\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.jsonpatch\2.2.0\.signature.p7s
-microsoft.aspnetcore.jsonpatch\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.JsonPatch.dll
-microsoft.aspnetcore.jsonpatch\2.2.0\microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512
-microsoft.aspnetcore.jsonpatch\2.2.0\microsoft.aspnetcore.jsonpatch.nuspec
-microsoft.aspnetcore.localization.routing\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.localization.routing\2.2.0\.signature.p7s
-microsoft.aspnetcore.localization.routing\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Localization.Routing.dll
-microsoft.aspnetcore.localization.routing\2.2.0\microsoft.aspnetcore.localization.routing.2.2.0.nupkg.sha512
-microsoft.aspnetcore.localization.routing\2.2.0\microsoft.aspnetcore.localization.routing.nuspec
-microsoft.aspnetcore.localization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.localization\2.2.0\.signature.p7s
-microsoft.aspnetcore.localization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Localization.dll
-microsoft.aspnetcore.localization\2.2.0\microsoft.aspnetcore.localization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.localization\2.2.0\microsoft.aspnetcore.localization.nuspec
-microsoft.aspnetcore.middlewareanalysis\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.middlewareanalysis\2.2.0\.signature.p7s
-microsoft.aspnetcore.middlewareanalysis\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.MiddlewareAnalysis.dll
-microsoft.aspnetcore.middlewareanalysis\2.2.0\microsoft.aspnetcore.middlewareanalysis.2.2.0.nupkg.sha512
-microsoft.aspnetcore.middlewareanalysis\2.2.0\microsoft.aspnetcore.middlewareanalysis.nuspec
-microsoft.aspnetcore.mvc.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Abstractions.dll
-microsoft.aspnetcore.mvc.abstractions\2.2.0\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.abstractions\2.2.0\microsoft.aspnetcore.mvc.abstractions.nuspec
-microsoft.aspnetcore.mvc.analyzers\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.analyzers\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.analyzers\2.2.0\analyzers\dotnet\cs\Microsoft.AspNetCore.Mvc.Analyzers.dll
-microsoft.aspnetcore.mvc.analyzers\2.2.0\microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.analyzers\2.2.0\microsoft.aspnetcore.mvc.analyzers.nuspec
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ApiExplorer.dll
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.apiexplorer\2.2.0\microsoft.aspnetcore.mvc.apiexplorer.nuspec
-microsoft.aspnetcore.mvc.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Core.dll
-microsoft.aspnetcore.mvc.core\2.2.0\microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.core\2.2.0\microsoft.aspnetcore.mvc.core.nuspec
-microsoft.aspnetcore.mvc.cors\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.cors\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.cors\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Cors.dll
-microsoft.aspnetcore.mvc.cors\2.2.0\microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.cors\2.2.0\microsoft.aspnetcore.mvc.cors.nuspec
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.DataAnnotations.dll
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.dataannotations\2.2.0\microsoft.aspnetcore.mvc.dataannotations.nuspec
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Json.dll
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.formatters.json\2.2.0\microsoft.aspnetcore.mvc.formatters.json.nuspec
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\microsoft.aspnetcore.mvc.formatters.xml.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.formatters.xml\2.2.0\microsoft.aspnetcore.mvc.formatters.xml.nuspec
-microsoft.aspnetcore.mvc.localization\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.localization\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.localization\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Localization.dll
-microsoft.aspnetcore.mvc.localization\2.2.0\microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.localization\2.2.0\microsoft.aspnetcore.mvc.localization.nuspec
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\lib\net46\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor.extensions\2.2.0\microsoft.aspnetcore.mvc.razor.extensions.nuspec
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\net461\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.exe
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\net461\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\build\netstandard2.0\netcoreapp2.0\Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\microsoft.aspnetcore.mvc.razor.viewcompilation.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor.viewcompilation\2.2.0\microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec
-microsoft.aspnetcore.mvc.razor\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razor\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razor\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.dll
-microsoft.aspnetcore.mvc.razor\2.2.0\microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razor\2.2.0\microsoft.aspnetcore.mvc.razor.nuspec
-microsoft.aspnetcore.mvc.razorpages\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.razorpages\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.razorpages\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.RazorPages.dll
-microsoft.aspnetcore.mvc.razorpages\2.2.0\microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.razorpages\2.2.0\microsoft.aspnetcore.mvc.razorpages.nuspec
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.TagHelpers.dll
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.taghelpers\2.2.0\microsoft.aspnetcore.mvc.taghelpers.nuspec
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.ViewFeatures.dll
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc.viewfeatures\2.2.0\microsoft.aspnetcore.mvc.viewfeatures.nuspec
-microsoft.aspnetcore.mvc\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.mvc\2.2.0\.signature.p7s
-microsoft.aspnetcore.mvc\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.dll
-microsoft.aspnetcore.mvc\2.2.0\microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512
-microsoft.aspnetcore.mvc\2.2.0\microsoft.aspnetcore.mvc.nuspec
-microsoft.aspnetcore.nodeservices\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.nodeservices\2.2.0\.signature.p7s
-microsoft.aspnetcore.nodeservices\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.NodeServices.dll
-microsoft.aspnetcore.nodeservices\2.2.0\microsoft.aspnetcore.nodeservices.2.2.0.nupkg.sha512
-microsoft.aspnetcore.nodeservices\2.2.0\microsoft.aspnetcore.nodeservices.nuspec
-microsoft.aspnetcore.owin\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.owin\2.2.0\.signature.p7s
-microsoft.aspnetcore.owin\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Owin.dll
-microsoft.aspnetcore.owin\2.2.0\microsoft.aspnetcore.owin.2.2.0.nupkg.sha512
-microsoft.aspnetcore.owin\2.2.0\microsoft.aspnetcore.owin.nuspec
-microsoft.aspnetcore.razor.design\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.design\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets
-microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.2.0\buildMultiTargeting\Microsoft.AspNetCore.Razor.Design.props
-microsoft.aspnetcore.razor.design\2.2.0\microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.design\2.2.0\microsoft.aspnetcore.razor.design.nuspec
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.CSharp.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Microsoft.CodeAnalysis.Razor.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\Newtonsoft.Json.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\runtimes\unix\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\runtimes\win\lib\netstandard1.3\System.Text.Encoding.CodePages.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.deps.json
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.dll
-microsoft.aspnetcore.razor.design\2.2.0\tools\rzc.runtimeconfig.json
-microsoft.aspnetcore.razor.language\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.language\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.language\2.2.0\lib\net46\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.language\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Language.dll
-microsoft.aspnetcore.razor.language\2.2.0\microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.language\2.2.0\microsoft.aspnetcore.razor.language.nuspec
-microsoft.aspnetcore.razor.runtime\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor.runtime\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor.runtime\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.Runtime.dll
-microsoft.aspnetcore.razor.runtime\2.2.0\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor.runtime\2.2.0\microsoft.aspnetcore.razor.runtime.nuspec
-microsoft.aspnetcore.razor\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.razor\2.2.0\.signature.p7s
-microsoft.aspnetcore.razor\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Razor.dll
-microsoft.aspnetcore.razor\2.2.0\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512
-microsoft.aspnetcore.razor\2.2.0\microsoft.aspnetcore.razor.nuspec
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecaching.abstractions\2.2.0\microsoft.aspnetcore.responsecaching.abstractions.nuspec
-microsoft.aspnetcore.responsecaching\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecaching\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecaching\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCaching.dll
-microsoft.aspnetcore.responsecaching\2.2.0\microsoft.aspnetcore.responsecaching.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecaching\2.2.0\microsoft.aspnetcore.responsecaching.nuspec
-microsoft.aspnetcore.responsecompression\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.responsecompression\2.2.0\.signature.p7s
-microsoft.aspnetcore.responsecompression\2.2.0\lib\net461\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.ResponseCompression.dll
-microsoft.aspnetcore.responsecompression\2.2.0\microsoft.aspnetcore.responsecompression.2.2.0.nupkg.sha512
-microsoft.aspnetcore.responsecompression\2.2.0\microsoft.aspnetcore.responsecompression.nuspec
-microsoft.aspnetcore.rewrite\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.rewrite\2.2.0\.signature.p7s
-microsoft.aspnetcore.rewrite\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Rewrite.dll
-microsoft.aspnetcore.rewrite\2.2.0\microsoft.aspnetcore.rewrite.2.2.0.nupkg.sha512
-microsoft.aspnetcore.rewrite\2.2.0\microsoft.aspnetcore.rewrite.nuspec
-microsoft.aspnetcore.routing.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.routing.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.routing.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Routing.Abstractions.dll
-microsoft.aspnetcore.routing.abstractions\2.2.0\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.routing.abstractions\2.2.0\microsoft.aspnetcore.routing.abstractions.nuspec
-microsoft.aspnetcore.routing\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.routing\2.2.0\.signature.p7s
-microsoft.aspnetcore.routing\2.2.0\lib\netcoreapp2.2\Microsoft.AspNetCore.Routing.dll
-microsoft.aspnetcore.routing\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Routing.dll
-microsoft.aspnetcore.routing\2.2.0\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512
-microsoft.aspnetcore.routing\2.2.0\microsoft.aspnetcore.routing.nuspec
-microsoft.aspnetcore.server.httpsys\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.httpsys\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.httpsys\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.HttpSys.dll
-microsoft.aspnetcore.server.httpsys\2.2.0\microsoft.aspnetcore.server.httpsys.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.httpsys\2.2.0\microsoft.aspnetcore.server.httpsys.nuspec
-microsoft.aspnetcore.server.iis\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.iis\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.iis\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Server.IIS.targets
-microsoft.aspnetcore.server.iis\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.IIS.dll
-microsoft.aspnetcore.server.iis\2.2.0\microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.iis\2.2.0\microsoft.aspnetcore.server.iis.nuspec
-microsoft.aspnetcore.server.iis\2.2.0\runtimes\win-x64\nativeassets\netcoreapp2.2\aspnetcorev2_inprocess.dll
-microsoft.aspnetcore.server.iis\2.2.0\runtimes\win-x86\nativeassets\netcoreapp2.2\aspnetcorev2_inprocess.dll
-microsoft.aspnetcore.server.iisintegration\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.iisintegration\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.iisintegration\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.targets
-microsoft.aspnetcore.server.iisintegration\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.IISIntegration.dll
-microsoft.aspnetcore.server.iisintegration\2.2.0\microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.iisintegration\2.2.0\microsoft.aspnetcore.server.iisintegration.nuspec
-microsoft.aspnetcore.server.kestrel.core\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.core\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.core\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Core.dll
-microsoft.aspnetcore.server.kestrel.core\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Core.dll
-microsoft.aspnetcore.server.kestrel.core\2.2.0\microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.core\2.2.0\microsoft.aspnetcore.server.kestrel.core.nuspec
-microsoft.aspnetcore.server.kestrel.https\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.https\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.https\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Https.dll
-microsoft.aspnetcore.server.kestrel.https\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Https.dll
-microsoft.aspnetcore.server.kestrel.https\2.2.0\microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.https\2.2.0\microsoft.aspnetcore.server.kestrel.https.nuspec
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.abstractions\2.2.0\microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\microsoft.aspnetcore.server.kestrel.transport.libuv.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.libuv\2.2.0\microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\lib\netcoreapp2.1\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel.transport.sockets\2.2.0\microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec
-microsoft.aspnetcore.server.kestrel\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.server.kestrel\2.2.0\.signature.p7s
-microsoft.aspnetcore.server.kestrel\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Server.Kestrel.dll
-microsoft.aspnetcore.server.kestrel\2.2.0\microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512
-microsoft.aspnetcore.server.kestrel\2.2.0\microsoft.aspnetcore.server.kestrel.nuspec
-microsoft.aspnetcore.session\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.session\2.2.0\.signature.p7s
-microsoft.aspnetcore.session\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Session.dll
-microsoft.aspnetcore.session\2.2.0\microsoft.aspnetcore.session.2.2.0.nupkg.sha512
-microsoft.aspnetcore.session\2.2.0\microsoft.aspnetcore.session.nuspec
-microsoft.aspnetcore.signalr.common\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.common\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.common\1.1.0\lib\netcoreapp2.2\Microsoft.AspNetCore.SignalR.Common.dll
-microsoft.aspnetcore.signalr.common\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Common.dll
-microsoft.aspnetcore.signalr.common\1.1.0\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.common\1.1.0\microsoft.aspnetcore.signalr.common.nuspec
-microsoft.aspnetcore.signalr.core\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.core\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.core\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Core.dll
-microsoft.aspnetcore.signalr.core\1.1.0\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.core\1.1.0\microsoft.aspnetcore.signalr.core.nuspec
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Protocols.Json.dll
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.protocols.json\1.1.0\microsoft.aspnetcore.signalr.protocols.json.nuspec
-microsoft.aspnetcore.signalr.redis\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr.redis\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr.redis\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.Redis.dll
-microsoft.aspnetcore.signalr.redis\1.1.0\microsoft.aspnetcore.signalr.redis.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr.redis\1.1.0\microsoft.aspnetcore.signalr.redis.nuspec
-microsoft.aspnetcore.signalr\1.1.0\.nupkg.metadata
-microsoft.aspnetcore.signalr\1.1.0\.signature.p7s
-microsoft.aspnetcore.signalr\1.1.0\lib\netstandard2.0\Microsoft.AspNetCore.SignalR.dll
-microsoft.aspnetcore.signalr\1.1.0\microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512
-microsoft.aspnetcore.signalr\1.1.0\microsoft.aspnetcore.signalr.nuspec
-microsoft.aspnetcore.spaservices.extensions\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.spaservices.extensions\2.2.0\.signature.p7s
-microsoft.aspnetcore.spaservices.extensions\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.Extensions.dll
-microsoft.aspnetcore.spaservices.extensions\2.2.0\microsoft.aspnetcore.spaservices.extensions.2.2.0.nupkg.sha512
-microsoft.aspnetcore.spaservices.extensions\2.2.0\microsoft.aspnetcore.spaservices.extensions.nuspec
-microsoft.aspnetcore.spaservices\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.spaservices\2.2.0\.signature.p7s
-microsoft.aspnetcore.spaservices\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.SpaServices.dll
-microsoft.aspnetcore.spaservices\2.2.0\microsoft.aspnetcore.spaservices.2.2.0.nupkg.sha512
-microsoft.aspnetcore.spaservices\2.2.0\microsoft.aspnetcore.spaservices.nuspec
-microsoft.aspnetcore.staticfiles\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.staticfiles\2.2.0\.signature.p7s
-microsoft.aspnetcore.staticfiles\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.StaticFiles.dll
-microsoft.aspnetcore.staticfiles\2.2.0\microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512
-microsoft.aspnetcore.staticfiles\2.2.0\microsoft.aspnetcore.staticfiles.nuspec
-microsoft.aspnetcore.websockets\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.websockets\2.2.0\.signature.p7s
-microsoft.aspnetcore.websockets\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebSockets.dll
-microsoft.aspnetcore.websockets\2.2.0\microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512
-microsoft.aspnetcore.websockets\2.2.0\microsoft.aspnetcore.websockets.nuspec
-microsoft.aspnetcore.webutilities\2.2.0\.nupkg.metadata
-microsoft.aspnetcore.webutilities\2.2.0\.signature.p7s
-microsoft.aspnetcore.webutilities\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.WebUtilities.dll
-microsoft.aspnetcore.webutilities\2.2.0\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512
-microsoft.aspnetcore.webutilities\2.2.0\microsoft.aspnetcore.webutilities.nuspec
-microsoft.aspnetcore\2.2.0\.nupkg.metadata
-microsoft.aspnetcore\2.2.0\.signature.p7s
-microsoft.aspnetcore\2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.dll
-microsoft.aspnetcore\2.2.0\microsoft.aspnetcore.2.2.0.nupkg.sha512
-microsoft.aspnetcore\2.2.0\microsoft.aspnetcore.nuspec
-microsoft.azure.keyvault.webkey\2.0.7\.nupkg.metadata
-microsoft.azure.keyvault.webkey\2.0.7\.signature.p7s
-microsoft.azure.keyvault\2.3.2\.nupkg.metadata
-microsoft.azure.keyvault\2.3.2\.signature.p7s
-microsoft.azure.services.appauthentication\1.0.1\.nupkg.metadata
-microsoft.azure.services.appauthentication\1.0.1\.signature.p7s
-microsoft.codeanalysis.analyzers\1.1.0\.nupkg.metadata
-microsoft.codeanalysis.common\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.csharp\2.8.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.2.0\.nupkg.metadata
-microsoft.codeanalysis.razor\2.2.0\.signature.p7s
-microsoft.codeanalysis.razor\2.2.0\lib\net46\Microsoft.CodeAnalysis.Razor.dll
-microsoft.codeanalysis.razor\2.2.0\lib\netstandard2.0\Microsoft.CodeAnalysis.Razor.dll
-microsoft.codeanalysis.razor\2.2.0\microsoft.codeanalysis.razor.2.2.0.nupkg.sha512
-microsoft.codeanalysis.razor\2.2.0\microsoft.codeanalysis.razor.nuspec
-microsoft.csharp\4.0.1\.nupkg.metadata
-microsoft.csharp\4.3.0\.nupkg.metadata
-microsoft.csharp\4.5.0\.nupkg.metadata
-microsoft.data.edm\5.8.2\.nupkg.metadata
-microsoft.data.odata\5.8.2\.nupkg.metadata
-microsoft.data.sqlite.core\2.2.0\.nupkg.metadata
-microsoft.data.sqlite.core\2.2.0\.signature.p7s
-microsoft.data.sqlite.core\2.2.0\lib\netstandard2.0\Microsoft.Data.Sqlite.dll
-microsoft.data.sqlite.core\2.2.0\microsoft.data.sqlite.core.2.2.0.nupkg.sha512
-microsoft.data.sqlite.core\2.2.0\microsoft.data.sqlite.core.nuspec
-microsoft.data.sqlite\2.2.0\.nupkg.metadata
-microsoft.data.sqlite\2.2.0\.signature.p7s
-microsoft.data.sqlite\2.2.0\lib\netstandard2.0\_._
-microsoft.data.sqlite\2.2.0\microsoft.data.sqlite.2.2.0.nupkg.sha512
-microsoft.data.sqlite\2.2.0\microsoft.data.sqlite.nuspec
-microsoft.dotnet.platformabstractions\2.1.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.abstractions\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.abstractions\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-microsoft.entityframeworkcore.abstractions\2.2.0\microsoft.entityframeworkcore.abstractions.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.abstractions\2.2.0\microsoft.entityframeworkcore.abstractions.nuspec
-microsoft.entityframeworkcore.analyzers\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.analyzers\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.analyzers\2.2.0\analyzers\dotnet\cs\Microsoft.EntityFrameworkCore.Analyzers.dll
-microsoft.entityframeworkcore.analyzers\2.2.0\microsoft.entityframeworkcore.analyzers.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.analyzers\2.2.0\microsoft.entityframeworkcore.analyzers.nuspec
-microsoft.entityframeworkcore.design\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.design\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.design\2.2.0\build\net461\Microsoft.EntityFrameworkCore.Design.props
-microsoft.entityframeworkcore.design\2.2.0\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props
-microsoft.entityframeworkcore.design\2.2.0\lib\net461\Microsoft.EntityFrameworkCore.Design.dll
-microsoft.entityframeworkcore.design\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Design.dll
-microsoft.entityframeworkcore.design\2.2.0\microsoft.entityframeworkcore.design.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.design\2.2.0\microsoft.entityframeworkcore.design.nuspec
-microsoft.entityframeworkcore.inmemory\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.inmemory\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.inmemory\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll
-microsoft.entityframeworkcore.inmemory\2.2.0\microsoft.entityframeworkcore.inmemory.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.inmemory\2.2.0\microsoft.entityframeworkcore.inmemory.nuspec
-microsoft.entityframeworkcore.relational\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.relational\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.relational\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Relational.dll
-microsoft.entityframeworkcore.relational\2.2.0\microsoft.entityframeworkcore.relational.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.relational\2.2.0\microsoft.entityframeworkcore.relational.nuspec
-microsoft.entityframeworkcore.sqlite.core\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite.core\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlite.core\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Sqlite.dll
-microsoft.entityframeworkcore.sqlite.core\2.2.0\microsoft.entityframeworkcore.sqlite.core.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlite.core\2.2.0\microsoft.entityframeworkcore.sqlite.core.nuspec
-microsoft.entityframeworkcore.sqlite\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlite\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlite\2.2.0\lib\netstandard2.0\_._
-microsoft.entityframeworkcore.sqlite\2.2.0\microsoft.entityframeworkcore.sqlite.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlite\2.2.0\microsoft.entityframeworkcore.sqlite.nuspec
-microsoft.entityframeworkcore.sqlserver\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.sqlserver\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.sqlserver\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.SqlServer.dll
-microsoft.entityframeworkcore.sqlserver\2.2.0\microsoft.entityframeworkcore.sqlserver.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.sqlserver\2.2.0\microsoft.entityframeworkcore.sqlserver.nuspec
-microsoft.entityframeworkcore.tools\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore.tools\2.2.0\.signature.p7s
-microsoft.entityframeworkcore.tools\2.2.0\lib\netstandard2.0\_._
-microsoft.entityframeworkcore.tools\2.2.0\microsoft.entityframeworkcore.tools.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore.tools\2.2.0\microsoft.entityframeworkcore.tools.nuspec
-microsoft.entityframeworkcore.tools\2.2.0\tools\about_EntityFrameworkCore.help.txt
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.PowerShell2.psd1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.PowerShell2.psm1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.psd1
-microsoft.entityframeworkcore.tools\2.2.0\tools\EntityFrameworkCore.psm1
-microsoft.entityframeworkcore.tools\2.2.0\tools\init.ps1
-microsoft.entityframeworkcore.tools\2.2.0\tools\install.ps1
-microsoft.entityframeworkcore.tools\2.2.0\tools\net461\any\ef.exe
-microsoft.entityframeworkcore.tools\2.2.0\tools\net461\win-x86\ef.exe
-microsoft.entityframeworkcore.tools\2.2.0\tools\netcoreapp2.0\any\ef.dll
-microsoft.entityframeworkcore.tools\2.2.0\tools\netcoreapp2.0\any\ef.runtimeconfig.json
-microsoft.entityframeworkcore\2.2.0\.nupkg.metadata
-microsoft.entityframeworkcore\2.2.0\.signature.p7s
-microsoft.entityframeworkcore\2.2.0\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll
-microsoft.entityframeworkcore\2.2.0\microsoft.entityframeworkcore.2.2.0.nupkg.sha512
-microsoft.entityframeworkcore\2.2.0\microsoft.entityframeworkcore.nuspec
-microsoft.extensions.caching.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.caching.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll
-microsoft.extensions.caching.abstractions\2.2.0\microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.caching.abstractions\2.2.0\microsoft.extensions.caching.abstractions.nuspec
-microsoft.extensions.caching.memory\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.memory\2.2.0\.signature.p7s
-microsoft.extensions.caching.memory\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll
-microsoft.extensions.caching.memory\2.2.0\microsoft.extensions.caching.memory.2.2.0.nupkg.sha512
-microsoft.extensions.caching.memory\2.2.0\microsoft.extensions.caching.memory.nuspec
-microsoft.extensions.caching.redis\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.redis\2.2.0\.signature.p7s
-microsoft.extensions.caching.redis\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.Redis.dll
-microsoft.extensions.caching.redis\2.2.0\microsoft.extensions.caching.redis.2.2.0.nupkg.sha512
-microsoft.extensions.caching.redis\2.2.0\microsoft.extensions.caching.redis.nuspec
-microsoft.extensions.caching.sqlserver\2.2.0\.nupkg.metadata
-microsoft.extensions.caching.sqlserver\2.2.0\.signature.p7s
-microsoft.extensions.caching.sqlserver\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Caching.SqlServer.dll
-microsoft.extensions.caching.sqlserver\2.2.0\microsoft.extensions.caching.sqlserver.2.2.0.nupkg.sha512
-microsoft.extensions.caching.sqlserver\2.2.0\microsoft.extensions.caching.sqlserver.nuspec
-microsoft.extensions.configuration.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.configuration.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll
-microsoft.extensions.configuration.abstractions\2.2.0\microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.abstractions\2.2.0\microsoft.extensions.configuration.abstractions.nuspec
-microsoft.extensions.configuration.azurekeyvault\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.azurekeyvault\2.2.0\.signature.p7s
-microsoft.extensions.configuration.azurekeyvault\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.AzureKeyVault.dll
-microsoft.extensions.configuration.azurekeyvault\2.2.0\microsoft.extensions.configuration.azurekeyvault.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.azurekeyvault\2.2.0\microsoft.extensions.configuration.azurekeyvault.nuspec
-microsoft.extensions.configuration.binder\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.binder\2.2.0\.signature.p7s
-microsoft.extensions.configuration.binder\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll
-microsoft.extensions.configuration.binder\2.2.0\microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.binder\2.2.0\microsoft.extensions.configuration.binder.nuspec
-microsoft.extensions.configuration.commandline\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.commandline\2.2.0\.signature.p7s
-microsoft.extensions.configuration.commandline\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.CommandLine.dll
-microsoft.extensions.configuration.commandline\2.2.0\microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.commandline\2.2.0\microsoft.extensions.configuration.commandline.nuspec
-microsoft.extensions.configuration.environmentvariables\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.environmentvariables\2.2.0\.signature.p7s
-microsoft.extensions.configuration.environmentvariables\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
-microsoft.extensions.configuration.environmentvariables\2.2.0\microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.environmentvariables\2.2.0\microsoft.extensions.configuration.environmentvariables.nuspec
-microsoft.extensions.configuration.fileextensions\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.fileextensions\2.2.0\.signature.p7s
-microsoft.extensions.configuration.fileextensions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.FileExtensions.dll
-microsoft.extensions.configuration.fileextensions\2.2.0\microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.fileextensions\2.2.0\microsoft.extensions.configuration.fileextensions.nuspec
-microsoft.extensions.configuration.ini\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.ini\2.2.0\.signature.p7s
-microsoft.extensions.configuration.ini\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Ini.dll
-microsoft.extensions.configuration.ini\2.2.0\microsoft.extensions.configuration.ini.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.ini\2.2.0\microsoft.extensions.configuration.ini.nuspec
-microsoft.extensions.configuration.json\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.json\2.2.0\.signature.p7s
-microsoft.extensions.configuration.json\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Json.dll
-microsoft.extensions.configuration.json\2.2.0\microsoft.extensions.configuration.json.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.json\2.2.0\microsoft.extensions.configuration.json.nuspec
-microsoft.extensions.configuration.keyperfile\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.keyperfile\2.2.0\.signature.p7s
-microsoft.extensions.configuration.keyperfile\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.KeyPerFile.dll
-microsoft.extensions.configuration.keyperfile\2.2.0\microsoft.extensions.configuration.keyperfile.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.keyperfile\2.2.0\microsoft.extensions.configuration.keyperfile.nuspec
-microsoft.extensions.configuration.usersecrets\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.usersecrets\2.2.0\.signature.p7s
-microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props
-microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.targets
-microsoft.extensions.configuration.usersecrets\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.dll
-microsoft.extensions.configuration.usersecrets\2.2.0\microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.usersecrets\2.2.0\microsoft.extensions.configuration.usersecrets.nuspec
-microsoft.extensions.configuration.xml\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration.xml\2.2.0\.signature.p7s
-microsoft.extensions.configuration.xml\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.Xml.dll
-microsoft.extensions.configuration.xml\2.2.0\microsoft.extensions.configuration.xml.2.2.0.nupkg.sha512
-microsoft.extensions.configuration.xml\2.2.0\microsoft.extensions.configuration.xml.nuspec
-microsoft.extensions.configuration\2.2.0\.nupkg.metadata
-microsoft.extensions.configuration\2.2.0\.signature.p7s
-microsoft.extensions.configuration\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll
-microsoft.extensions.configuration\2.2.0\microsoft.extensions.configuration.2.2.0.nupkg.sha512
-microsoft.extensions.configuration\2.2.0\microsoft.extensions.configuration.nuspec
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.dependencyinjection.abstractions\2.2.0\microsoft.extensions.dependencyinjection.abstractions.nuspec
-microsoft.extensions.dependencyinjection\2.2.0\.nupkg.metadata
-microsoft.extensions.dependencyinjection\2.2.0\.signature.p7s
-microsoft.extensions.dependencyinjection\2.2.0\lib\net461\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\lib\netcoreapp2.0\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.dll
-microsoft.extensions.dependencyinjection\2.2.0\microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512
-microsoft.extensions.dependencyinjection\2.2.0\microsoft.extensions.dependencyinjection.nuspec
-microsoft.extensions.dependencymodel\2.1.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnosticadapter\2.2.0\.signature.p7s
-microsoft.extensions.diagnosticadapter\2.2.0\lib\net461\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\lib\netcoreapp2.0\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\lib\netstandard2.0\Microsoft.Extensions.DiagnosticAdapter.dll
-microsoft.extensions.diagnosticadapter\2.2.0\microsoft.extensions.diagnosticadapter.2.2.0.nupkg.sha512
-microsoft.extensions.diagnosticadapter\2.2.0\microsoft.extensions.diagnosticadapter.nuspec
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\microsoft.extensions.diagnostics.healthchecks.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.diagnostics.healthchecks.abstractions\2.2.0\microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec
-microsoft.extensions.diagnostics.healthchecks\2.2.0\.nupkg.metadata
-microsoft.extensions.diagnostics.healthchecks\2.2.0\.signature.p7s
-microsoft.extensions.diagnostics.healthchecks\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Diagnostics.HealthChecks.dll
-microsoft.extensions.diagnostics.healthchecks\2.2.0\microsoft.extensions.diagnostics.healthchecks.2.2.0.nupkg.sha512
-microsoft.extensions.diagnostics.healthchecks\2.2.0\microsoft.extensions.diagnostics.healthchecks.nuspec
-microsoft.extensions.fileproviders.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Abstractions.dll
-microsoft.extensions.fileproviders.abstractions\2.2.0\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.abstractions\2.2.0\microsoft.extensions.fileproviders.abstractions.nuspec
-microsoft.extensions.fileproviders.composite\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.composite\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.composite\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Composite.dll
-microsoft.extensions.fileproviders.composite\2.2.0\microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.composite\2.2.0\microsoft.extensions.fileproviders.composite.nuspec
-microsoft.extensions.fileproviders.embedded\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.embedded\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.embedded\2.2.0\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.props
-microsoft.extensions.fileproviders.embedded\2.2.0\build\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.targets
-microsoft.extensions.fileproviders.embedded\2.2.0\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.props
-microsoft.extensions.fileproviders.embedded\2.2.0\buildMultiTargeting\Microsoft.Extensions.FileProviders.Embedded.targets
-microsoft.extensions.fileproviders.embedded\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Embedded.dll
-microsoft.extensions.fileproviders.embedded\2.2.0\microsoft.extensions.fileproviders.embedded.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.embedded\2.2.0\microsoft.extensions.fileproviders.embedded.nuspec
-microsoft.extensions.fileproviders.embedded\2.2.0\tasks\net461\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll
-microsoft.extensions.fileproviders.embedded\2.2.0\tasks\netstandard1.5\Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll
-microsoft.extensions.fileproviders.physical\2.2.0\.nupkg.metadata
-microsoft.extensions.fileproviders.physical\2.2.0\.signature.p7s
-microsoft.extensions.fileproviders.physical\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileProviders.Physical.dll
-microsoft.extensions.fileproviders.physical\2.2.0\microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512
-microsoft.extensions.fileproviders.physical\2.2.0\microsoft.extensions.fileproviders.physical.nuspec
-microsoft.extensions.filesystemglobbing\2.2.0\.nupkg.metadata
-microsoft.extensions.filesystemglobbing\2.2.0\.signature.p7s
-microsoft.extensions.filesystemglobbing\2.2.0\lib\netstandard2.0\Microsoft.Extensions.FileSystemGlobbing.dll
-microsoft.extensions.filesystemglobbing\2.2.0\microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512
-microsoft.extensions.filesystemglobbing\2.2.0\microsoft.extensions.filesystemglobbing.nuspec
-microsoft.extensions.hosting.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.hosting.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.hosting.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Hosting.Abstractions.dll
-microsoft.extensions.hosting.abstractions\2.2.0\microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.hosting.abstractions\2.2.0\microsoft.extensions.hosting.abstractions.nuspec
-microsoft.extensions.hosting\2.2.0\.nupkg.metadata
-microsoft.extensions.hosting\2.2.0\.signature.p7s
-microsoft.extensions.hosting\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Hosting.dll
-microsoft.extensions.hosting\2.2.0\microsoft.extensions.hosting.2.2.0.nupkg.sha512
-microsoft.extensions.hosting\2.2.0\microsoft.extensions.hosting.nuspec
-microsoft.extensions.http\2.2.0\.nupkg.metadata
-microsoft.extensions.http\2.2.0\.signature.p7s
-microsoft.extensions.http\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Http.dll
-microsoft.extensions.http\2.2.0\microsoft.extensions.http.2.2.0.nupkg.sha512
-microsoft.extensions.http\2.2.0\microsoft.extensions.http.nuspec
-microsoft.extensions.identity.core\2.2.0\.nupkg.metadata
-microsoft.extensions.identity.core\2.2.0\.signature.p7s
-microsoft.extensions.identity.core\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Identity.Core.dll
-microsoft.extensions.identity.core\2.2.0\microsoft.extensions.identity.core.2.2.0.nupkg.sha512
-microsoft.extensions.identity.core\2.2.0\microsoft.extensions.identity.core.nuspec
-microsoft.extensions.identity.stores\2.2.0\.nupkg.metadata
-microsoft.extensions.identity.stores\2.2.0\.signature.p7s
-microsoft.extensions.identity.stores\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Identity.Stores.dll
-microsoft.extensions.identity.stores\2.2.0\microsoft.extensions.identity.stores.2.2.0.nupkg.sha512
-microsoft.extensions.identity.stores\2.2.0\microsoft.extensions.identity.stores.nuspec
-microsoft.extensions.localization.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.localization.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.localization.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Localization.Abstractions.dll
-microsoft.extensions.localization.abstractions\2.2.0\microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.localization.abstractions\2.2.0\microsoft.extensions.localization.abstractions.nuspec
-microsoft.extensions.localization\2.2.0\.nupkg.metadata
-microsoft.extensions.localization\2.2.0\.signature.p7s
-microsoft.extensions.localization\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Localization.dll
-microsoft.extensions.localization\2.2.0\microsoft.extensions.localization.2.2.0.nupkg.sha512
-microsoft.extensions.localization\2.2.0\microsoft.extensions.localization.nuspec
-microsoft.extensions.logging.abstractions\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.abstractions\2.2.0\.signature.p7s
-microsoft.extensions.logging.abstractions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll
-microsoft.extensions.logging.abstractions\2.2.0\microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512
-microsoft.extensions.logging.abstractions\2.2.0\microsoft.extensions.logging.abstractions.nuspec
-microsoft.extensions.logging.azureappservices\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.azureappservices\2.2.0\.signature.p7s
-microsoft.extensions.logging.azureappservices\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.AzureAppServices.dll
-microsoft.extensions.logging.azureappservices\2.2.0\microsoft.extensions.logging.azureappservices.2.2.0.nupkg.sha512
-microsoft.extensions.logging.azureappservices\2.2.0\microsoft.extensions.logging.azureappservices.nuspec
-microsoft.extensions.logging.configuration\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.configuration\2.2.0\.signature.p7s
-microsoft.extensions.logging.configuration\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Configuration.dll
-microsoft.extensions.logging.configuration\2.2.0\microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512
-microsoft.extensions.logging.configuration\2.2.0\microsoft.extensions.logging.configuration.nuspec
-microsoft.extensions.logging.console\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.console\2.2.0\.signature.p7s
-microsoft.extensions.logging.console\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Console.dll
-microsoft.extensions.logging.console\2.2.0\microsoft.extensions.logging.console.2.2.0.nupkg.sha512
-microsoft.extensions.logging.console\2.2.0\microsoft.extensions.logging.console.nuspec
-microsoft.extensions.logging.debug\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.debug\2.2.0\.signature.p7s
-microsoft.extensions.logging.debug\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.Debug.dll
-microsoft.extensions.logging.debug\2.2.0\microsoft.extensions.logging.debug.2.2.0.nupkg.sha512
-microsoft.extensions.logging.debug\2.2.0\microsoft.extensions.logging.debug.nuspec
-microsoft.extensions.logging.eventsource\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.eventsource\2.2.0\.signature.p7s
-microsoft.extensions.logging.eventsource\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.EventSource.dll
-microsoft.extensions.logging.eventsource\2.2.0\microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512
-microsoft.extensions.logging.eventsource\2.2.0\microsoft.extensions.logging.eventsource.nuspec
-microsoft.extensions.logging.tracesource\2.2.0\.nupkg.metadata
-microsoft.extensions.logging.tracesource\2.2.0\.signature.p7s
-microsoft.extensions.logging.tracesource\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.TraceSource.dll
-microsoft.extensions.logging.tracesource\2.2.0\microsoft.extensions.logging.tracesource.2.2.0.nupkg.sha512
-microsoft.extensions.logging.tracesource\2.2.0\microsoft.extensions.logging.tracesource.nuspec
-microsoft.extensions.logging\2.2.0\.nupkg.metadata
-microsoft.extensions.logging\2.2.0\.signature.p7s
-microsoft.extensions.logging\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Logging.dll
-microsoft.extensions.logging\2.2.0\microsoft.extensions.logging.2.2.0.nupkg.sha512
-microsoft.extensions.logging\2.2.0\microsoft.extensions.logging.nuspec
-microsoft.extensions.objectpool\2.2.0\.nupkg.metadata
-microsoft.extensions.objectpool\2.2.0\.signature.p7s
-microsoft.extensions.objectpool\2.2.0\lib\netstandard2.0\Microsoft.Extensions.ObjectPool.dll
-microsoft.extensions.objectpool\2.2.0\microsoft.extensions.objectpool.2.2.0.nupkg.sha512
-microsoft.extensions.objectpool\2.2.0\microsoft.extensions.objectpool.nuspec
-microsoft.extensions.options.configurationextensions\2.2.0\.nupkg.metadata
-microsoft.extensions.options.configurationextensions\2.2.0\.signature.p7s
-microsoft.extensions.options.configurationextensions\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
-microsoft.extensions.options.configurationextensions\2.2.0\microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512
-microsoft.extensions.options.configurationextensions\2.2.0\microsoft.extensions.options.configurationextensions.nuspec
-microsoft.extensions.options.dataannotations\2.2.0\.nupkg.metadata
-microsoft.extensions.options.dataannotations\2.2.0\.signature.p7s
-microsoft.extensions.options.dataannotations\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.DataAnnotations.dll
-microsoft.extensions.options.dataannotations\2.2.0\microsoft.extensions.options.dataannotations.2.2.0.nupkg.sha512
-microsoft.extensions.options.dataannotations\2.2.0\microsoft.extensions.options.dataannotations.nuspec
-microsoft.extensions.options\2.2.0\.nupkg.metadata
-microsoft.extensions.options\2.2.0\.signature.p7s
-microsoft.extensions.options\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Options.dll
-microsoft.extensions.options\2.2.0\microsoft.extensions.options.2.2.0.nupkg.sha512
-microsoft.extensions.options\2.2.0\microsoft.extensions.options.nuspec
-microsoft.extensions.platformabstractions\1.1.0\.nupkg.metadata
-microsoft.extensions.primitives\2.2.0\.nupkg.metadata
-microsoft.extensions.primitives\2.2.0\.signature.p7s
-microsoft.extensions.primitives\2.2.0\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll
-microsoft.extensions.primitives\2.2.0\microsoft.extensions.primitives.2.2.0.nupkg.sha512
-microsoft.extensions.primitives\2.2.0\microsoft.extensions.primitives.nuspec
-microsoft.extensions.webencoders\2.2.0\.nupkg.metadata
-microsoft.extensions.webencoders\2.2.0\.signature.p7s
-microsoft.extensions.webencoders\2.2.0\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll
-microsoft.extensions.webencoders\2.2.0\microsoft.extensions.webencoders.2.2.0.nupkg.sha512
-microsoft.extensions.webencoders\2.2.0\microsoft.extensions.webencoders.nuspec
-microsoft.identitymodel.clients.activedirectory\3.14.2\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.14.2\.signature.p7s
-microsoft.identitymodel.clients.activedirectory\3.19.8\.nupkg.metadata
-microsoft.identitymodel.clients.activedirectory\3.19.8\.signature.p7s
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\MonoAndroid7\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\MonoAndroid7\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netcore45\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.1\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.1\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\netstandard1.3\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\portable-net45+win\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\lib\Xamarin.iOS10\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll
-microsoft.identitymodel.clients.activedirectory\3.19.8\microsoft.identitymodel.clients.activedirectory.3.19.8.nupkg.sha512
-microsoft.identitymodel.clients.activedirectory\3.19.8\microsoft.identitymodel.clients.activedirectory.nuspec
-microsoft.identitymodel.jsonwebtokens\5.3.0\.nupkg.metadata
-microsoft.identitymodel.jsonwebtokens\5.3.0\.signature.p7s
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net45\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net45\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net451\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net451\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.dll
-microsoft.identitymodel.jsonwebtokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.JsonWebTokens.pdb
-microsoft.identitymodel.jsonwebtokens\5.3.0\microsoft.identitymodel.jsonwebtokens.5.3.0.nupkg.sha512
-microsoft.identitymodel.jsonwebtokens\5.3.0\microsoft.identitymodel.jsonwebtokens.nuspec
-microsoft.identitymodel.logging\5.3.0\.nupkg.metadata
-microsoft.identitymodel.logging\5.3.0\.signature.p7s
-microsoft.identitymodel.logging\5.3.0\lib\net45\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net45\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\net451\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net451\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\net461\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\net461\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Logging.dll
-microsoft.identitymodel.logging\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Logging.pdb
-microsoft.identitymodel.logging\5.3.0\microsoft.identitymodel.logging.5.3.0.nupkg.sha512
-microsoft.identitymodel.logging\5.3.0\microsoft.identitymodel.logging.nuspec
-microsoft.identitymodel.protocols.openidconnect\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols.openidconnect\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-microsoft.identitymodel.protocols.openidconnect\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.pdb
-microsoft.identitymodel.protocols.openidconnect\5.3.0\microsoft.identitymodel.protocols.openidconnect.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols.openidconnect\5.3.0\microsoft.identitymodel.protocols.openidconnect.nuspec
-microsoft.identitymodel.protocols.wsfederation\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols.wsfederation\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.WsFederation.dll
-microsoft.identitymodel.protocols.wsfederation\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.WsFederation.pdb
-microsoft.identitymodel.protocols.wsfederation\5.3.0\microsoft.identitymodel.protocols.wsfederation.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols.wsfederation\5.3.0\microsoft.identitymodel.protocols.wsfederation.nuspec
-microsoft.identitymodel.protocols\5.3.0\.nupkg.metadata
-microsoft.identitymodel.protocols\5.3.0\.signature.p7s
-microsoft.identitymodel.protocols\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net45\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net451\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.dll
-microsoft.identitymodel.protocols\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Protocols.pdb
-microsoft.identitymodel.protocols\5.3.0\microsoft.identitymodel.protocols.5.3.0.nupkg.sha512
-microsoft.identitymodel.protocols\5.3.0\microsoft.identitymodel.protocols.nuspec
-microsoft.identitymodel.tokens.saml\5.3.0\.nupkg.metadata
-microsoft.identitymodel.tokens.saml\5.3.0\.signature.p7s
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.Saml.dll
-microsoft.identitymodel.tokens.saml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.Saml.pdb
-microsoft.identitymodel.tokens.saml\5.3.0\microsoft.identitymodel.tokens.saml.5.3.0.nupkg.sha512
-microsoft.identitymodel.tokens.saml\5.3.0\microsoft.identitymodel.tokens.saml.nuspec
-microsoft.identitymodel.tokens\5.3.0\.nupkg.metadata
-microsoft.identitymodel.tokens\5.3.0\.signature.p7s
-microsoft.identitymodel.tokens\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net45\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net451\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\net461\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.dll
-microsoft.identitymodel.tokens\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Tokens.pdb
-microsoft.identitymodel.tokens\5.3.0\microsoft.identitymodel.tokens.5.3.0.nupkg.sha512
-microsoft.identitymodel.tokens\5.3.0\microsoft.identitymodel.tokens.nuspec
-microsoft.identitymodel.xml\5.3.0\.nupkg.metadata
-microsoft.identitymodel.xml\5.3.0\.signature.p7s
-microsoft.identitymodel.xml\5.3.0\lib\net45\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net45\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\net451\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net451\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\net461\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\net461\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\netstandard1.4\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Xml.dll
-microsoft.identitymodel.xml\5.3.0\lib\netstandard2.0\Microsoft.IdentityModel.Xml.pdb
-microsoft.identitymodel.xml\5.3.0\microsoft.identitymodel.xml.5.3.0.nupkg.sha512
-microsoft.identitymodel.xml\5.3.0\microsoft.identitymodel.xml.nuspec
-microsoft.net.http.headers\2.2.0\.nupkg.metadata
-microsoft.net.http.headers\2.2.0\.signature.p7s
-microsoft.net.http.headers\2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll
-microsoft.net.http.headers\2.2.0\microsoft.net.http.headers.2.2.0.nupkg.sha512
-microsoft.net.http.headers\2.2.0\microsoft.net.http.headers.nuspec
-microsoft.netcore.app\2.2.0\.nupkg.metadata
-microsoft.netcore.app\2.2.0\.signature.p7s
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.PlatformManifest.txt
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.props
-microsoft.netcore.app\2.2.0\build\netcoreapp2.2\Microsoft.NETCore.App.targets
-microsoft.netcore.app\2.2.0\LICENSE.TXT
-microsoft.netcore.app\2.2.0\microsoft.netcore.app.2.2.0.nupkg.sha512
-microsoft.netcore.app\2.2.0\microsoft.netcore.app.nuspec
-microsoft.netcore.app\2.2.0\Microsoft.NETCore.App.versions.txt
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.CSharp.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.VisualBasic.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\Microsoft.Win32.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\mscorlib.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\netstandard.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.AppContext.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Buffers.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Concurrent.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Immutable.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.NonGeneric.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Collections.Specialized.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.Annotations.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.DataAnnotations.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.EventBasedAsync.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ComponentModel.TypeConverter.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Configuration.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Console.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Core.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Data.Common.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Data.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Contracts.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Debug.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.DiagnosticSource.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.FileVersionInfo.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Process.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.StackTrace.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.TextWriterTraceListener.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Tools.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.TraceSource.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Diagnostics.Tracing.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Drawing.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Drawing.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Dynamic.Runtime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.Calendars.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Globalization.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.Brotli.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.FileSystem.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Compression.ZipFile.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.DriveInfo.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.FileSystem.Watcher.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.IsolatedStorage.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.MemoryMappedFiles.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.Pipes.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.IO.UnmanagedMemoryStream.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Expressions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Parallel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Linq.Queryable.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Memory.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Http.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.HttpListener.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Mail.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.NameResolution.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.NetworkInformation.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Ping.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Requests.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Security.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.ServicePoint.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.Sockets.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebClient.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebHeaderCollection.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebProxy.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebSockets.Client.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Net.WebSockets.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Numerics.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Numerics.Vectors.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ObjectModel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.DispatchProxy.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.ILGeneration.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Emit.Lightweight.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Metadata.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Reflection.TypeExtensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.Reader.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.ResourceManager.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Resources.Writer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.CompilerServices.VisualC.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Handles.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.RuntimeInformation.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.InteropServices.WindowsRuntime.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Loader.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Numerics.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Formatters.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Json.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Runtime.Serialization.Xml.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Claims.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Algorithms.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Csp.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Encoding.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.Primitives.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Cryptography.X509Certificates.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.Principal.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Security.SecureString.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ServiceModel.Web.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ServiceProcess.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.Encoding.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.Encoding.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Text.RegularExpressions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Overlapped.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Dataflow.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Extensions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Tasks.Parallel.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Thread.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.ThreadPool.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Threading.Timer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Transactions.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Transactions.Local.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.ValueTuple.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Web.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Web.HttpUtility.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Windows.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.Linq.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.ReaderWriter.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.Serialization.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XmlDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XmlSerializer.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XPath.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\System.Xml.XPath.XDocument.dll
-microsoft.netcore.app\2.2.0\ref\netcoreapp2.2\WindowsBase.dll
-microsoft.netcore.app\2.2.0\runtime.json
-microsoft.netcore.app\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnetapphost\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnetapphost\2.2.0\.signature.p7s
-microsoft.netcore.dotnetapphost\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnetapphost\2.2.0\microsoft.netcore.dotnetapphost.2.2.0.nupkg.sha512
-microsoft.netcore.dotnetapphost\2.2.0\microsoft.netcore.dotnetapphost.nuspec
-microsoft.netcore.dotnetapphost\2.2.0\runtime.json
-microsoft.netcore.dotnetapphost\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostpolicy\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnethostpolicy\2.2.0\.signature.p7s
-microsoft.netcore.dotnethostpolicy\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnethostpolicy\2.2.0\microsoft.netcore.dotnethostpolicy.2.2.0.nupkg.sha512
-microsoft.netcore.dotnethostpolicy\2.2.0\microsoft.netcore.dotnethostpolicy.nuspec
-microsoft.netcore.dotnethostpolicy\2.2.0\runtime.json
-microsoft.netcore.dotnethostpolicy\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.dotnethostresolver\2.2.0\.nupkg.metadata
-microsoft.netcore.dotnethostresolver\2.2.0\.signature.p7s
-microsoft.netcore.dotnethostresolver\2.2.0\LICENSE.TXT
-microsoft.netcore.dotnethostresolver\2.2.0\microsoft.netcore.dotnethostresolver.2.2.0.nupkg.sha512
-microsoft.netcore.dotnethostresolver\2.2.0\microsoft.netcore.dotnethostresolver.nuspec
-microsoft.netcore.dotnethostresolver\2.2.0\runtime.json
-microsoft.netcore.dotnethostresolver\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.platforms\1.0.1\.nupkg.metadata
-microsoft.netcore.platforms\1.0.1\.signature.p7s
-microsoft.netcore.platforms\1.0.2\.nupkg.metadata
-microsoft.netcore.platforms\1.0.2\.signature.p7s
-microsoft.netcore.platforms\1.1.0\.nupkg.metadata
-microsoft.netcore.platforms\1.1.0\.signature.p7s
-microsoft.netcore.platforms\2.0.0\.nupkg.metadata
-microsoft.netcore.platforms\2.0.0\.signature.p7s
-microsoft.netcore.platforms\2.2.0\.nupkg.metadata
-microsoft.netcore.platforms\2.2.0\.signature.p7s
-microsoft.netcore.platforms\2.2.0\lib\netstandard1.0\_._
-microsoft.netcore.platforms\2.2.0\LICENSE.TXT
-microsoft.netcore.platforms\2.2.0\microsoft.netcore.platforms.2.2.0.nupkg.sha512
-microsoft.netcore.platforms\2.2.0\microsoft.netcore.platforms.nuspec
-microsoft.netcore.platforms\2.2.0\runtime.json
-microsoft.netcore.platforms\2.2.0\THIRD-PARTY-NOTICES.TXT
-microsoft.netcore.platforms\2.2.0\useSharedDesignerContext.txt
-microsoft.netcore.platforms\2.2.0\version.txt
-microsoft.netcore.targets\1.0.1\.nupkg.metadata
-microsoft.netcore.targets\1.1.0\.nupkg.metadata
-microsoft.netcore.targets\2.0.0\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.nupkg.metadata
-microsoft.rest.clientruntime.azure\3.3.7\.signature.p7s
-microsoft.rest.clientruntime\2.3.8\.nupkg.metadata
-microsoft.rest.clientruntime\2.3.8\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.2.0\.nupkg.metadata
-microsoft.visualstudio.web.browserlink\2.2.0\.signature.p7s
-microsoft.visualstudio.web.browserlink\2.2.0\lib\netstandard2.0\Microsoft.VisualStudio.Web.BrowserLink.dll
-microsoft.visualstudio.web.browserlink\2.2.0\microsoft.visualstudio.web.browserlink.2.2.0.nupkg.sha512
-microsoft.visualstudio.web.browserlink\2.2.0\microsoft.visualstudio.web.browserlink.nuspec
-microsoft.win32.primitives\4.0.1\.nupkg.metadata
-microsoft.win32.primitives\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.3.0\.nupkg.metadata
-microsoft.win32.registry\4.5.0\.nupkg.metadata
-netstandard.library\1.6.0\.nupkg.metadata
-netstandard.library\1.6.1\.nupkg.metadata
-netstandard.library\2.0.3\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.nupkg.metadata
-newtonsoft.json.bson\1.0.1\.signature.p7s
-newtonsoft.json\10.0.1\.nupkg.metadata
-newtonsoft.json\10.0.1\.signature.p7s
-newtonsoft.json\11.0.2\.nupkg.metadata
-newtonsoft.json\11.0.2\.signature.p7s
-newtonsoft.json\9.0.1\.nupkg.metadata
-remotion.linq\2.2.0\.nupkg.metadata
-remotion.linq\2.2.0\.signature.p7s
-runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.5.0\.nupkg.metadata
-runtime.native.system.data.sqlclient.sni\4.5.0\.signature.p7s
-runtime.native.system.data.sqlclient.sni\4.5.0\LICENSE.TXT
-runtime.native.system.data.sqlclient.sni\4.5.0\runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512
-runtime.native.system.data.sqlclient.sni\4.5.0\runtime.native.system.data.sqlclient.sni.nuspec
-runtime.native.system.data.sqlclient.sni\4.5.0\THIRD-PARTY-NOTICES.TXT
-runtime.native.system.data.sqlclient.sni\4.5.0\useSharedDesignerContext.txt
-runtime.native.system.data.sqlclient.sni\4.5.0\version.txt
-runtime.native.system.io.compression\4.1.0\.nupkg.metadata
-runtime.native.system.io.compression\4.3.0\.nupkg.metadata
-runtime.native.system.net.http\4.0.1\.nupkg.metadata
-runtime.native.system.net.http\4.3.0\.nupkg.metadata
-runtime.native.system.net.security\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.native.system.security.cryptography\4.0.0\.nupkg.metadata
-runtime.native.system\4.0.0\.nupkg.metadata
-runtime.native.system\4.3.0\.nupkg.metadata
-runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\4.3.0\.nupkg.metadata
-runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-runtime.win-arm64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x64.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-runtime.win-x86.runtime.native.system.data.sqlclient.sni\4.4.0\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.nupkg.metadata
-sqlitepclraw.bundle_green\1.1.11\.signature.p7s
-sqlitepclraw.core\1.1.11\.nupkg.metadata
-sqlitepclraw.core\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.linux\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.osx\1.1.11\.signature.p7s
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.nupkg.metadata
-sqlitepclraw.lib.e_sqlite3.v110_xp\1.1.11\.signature.p7s
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.nupkg.metadata
-sqlitepclraw.provider.e_sqlite3.netstandard11\1.1.11\.signature.p7s
-stackexchange.redis.strongname\1.2.6\.nupkg.metadata
-stackexchange.redis.strongname\1.2.6\.signature.p7s
-stackexchange.redis.strongname\1.2.6\lib\net45\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\lib\net46\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\lib\netstandard1.5\StackExchange.Redis.StrongName.dll
-stackexchange.redis.strongname\1.2.6\stackexchange.redis.strongname.1.2.6.nupkg.sha512
-stackexchange.redis.strongname\1.2.6\stackexchange.redis.strongname.nuspec
-system.appcontext\4.1.0\.nupkg.metadata
-system.appcontext\4.3.0\.nupkg.metadata
-system.buffers\4.0.0\.nupkg.metadata
-system.buffers\4.3.0\.nupkg.metadata
-system.buffers\4.5.0\.nupkg.metadata
-system.collections.concurrent\4.0.12\.nupkg.metadata
-system.collections.concurrent\4.3.0\.nupkg.metadata
-system.collections.immutable\1.3.0\.nupkg.metadata
-system.collections.immutable\1.3.1\.nupkg.metadata
-system.collections.immutable\1.5.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.nupkg.metadata
-system.collections.nongeneric\4.3.0\.signature.p7s
-system.collections.specialized\4.3.0\.nupkg.metadata
-system.collections\4.0.11\.nupkg.metadata
-system.collections\4.3.0\.nupkg.metadata
-system.componentmodel.annotations\4.5.0\.nupkg.metadata
-system.componentmodel.primitives\4.3.0\.nupkg.metadata
-system.componentmodel.typeconverter\4.3.0\.nupkg.metadata
-system.componentmodel\4.3.0\.nupkg.metadata
-system.console\4.0.0\.nupkg.metadata
-system.console\4.3.0\.nupkg.metadata
-system.data.sqlclient\4.6.0\.nupkg.metadata
-system.data.sqlclient\4.6.0\.signature.p7s
-system.data.sqlclient\4.6.0\lib\MonoAndroid10\_._
-system.data.sqlclient\4.6.0\lib\MonoTouch10\_._
-system.data.sqlclient\4.6.0\lib\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard1.2\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\lib\xamarinios10\_._
-system.data.sqlclient\4.6.0\lib\xamarinmac20\_._
-system.data.sqlclient\4.6.0\lib\xamarintvos10\_._
-system.data.sqlclient\4.6.0\lib\xamarinwatchos10\_._
-system.data.sqlclient\4.6.0\LICENSE.TXT
-system.data.sqlclient\4.6.0\ref\MonoAndroid10\_._
-system.data.sqlclient\4.6.0\ref\MonoTouch10\_._
-system.data.sqlclient\4.6.0\ref\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard1.2\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\ref\xamarinios10\_._
-system.data.sqlclient\4.6.0\ref\xamarinmac20\_._
-system.data.sqlclient\4.6.0\ref\xamarintvos10\_._
-system.data.sqlclient\4.6.0\ref\xamarinwatchos10\_._
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net451\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net46\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\net461\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netstandard1.3\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\runtimes\win\lib\uap10.0.16299\System.Data.SqlClient.dll
-system.data.sqlclient\4.6.0\system.data.sqlclient.4.6.0.nupkg.sha512
-system.data.sqlclient\4.6.0\system.data.sqlclient.nuspec
-system.data.sqlclient\4.6.0\THIRD-PARTY-NOTICES.TXT
-system.data.sqlclient\4.6.0\useSharedDesignerContext.txt
-system.data.sqlclient\4.6.0\version.txt
-system.diagnostics.contracts\4.3.0\.nupkg.metadata
-system.diagnostics.contracts\4.3.0\.signature.p7s
-system.diagnostics.debug\4.0.11\.nupkg.metadata
-system.diagnostics.debug\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.0.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.3.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.nupkg.metadata
-system.diagnostics.diagnosticsource\4.4.0\.signature.p7s
-system.diagnostics.diagnosticsource\4.5.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.nupkg.metadata
-system.diagnostics.fileversioninfo\4.3.0\.signature.p7s
-system.diagnostics.process\4.3.0\.nupkg.metadata
-system.diagnostics.stacktrace\4.3.0\.nupkg.metadata
-system.diagnostics.tools\4.0.1\.nupkg.metadata
-system.diagnostics.tools\4.3.0\.nupkg.metadata
-system.diagnostics.tracing\4.1.0\.nupkg.metadata
-system.diagnostics.tracing\4.3.0\.nupkg.metadata
-system.dynamic.runtime\4.0.11\.nupkg.metadata
-system.dynamic.runtime\4.3.0\.nupkg.metadata
-system.globalization.calendars\4.0.1\.nupkg.metadata
-system.globalization.calendars\4.3.0\.nupkg.metadata
-system.globalization.extensions\4.0.1\.nupkg.metadata
-system.globalization.extensions\4.3.0\.nupkg.metadata
-system.globalization\4.0.11\.nupkg.metadata
-system.globalization\4.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.3.0\.nupkg.metadata
-system.identitymodel.tokens.jwt\5.3.0\.signature.p7s
-system.identitymodel.tokens.jwt\5.3.0\lib\net45\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net45\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\net451\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net451\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\net461\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\net461\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard1.4\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.dll
-system.identitymodel.tokens.jwt\5.3.0\lib\netstandard2.0\System.IdentityModel.Tokens.Jwt.pdb
-system.identitymodel.tokens.jwt\5.3.0\system.identitymodel.tokens.jwt.5.3.0.nupkg.sha512
-system.identitymodel.tokens.jwt\5.3.0\system.identitymodel.tokens.jwt.nuspec
-system.interactive.async\3.2.0\.nupkg.metadata
-system.interactive.async\3.2.0\.signature.p7s
-system.interactive.async\3.2.0\lib\net45\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\net46\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard1.0\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard1.3\System.Interactive.Async.dll
-system.interactive.async\3.2.0\lib\netstandard2.0\System.Interactive.Async.dll
-system.interactive.async\3.2.0\system.interactive.async.3.2.0.nupkg.sha512
-system.interactive.async\3.2.0\system.interactive.async.nuspec
-system.io.compression.zipfile\4.0.1\.nupkg.metadata
-system.io.compression.zipfile\4.3.0\.nupkg.metadata
-system.io.compression\4.1.0\.nupkg.metadata
-system.io.compression\4.3.0\.nupkg.metadata
-system.io.filesystem.primitives\4.0.1\.nupkg.metadata
-system.io.filesystem.primitives\4.3.0\.nupkg.metadata
-system.io.filesystem\4.0.1\.nupkg.metadata
-system.io.filesystem\4.3.0\.nupkg.metadata
-system.io.pipelines\4.5.2\.nupkg.metadata
-system.io.pipelines\4.5.2\.signature.p7s
-system.io.pipelines\4.5.2\lib\netcoreapp2.1\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\lib\netstandard1.3\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\lib\netstandard2.0\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\LICENSE.TXT
-system.io.pipelines\4.5.2\ref\netstandard1.3\System.IO.Pipelines.dll
-system.io.pipelines\4.5.2\system.io.pipelines.4.5.2.nupkg.sha512
-system.io.pipelines\4.5.2\system.io.pipelines.nuspec
-system.io.pipelines\4.5.2\THIRD-PARTY-NOTICES.TXT
-system.io.pipelines\4.5.2\useSharedDesignerContext.txt
-system.io.pipelines\4.5.2\version.txt
-system.io\4.1.0\.nupkg.metadata
-system.io\4.3.0\.nupkg.metadata
-system.linq.expressions\4.1.0\.nupkg.metadata
-system.linq.expressions\4.3.0\.nupkg.metadata
-system.linq.queryable\4.0.1\.nupkg.metadata
-system.linq\4.1.0\.nupkg.metadata
-system.linq\4.3.0\.nupkg.metadata
-system.memory\4.5.1\.nupkg.metadata
-system.net.http\4.1.0\.nupkg.metadata
-system.net.http\4.1.0\.signature.p7s
-system.net.http\4.3.0\.nupkg.metadata
-system.net.http\4.3.0\.signature.p7s
-system.net.nameresolution\4.3.0\.nupkg.metadata
-system.net.primitives\4.0.11\.nupkg.metadata
-system.net.primitives\4.3.0\.nupkg.metadata
-system.net.security\4.3.0\.nupkg.metadata
-system.net.sockets\4.1.0\.nupkg.metadata
-system.net.sockets\4.3.0\.nupkg.metadata
-system.net.websockets.websocketprotocol\4.5.1\.nupkg.metadata
-system.numerics.vectors\4.5.0\.nupkg.metadata
-system.objectmodel\4.0.12\.nupkg.metadata
-system.objectmodel\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.1.1\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.nupkg.metadata
-system.private.datacontractserialization\4.3.0\.signature.p7s
-system.reflection.emit.ilgeneration\4.0.1\.nupkg.metadata
-system.reflection.emit.ilgeneration\4.3.0\.nupkg.metadata
-system.reflection.emit.lightweight\4.0.1\.nupkg.metadata
-system.reflection.emit.lightweight\4.3.0\.nupkg.metadata
-system.reflection.emit\4.0.1\.nupkg.metadata
-system.reflection.emit\4.3.0\.nupkg.metadata
-system.reflection.extensions\4.0.1\.nupkg.metadata
-system.reflection.extensions\4.3.0\.nupkg.metadata
-system.reflection.metadata\1.4.1\.nupkg.metadata
-system.reflection.metadata\1.4.2\.nupkg.metadata
-system.reflection.metadata\1.6.0\.nupkg.metadata
-system.reflection.primitives\4.0.1\.nupkg.metadata
-system.reflection.primitives\4.3.0\.nupkg.metadata
-system.reflection.typeextensions\4.1.0\.nupkg.metadata
-system.reflection.typeextensions\4.3.0\.nupkg.metadata
-system.reflection\4.1.0\.nupkg.metadata
-system.reflection\4.3.0\.nupkg.metadata
-system.resources.resourcemanager\4.0.1\.nupkg.metadata
-system.resources.resourcemanager\4.3.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.0\.nupkg.metadata
-system.runtime.compilerservices.unsafe\4.5.1\.nupkg.metadata
-system.runtime.extensions\4.1.0\.nupkg.metadata
-system.runtime.extensions\4.3.0\.nupkg.metadata
-system.runtime.handles\4.0.1\.nupkg.metadata
-system.runtime.handles\4.3.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.0.0\.nupkg.metadata
-system.runtime.interopservices.runtimeinformation\4.3.0\.nupkg.metadata
-system.runtime.interopservices\4.1.0\.nupkg.metadata
-system.runtime.interopservices\4.3.0\.nupkg.metadata
-system.runtime.numerics\4.0.1\.nupkg.metadata
-system.runtime.numerics\4.3.0\.nupkg.metadata
-system.runtime.serialization.formatters\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.0.2\.nupkg.metadata
-system.runtime.serialization.json\4.3.0\.nupkg.metadata
-system.runtime.serialization.json\4.3.0\dotnet_library_license.txt
-system.runtime.serialization.json\4.3.0\lib\MonoAndroid10\_._
-system.runtime.serialization.json\4.3.0\lib\MonoTouch10\_._
-system.runtime.serialization.json\4.3.0\lib\net45\_._
-system.runtime.serialization.json\4.3.0\lib\netcore50\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\lib\netstandard1.3\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\lib\portable-net45+win8+wp8+wpa81\_._
-system.runtime.serialization.json\4.3.0\lib\win8\_._
-system.runtime.serialization.json\4.3.0\lib\wp80\_._
-system.runtime.serialization.json\4.3.0\lib\wpa81\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinios10\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinmac20\_._
-system.runtime.serialization.json\4.3.0\lib\xamarintvos10\_._
-system.runtime.serialization.json\4.3.0\lib\xamarinwatchos10\_._
-system.runtime.serialization.json\4.3.0\ref\MonoAndroid10\_._
-system.runtime.serialization.json\4.3.0\ref\MonoTouch10\_._
-system.runtime.serialization.json\4.3.0\ref\net45\_._
-system.runtime.serialization.json\4.3.0\ref\netcore50\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\ref\netstandard1.0\System.Runtime.Serialization.Json.dll
-system.runtime.serialization.json\4.3.0\ref\portable-net45+win8+wp8+wpa81\_._
-system.runtime.serialization.json\4.3.0\ref\win8\_._
-system.runtime.serialization.json\4.3.0\ref\wp80\_._
-system.runtime.serialization.json\4.3.0\ref\wpa81\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinios10\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinmac20\_._
-system.runtime.serialization.json\4.3.0\ref\xamarintvos10\_._
-system.runtime.serialization.json\4.3.0\ref\xamarinwatchos10\_._
-system.runtime.serialization.json\4.3.0\system.runtime.serialization.json.4.3.0.nupkg.sha512
-system.runtime.serialization.json\4.3.0\system.runtime.serialization.json.nuspec
-system.runtime.serialization.json\4.3.0\ThirdPartyNotices.txt
-system.runtime.serialization.primitives\4.1.1\.nupkg.metadata
-system.runtime.serialization.primitives\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.nupkg.metadata
-system.runtime.serialization.xml\4.3.0\.signature.p7s
-system.runtime\4.1.0\.nupkg.metadata
-system.runtime\4.3.0\.nupkg.metadata
-system.security.accesscontrol\4.5.0\.nupkg.metadata
-system.security.claims\4.3.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.2.0\.nupkg.metadata
-system.security.cryptography.algorithms\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.2.0\.nupkg.metadata
-system.security.cryptography.cng\4.3.0\.nupkg.metadata
-system.security.cryptography.cng\4.5.0\.nupkg.metadata
-system.security.cryptography.csp\4.0.0\.nupkg.metadata
-system.security.cryptography.csp\4.3.0\.nupkg.metadata
-system.security.cryptography.encoding\4.0.0\.nupkg.metadata
-system.security.cryptography.encoding\4.3.0\.nupkg.metadata
-system.security.cryptography.openssl\4.0.0\.nupkg.metadata
-system.security.cryptography.openssl\4.3.0\.nupkg.metadata
-system.security.cryptography.pkcs\4.5.0\.nupkg.metadata
-system.security.cryptography.primitives\4.0.0\.nupkg.metadata
-system.security.cryptography.primitives\4.3.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.1.0\.nupkg.metadata
-system.security.cryptography.x509certificates\4.3.0\.nupkg.metadata
-system.security.cryptography.xml\4.5.0\.nupkg.metadata
-system.security.permissions\4.5.0\.nupkg.metadata
-system.security.principal.windows\4.3.0\.nupkg.metadata
-system.security.principal.windows\4.5.0\.nupkg.metadata
-system.security.principal\4.3.0\.nupkg.metadata
-system.spatial\5.8.2\.nupkg.metadata
-system.text.encoding.codepages\4.3.0\.nupkg.metadata
-system.text.encoding.codepages\4.5.0\.nupkg.metadata
-system.text.encoding.extensions\4.0.11\.nupkg.metadata
-system.text.encoding.extensions\4.3.0\.nupkg.metadata
-system.text.encoding\4.0.11\.nupkg.metadata
-system.text.encoding\4.3.0\.nupkg.metadata
-system.text.encodings.web\4.3.1\.nupkg.metadata
-system.text.encodings.web\4.3.1\.signature.p7s
-system.text.encodings.web\4.5.0\.nupkg.metadata
-system.text.regularexpressions\4.1.0\.nupkg.metadata
-system.text.regularexpressions\4.3.0\.nupkg.metadata
-system.threading.channels\4.5.0\.nupkg.metadata
-system.threading.tasks.extensions\4.0.0\.nupkg.metadata
-system.threading.tasks.extensions\4.3.0\.nupkg.metadata
-system.threading.tasks.extensions\4.5.1\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.nupkg.metadata
-system.threading.tasks.parallel\4.3.0\.signature.p7s
-system.threading.tasks\4.0.11\.nupkg.metadata
-system.threading.tasks\4.3.0\.nupkg.metadata
-system.threading.thread\4.3.0\.nupkg.metadata
-system.threading.threadpool\4.3.0\.nupkg.metadata
-system.threading.timer\4.0.1\.nupkg.metadata
-system.threading.timer\4.3.0\.nupkg.metadata
-system.threading\4.0.11\.nupkg.metadata
-system.threading\4.3.0\.nupkg.metadata
-system.valuetuple\4.3.0\.nupkg.metadata
-system.valuetuple\4.5.0\.nupkg.metadata
-system.xml.readerwriter\4.0.11\.nupkg.metadata
-system.xml.readerwriter\4.3.0\.nupkg.metadata
-system.xml.xdocument\4.0.11\.nupkg.metadata
-system.xml.xdocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.0.1\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.nupkg.metadata
-system.xml.xmldocument\4.3.0\.signature.p7s
-system.xml.xmlserializer\4.0.11\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.nupkg.metadata
-system.xml.xmlserializer\4.3.0\.signature.p7s
-system.xml.xpath.xdocument\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.nupkg.metadata
-system.xml.xpath\4.3.0\.signature.p7s
-windowsazure.storage\8.1.4\.nupkg.metadata
-windowsazure.storage\8.1.4\.signature.p7s
diff --git a/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj b/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj
deleted file mode 100644
index 770299f91d..0000000000
--- a/src/PackageArchive/Archive.CiServer/Archive.CiServer.zipproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
- 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
deleted file mode 100644
index a0dcc7e6d3..0000000000
--- a/src/PackageArchive/Archive.Lzma/Archive.Lzma.lzmaproj
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
- nuGetPackagesArchive-$(PackageVersion).lzma
- false
- true
- true
-
-
-
-
diff --git a/src/PackageArchive/Archive.props b/src/PackageArchive/Archive.props
deleted file mode 100644
index 2da1d26e3a..0000000000
--- a/src/PackageArchive/Archive.props
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
- netcoreapp3.0
-
- $(InstallersOutputPath)
-
-
diff --git a/src/PackageArchive/Archive.targets b/src/PackageArchive/Archive.targets
deleted file mode 100644
index 9775f74148..0000000000
--- a/src/PackageArchive/Archive.targets
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(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
deleted file mode 100644
index 4539ef2079..0000000000
--- a/src/PackageArchive/Directory.Build.props
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- true
-
- true
-
- $([MSBuild]::NormalizePath('$(RepositoryRoot)obj\pkgs\'))
-
-
-
diff --git a/src/PackageArchive/Directory.Build.targets b/src/PackageArchive/Directory.Build.targets
deleted file mode 100644
index 058246e408..0000000000
--- a/src/PackageArchive/Directory.Build.targets
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/src/PackageArchive/README.md b/src/PackageArchive/README.md
deleted file mode 100644
index 6ac17c97a2..0000000000
--- a/src/PackageArchive/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-PackageArchive
-==============
-
-See [docs/PackageArchives.md](/docs/PackageArchives.md) for details.
-
-See [ZipManifestGenerator](/src/PackageArchive/ZipManifestGenerator) for instructions on updating the build for new releases.
diff --git a/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj b/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj
deleted file mode 100644
index 4ed79ffecc..0000000000
--- a/src/PackageArchive/Scenario.ClassLibrary/Scenario.ClassLibrary.csproj
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- netstandard2.0
-
-
-
-
-
-
-
diff --git a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj b/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj
deleted file mode 100644
index f129f7dbbb..0000000000
--- a/src/PackageArchive/Scenario.ConsoleApp/Scenario.ConsoleApp.csproj
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- netcoreapp3.0
- 3.0.0
-
- $(MicrosoftNETCoreApp30PackageVersion)
- $([MSbuild]::ValueOrDefault('$(NETCoreImplicitVersion)','$(MaxImplicitVersion)'))
-
-
-
-
-
-
-
diff --git a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj b/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj
deleted file mode 100644
index af7c63b042..0000000000
--- a/src/PackageArchive/Scenario.WebApp/Scenario.WebApp.csproj
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- netcoreapp3.0
- 3.0.0
-
- $(MicrosoftAspNetCoreAppPackageVersion)
- $([MSBuild]::ValueOrDefault('$(AspNetCoreImplicitVersion)','$(MaxImplicitVersion)'))
-
-
-
-
-
-
-
diff --git a/src/PackageArchive/ZipManifestGenerator/Program.cs b/src/PackageArchive/ZipManifestGenerator/Program.cs
deleted file mode 100644
index 883d21b7c4..0000000000
--- a/src/PackageArchive/ZipManifestGenerator/Program.cs
+++ /dev/null
@@ -1,80 +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.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: