Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,091

Downloads of v 0.5.0-beta-2020102668611:

68

Last Update:

26 Oct 2020

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

biztalkmigrator-cli biztalk azure ais cli

BizTalk Migrator CLI

This is a prerelease version of BizTalk Migrator CLI.

  • 1
  • 2
  • 3

0.5.0-beta-2020102668611 | Updated: 26 Oct 2020

Downloads:

1,091

Downloads of v 0.5.0-beta-2020102668611:

68

Software Author(s):

  • Microsoft

BizTalk Migrator CLI 0.5.0-beta-2020102668611

This is a prerelease version of BizTalk Migrator CLI.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install BizTalk Migrator CLI, run the following command from the command line or from PowerShell:

>

To upgrade BizTalk Migrator CLI, run the following command from the command line or from PowerShell:

>

To uninstall BizTalk Migrator CLI, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade biztalkmigrator-cli -y --source="'INTERNAL REPO URL'" --version="'0.5.0-beta-2020102668611'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade biztalkmigrator-cli -y --source="'INTERNAL REPO URL'" --version="'0.5.0-beta-2020102668611'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install biztalkmigrator-cli
  win_chocolatey:
    name: biztalkmigrator-cli
    version: '0.5.0-beta-2020102668611'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'biztalkmigrator-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.5.0-beta-2020102668611'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller biztalkmigrator-cli
{
    Name        = "biztalkmigrator-cli"
    Version     = "0.5.0-beta-2020102668611"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'biztalkmigrator-cli':
  ensure          => '0.5.0-beta-2020102668611',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Command Line Interface (CLI) to migrate applications to Microsoft Azure Integration Services.


tools\additionalhelp.txt
Examples:
  Specify verbose logging:
    aim assess -v

  Don't abort at the first exception by a stage runner:
    aim assess --no-abort

  Abort at the end of a stage if any runner within that stage fails:
    aim assess --no-abort --abort-stage Discover

  Specify additional find paths:
    aim assess -f "C:\findpath1" -f "C:\findpath2"

  Change the default pattern for finding stage runners:
    aim assess -p *MyStageRunners.dll

  Change the working folder:
    aim assess -w "C:\temp"

  Save state before and after each stage runner:
    aim assess --save-state

  Save state before and after each stage:
    aim assess --save-stage-state

  Change the path where state will be stored:
    aim assess -s "C:\temp\state" --save-state

  Change the default Azure Integration Services target:
    aim migrate --target Ise

  Export the model during an assessment:
    aim assess -o "C:\temp\model.json"

  Import the model for a conversion:
    aim convert -m "C:\temp\model.json"

  Change the path where converted output will be stored:
    aim convert -c "C:\temp\conversion"
tools\aim.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1/win-x64",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {},
    ".NETCoreApp,Version=v3.1/win-x64": {
      "aim/0.5.0-beta.2020102668611": {
        "dependencies": {
          "Microsoft.AzureIntegrationMigration.Runner": "0.2.0-alpha.2020100155692",
          "Microsoft.CodeAnalysis.CSharp.CodeStyle": "3.6.0-beta1-20111-10",
          "Microsoft.CodeAnalysis.FxCopAnalyzers": "3.3.0",
          "Microsoft.Extensions.Configuration.Json": "3.1.8",
          "Microsoft.Extensions.DependencyInjection": "3.1.8",
          "Microsoft.Extensions.Logging": "3.1.8",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
          "Microsoft.Extensions.Logging.Console": "3.1.8",
          "Newtonsoft.Json": "12.0.3",
          "Serilog": "2.10.0",
          "Serilog.Enrichers.Environment": "2.1.3",
          "Serilog.Enrichers.Thread": "3.1.0",
          "Serilog.Extensions.Logging": "3.0.1",
          "Serilog.Settings.Configuration": "3.1.0",
          "Serilog.Sinks.Console": "3.1.1",
          "System.CommandLine": "2.0.0-beta1.20371.2",
          "System.CommandLine.Hosting": "0.3.0-alpha.20371.2",
          "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "3.1.2"
        },
        "runtime": {
          "aim.dll": {}
        }
      },
      "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.2": {
        "runtime": {
          "Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.6702"
          },
          "Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Collections.Concurrent.dll": {
            "assemblyVersion": "4.0.15.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Collections.Specialized.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Collections.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.ComponentModel.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Console.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Data.Common.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Diagnostics.Process.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Diagnostics.Tools.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Drawing.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.IO.Compression.Brotli.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.IO.Compression.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.IO.FileSystem.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Linq.Expressions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Linq.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Memory.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.Http.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.NameResolution.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.NetworkInformation.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.Requests.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.Security.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.ServicePoint.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.Sockets.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.ObjectModel.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Private.Uri.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Private.Xml.Linq.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Private.Xml.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.5.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.Extensions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.InteropServices.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.Numerics.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Runtime.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Claims.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "4.3.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "4.3.3.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Principal.Windows.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Security.Principal.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Text.Encodings.Web.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.6702"
          },
          "System.Text.Json.dll": {
            "assemblyVersion": "4.0.1.1",
            "fileVersion": "4.700.20.6702"
          },
          "System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.6702"
          }
        },
        "native": {
          "Microsoft.DiaSymReader.Native.amd64.dll": {
            "fileVersion": "14.12.25830.2"
          },
          "SOS_README.md": {
            "fileVersion": "0.0.0.0"
          },
          "System.Private.CoreLib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.6602"
          },
          "api-ms-win-core-console-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-datetime-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-debug-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-errorhandling-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-file-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-file-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-file-l2-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-handle-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-heap-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-interlocked-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-libraryloader-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-localization-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-memory-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-namedpipe-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-processenvironment-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-processthreads-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-processthreads-l1-1-1.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-profile-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-rtlsupport-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-string-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-synch-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-synch-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-sysinfo-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-timezone-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-core-util-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-conio-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-convert-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-environment-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-filesystem-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-heap-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-locale-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-math-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-multibyte-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-private-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-process-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-runtime-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-stdio-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-string-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-time-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "api-ms-win-crt-utility-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "clrcompression.dll": {
            "fileVersion": "4.700.20.6702"
          },
          "clretwrc.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "clrjit.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "coreclr.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "dbgshim.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "hostfxr.dll": {
            "fileVersion": "3.100.220.6704"
          },
          "hostpolicy.dll": {
            "fileVersion": "3.100.220.6704"
          },
          "mscordaccore.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "mscordaccore_amd64_amd64_4.700.20.6602.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "mscordbi.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "mscorrc.debug.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "mscorrc.dll": {
            "fileVersion": "4.700.20.6602"
          },
          "ucrtbase.dll": {
            "fileVersion": "10.0.17134.12"
          }
        }
      },
      "Microsoft.AzureIntegrationMigration.Runner/0.2.0-alpha.2020100155692": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
          "Microsoft.Extensions.Logging.Console": "3.1.8"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.AzureIntegrationMigration.Runner.dll": {
            "assemblyVersion": "0.2.0.0",
            "fileVersion": "0.2.0.0"
          }
        }
      },
      "Microsoft.CodeAnalysis.CSharp.CodeStyle/3.6.0-beta1-20111-10": {},
      "Microsoft.CodeAnalysis.FxCopAnalyzers/3.3.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.VersionCheckAnalyzer": "3.3.0",
          "Microsoft.CodeQuality.Analyzers": "3.3.0",
          "Microsoft.NetCore.Analyzers": "3.3.0",
          "Microsoft.NetFramework.Analyzers": "3.3.0"
        }
      },
      "Microsoft.CodeAnalysis.VersionCheckAnalyzer/3.3.0": {},
      "Microsoft.CodeQuality.Analyzers/3.3.0": {},
      "Microsoft.CSharp/4.4.1": {},
      "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
        "dependencies": {
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
            "assemblyVersion": "2.0.4.0",
            "fileVersion": "2.0.4.0"
          }
        }
      },
      "Microsoft.Extensions.Configuration/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Primitives": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Binder/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Configuration.CommandLine/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.FileExtensions/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8",
          "Microsoft.Extensions.FileProviders.Physical": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Json/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8",
          "Microsoft.Extensions.Configuration.FileExtensions": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Configuration.UserSecrets/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Json": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.DependencyInjection/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.DependencyModel/2.0.4": {
        "dependencies": {
          "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
          "Newtonsoft.Json": "12.0.3",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "4.0.11",
          "System.Linq": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
            "assemblyVersion": "2.0.4.0",
            "fileVersion": "2.0.4.0"
          }
        }
      },
      "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Primitives": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.FileProviders.Physical/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
          "Microsoft.Extensions.FileSystemGlobbing": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.FileSystemGlobbing/3.1.8": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Hosting/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.8",
          "Microsoft.Extensions.Configuration.CommandLine": "3.1.5",
          "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.5",
          "Microsoft.Extensions.Configuration.UserSecrets": "3.1.5",
          "Microsoft.Extensions.DependencyInjection": "3.1.8",
          "Microsoft.Extensions.FileProviders.Physical": "3.1.8",
          "Microsoft.Extensions.Hosting.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging": "3.1.8",
          "Microsoft.Extensions.Logging.Console": "3.1.8",
          "Microsoft.Extensions.Logging.Debug": "3.1.5",
          "Microsoft.Extensions.Logging.EventLog": "3.1.5",
          "Microsoft.Extensions.Logging.EventSource": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Hosting.Abstractions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.8",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
          "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Binder": "3.1.8",
          "Microsoft.Extensions.DependencyInjection": "3.1.8",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
          "Microsoft.Extensions.Options": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Logging.Configuration/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8",
          "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Logging.Console/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.8",
          "Microsoft.Extensions.Logging": "3.1.8",
          "Microsoft.Extensions.Logging.Configuration": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Logging.Debug/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.EventLog/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8",
          "System.Diagnostics.EventLog": "4.7.0"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.EventSource/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Options/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
          "Microsoft.Extensions.Primitives": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.8": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.8",
          "Microsoft.Extensions.Configuration.Binder": "3.1.8",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
          "Microsoft.Extensions.Options": "3.1.8"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.Extensions.Primitives/3.1.8": {
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
            "assemblyVersion": "3.1.8.0",
            "fileVersion": "3.100.820.42004"
          }
        }
      },
      "Microsoft.NetCore.Analyzers/3.3.0": {},
      "Microsoft.NETCore.Platforms/3.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.NetFramework.Analyzers/3.3.0": {},
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "runtime.any.System.Collections/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "runtime.any.System.Diagnostics.Tools/4.3.0": {},
      "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
      "runtime.any.System.Globalization/4.3.0": {},
      "runtime.any.System.Globalization.Calendars/4.3.0": {},
      "runtime.any.System.IO/4.3.0": {},
      "runtime.any.System.Reflection/4.3.0": {},
      "runtime.any.System.Reflection.Extensions/4.3.0": {},
      "runtime.any.System.Reflection.Primitives/4.3.0": {},
      "runtime.any.System.Resources.ResourceManager/4.3.0": {},
      "runtime.any.System.Runtime/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.0"
        }
      },
      "runtime.any.System.Runtime.Handles/4.3.0": {},
      "runtime.any.System.Runtime.InteropServices/4.3.0": {},
      "runtime.any.System.Text.Encoding/4.3.0": {},
      "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
      "runtime.any.System.Threading.Tasks/4.3.0": {},
      "runtime.any.System.Threading.Timer/4.3.0": {},
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
      "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "runtime.win.System.Console/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Diagnostics.Debug/4.3.0": {},
      "runtime.win.System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "runtime.win.System.Net.Sockets/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Net.NameResolution": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Principal.Windows": "4.7.0",
          "System.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.0"
        }
      },
      "Serilog/2.10.0": {
        "runtime": {
          "lib/netstandard2.1/Serilog.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.10.0.0"
          }
        }
      },
      "Serilog.Enrichers.Environment/2.1.3": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Serilog": "2.10.0"
        },
        "runtime": {
          "lib/netstandard1.5/Serilog.Enrichers.Environment.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.1.3.0"
          }
        }
      },
      "Serilog.Enrichers.Thread/3.1.0": {
        "dependencies": {
          "Serilog": "2.10.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Enrichers.Thread.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.1.0.0"
          }
        }
      },
      "Serilog.Extensions.Logging/3.0.1": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.8",
          "Serilog": "2.10.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.0.1.0"
          }
        }
      },
      "Serilog.Settings.Configuration/3.1.0": {
        "dependencies": {
          "Microsoft.Extensions.DependencyModel": "2.0.4",
          "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.8",
          "Serilog": "2.10.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
            "assemblyVersion": "3.1.0.0",
            "fileVersion": "3.1.0.0"
          }
        }
      },
      "Serilog.Sinks.Console/3.1.1": {
        "dependencies": {
          "Serilog": "2.10.0",
          "System.Console": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
        },
        "runtime": {
          "lib/netcoreapp1.1/Serilog.Sinks.Console.dll": {
            "assemblyVersion": "3.1.1.0",
            "fileVersion": "3.1.1.0"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Collections": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.CommandLine/2.0.0-beta1.20371.2": {
        "dependencies": {
          "Microsoft.CSharp": "4.4.1",
          "System.Memory": "4.5.4"
        },
        "runtime": {
          "lib/netstandard2.0/System.CommandLine.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.20.37102"
          }
        }
      },
      "System.CommandLine.Hosting/0.3.0-alpha.20371.2": {
        "dependencies": {
          "Microsoft.Extensions.Hosting": "3.1.5",
          "System.CommandLine": "2.0.0-beta1.20371.2"
        },
        "runtime": {
          "lib/netstandard2.1/System.CommandLine.Hosting.dll": {
            "assemblyVersion": "0.3.0.0",
            "fileVersion": "0.300.20.37102"
          }
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.win.System.Console": "4.3.0"
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Diagnostics.Debug": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Diagnostics.EventLog/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        },
        "runtime": {
          "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tools": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tracing": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.0.11": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization.Calendars": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.any.System.IO": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.IO.FileSystem": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Linq.Expressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Memory/4.5.4": {},
      "System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Net.NameResolution/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Principal.Windows": "4.7.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.win.System.Net.Primitives": "4.3.0"
        }
      },
      "System.Net.Sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.Net.Sockets": "4.3.0"
        }
      },
      "System.ObjectModel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Private.Uri/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Extensions": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Primitives": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Resources.ResourceManager": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.any.System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.any.System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Security.Cryptography.Cng/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Security.Cryptography.OpenSsl/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.3.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Security.Principal.Windows/4.7.0": {},
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Overlapped/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Timer": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      }
    }
  },
  "libraries": {
    "aim/0.5.0-beta.2020102668611": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.2": {
      "type": "runtimepack",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.AzureIntegrationMigration.Runner/0.2.0-alpha.2020100155692": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lFSHIg5y8Lto7PFNeGI4eU2m4/4hIpGgo723MSD5WgndRtWhH/lHA5DY2CglV1pX1859qHeSO0aNpPj4DpAPkw==",
      "path": "microsoft.azureintegrationmigration.runner/0.2.0-alpha.2020100155692",
      "hashPath": "microsoft.azureintegrationmigration.runner.0.2.0-alpha.2020100155692.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp.CodeStyle/3.6.0-beta1-20111-10": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5mhtZA5z4elo8ke6nYp8Bgep7szrmrY5vOfWe0JiHyVW1jJJoRj9MRM8ARqCi7C2S3h9LUthL0r/BbNxbHk8ew==",
      "path": "microsoft.codeanalysis.csharp.codestyle/3.6.0-beta1-20111-10",
      "hashPath": "microsoft.codeanalysis.csharp.codestyle.3.6.0-beta1-20111-10.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.FxCopAnalyzers/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-k3Icqx8kc+NrHImuiB8Jc/wd32Xeyd2B/7HOR5Qu9pyKzXQ4ikPeBAwzG2FSTuYhyIuNWvwL5k9yYBbbVz6w9w==",
      "path": "microsoft.codeanalysis.fxcopanalyzers/3.3.0",
      "hashPath": "microsoft.codeanalysis.fxcopanalyzers.3.3.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.VersionCheckAnalyzer/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xjLM3DRFZMan3nQyBQEM1mBw6VqQybi4iMJhMFW6Ic1E1GCvqJR3ABOwEL7WtQjDUzxyrGld9bASnAos7G/Xyg==",
      "path": "microsoft.codeanalysis.versioncheckanalyzer/3.3.0",
      "hashPath": "microsoft.codeanalysis.versioncheckanalyzer.3.3.0.nupkg.sha512"
    },
    "Microsoft.CodeQuality.Analyzers/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zZ3miq6u22UFQKhfJyLnVEJ+DgeOopLh3eKJnKAcOetPP2hiv3wa7kHZlBDeTvtqJQiAQhAVbttket8XxjN1zw==",
      "path": "microsoft.codequality.analyzers/3.3.0",
      "hashPath": "microsoft.codequality.analyzers.3.3.0.nupkg.sha512"
    },
    "Microsoft.CSharp/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A5hI3gk6WpcBI0QGZY6/d5CCaYUxJgi7iENn1uYEng+Olo8RfI5ReGVkjXjeu3VR3srLvVYREATXa2M0X7FYJA==",
      "path": "microsoft.csharp/4.4.1",
      "hashPath": "microsoft.csharp.4.4.1.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
      "path": "microsoft.dotnet.platformabstractions/2.0.4",
      "hashPath": "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xWvtu/ra8xDOy62ZXzQj1ElmmH3GpZBSKvw4LbfNXKCy+PaziS5Uh0gQ47D4H4w3u+PJfhNWCCGCp9ORNEzkRw==",
      "path": "microsoft.extensions.configuration/3.1.8",
      "hashPath": "microsoft.extensions.configuration.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Abstractions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0qbNyxGpuNP/fuQ3FLHesm1Vn/83qYcAgVsi1UQCQN1peY4YH1uiizOh4xbYkQyxiVMD/c/zhiYYv94G0DXSSA==",
      "path": "microsoft.extensions.configuration.abstractions/3.1.8",
      "hashPath": "microsoft.extensions.configuration.abstractions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Binder/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-l/oqIWRM4YF62mlCOrIKGUOCemsaID/lngK2SZEtpYI8LrktpjPd4QzvENWj5GebbLbqOtsFhF6Ko6dgzmUnBw==",
      "path": "microsoft.extensions.configuration.binder/3.1.8",
      "hashPath": "microsoft.extensions.configuration.binder.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.CommandLine/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-b/fT3Ed4wE4O3MltjLbbTiDrkzZEzxX0+DF6A0Ena0edoy+PJxD7Hia963p+lVFOt10XUIzuQghlyC/7aRA0cQ==",
      "path": "microsoft.extensions.configuration.commandline/3.1.5",
      "hashPath": "microsoft.extensions.configuration.commandline.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oIbBf9zATSJaZvrmsbrMkeenJc4+aQ0wnvTcOi/E9rDhw3LsjuT33+qiqchpeji7S7r4dfv2yFa29ZFdMJgEAQ==",
      "path": "microsoft.extensions.configuration.environmentvariables/3.1.5",
      "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.FileExtensions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kNiruN3duAuhk8et5EmDiPdrxMY4Bk+LMGPreuum9q5R9TUJpSVlB5vS+9rHRZL1DWzhytz+0GfdnI3yCNp/KA==",
      "path": "microsoft.extensions.configuration.fileextensions/3.1.8",
      "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Json/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YkPzhLuPXoxl+QmbZFHtMOt9efb3sUAlcRtCzUapkeOkFsgqYIC43D9WKYtYStfC3a844ThNlxInoJwASP/HLA==",
      "path": "microsoft.extensions.configuration.json/3.1.8",
      "hashPath": "microsoft.extensions.configuration.json.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.UserSecrets/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-y4jLBVPzQP5dOTuqA/wFnZDGi7s5NAbe5jvYe1V3DS6O7pt/jFwj4X8jbQXY3GNg/52TmUx/X6k3pDjoV5TLQg==",
      "path": "microsoft.extensions.configuration.usersecrets/3.1.5",
      "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyInjection/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tUpYcVxFqwh8wVD8O+6A8gJnVtl6L4N1Vd9bLJgQSJ0gjBTUQ/eKwJn0LglkkaDU7GAxODDv4eexgZn3QSE0NQ==",
      "path": "microsoft.extensions.dependencyinjection/3.1.8",
      "hashPath": "microsoft.extensions.dependencyinjection.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YP0kEBkSLTVl3znqZEux+xyJpz5iVNwFZf0OPS7nupdKbojSlO7Fa+JuQjLYpWfpAshaMcznu27tjWzfXRJnOA==",
      "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.8",
      "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyModel/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
      "path": "microsoft.extensions.dependencymodel/2.0.4",
      "hashPath": "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512"
    },
    "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==",
      "path": "microsoft.extensions.fileproviders.abstractions/3.1.8",
      "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.FileProviders.Physical/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C75r2Xos93s0cAFFihJjyUui7wXaTQjvbqxDhJnpGkAS2Iqw5LBzIida5qz0qgI7IrAfWoOHxKHD3o83YdGA7w==",
      "path": "microsoft.extensions.fileproviders.physical/3.1.8",
      "hashPath": "microsoft.extensions.fileproviders.physical.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.FileSystemGlobbing/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WkVBJy0bgkvegB11KT6Jc1xZEnd4qwowZsjsASx2y0AaulSkBHydGUqpEGkYgtIIQdvIvf2QeoEHM/K0JDCIrA==",
      "path": "microsoft.extensions.filesystemglobbing/3.1.8",
      "hashPath": "microsoft.extensions.filesystemglobbing.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Hosting/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PRp2lU0hKHIih67CIOlx21imEKfB5ICcSyB8vGtLtCmrSBNeAOsObdqxaAosdodCqo2n8gNZD8wVf/DLOWRfug==",
      "path": "microsoft.extensions.hosting/3.1.5",
      "hashPath": "microsoft.extensions.hosting.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Hosting.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-e57iK9spITqHE7qNgC3IowzK+PK5NC2rmVY4Sz+ZoDNO24nIsgllIRbanSbt2wQz7Iy/N8Jm3C1sXqKc8zEOMQ==",
      "path": "microsoft.extensions.hosting.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.hosting.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bch88WGwrgJUabSOiTbPgne/jkCcWTyP97db8GWzQH9RcGi6TThiRm8ggsD+OXBW2UBwAYx1Zb1ns1elsMiomQ==",
      "path": "microsoft.extensions.logging/3.1.8",
      "hashPath": "microsoft.extensions.logging.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Abstractions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LxQPR/KE4P9nx304VcFipWPcW8ZOZOGHuiYlG0ncAQJItogDzR9nyYUNvziLObx2MfX2Z9iCTdAqEtoImaQOYg==",
      "path": "microsoft.extensions.logging.abstractions/3.1.8",
      "hashPath": "microsoft.extensions.logging.abstractions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Configuration/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tfvQYDDwc3ni8VTXQavINMHRUIsM8fQ8gBQTs98mt1QFE3YIVm8XzhqPZMBBlLnXTESymb8HctM2fMnU8qC8Rg==",
      "path": "microsoft.extensions.logging.configuration/3.1.8",
      "hashPath": "microsoft.extensions.logging.configuration.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Console/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7JCZuqty78ZDwoXOGXGUXMC44rpocfeaa/48ONY7neKhCh2Oml/faW3PANPCdwy6M3TicmU03kIOhyrw3dQ2Eg==",
      "path": "microsoft.extensions.logging.console/3.1.8",
      "hashPath": "microsoft.extensions.logging.console.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Debug/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oDs0vlr6tNm0Z4U81eiCvnX+9zSP1CBAIGNAnpKidLb1KzbX26UGI627TfuIEtvW9wYiQWqZtmwMMK9WHE8Dqg==",
      "path": "microsoft.extensions.logging.debug/3.1.5",
      "hashPath": "microsoft.extensions.logging.debug.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.EventLog/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-x+EA/oW3rLjYHO06ymgUI6SkmvcSF0auUztlsoy/JgJwjvKKRyEt4GeQ1lSOy8FRiNKSF+cjnYUjZa49NvQlSw==",
      "path": "microsoft.extensions.logging.eventlog/3.1.5",
      "hashPath": "microsoft.extensions.logging.eventlog.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.EventSource/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zi3v9m9Vf6g82hQUl/p5tvIp4iBU5IdjwIR9WNPOM+K2rMUYraWRYfzWh4fSQZYAMfUItyZaivdlaHXJYOYcfw==",
      "path": "microsoft.extensions.logging.eventsource/3.1.5",
      "hashPath": "microsoft.extensions.logging.eventsource.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Options/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mpkwjNg5sr1XHEJwVS8G1w6dsh5/72vQOOe4aqhg012j93m8OOmfyIBwoQN4SE0KRRS+fatdW3qqUrHbRwlWOA==",
      "path": "microsoft.extensions.options/3.1.8",
      "hashPath": "microsoft.extensions.options.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/q7OhcsgDq6cPqg03nv55QqLt8o/OAvrVkd/w6h0YNasZ4C/Lxpx6I0DsnIH0MB5ORnqCyhmeyv1hFqOeehJng==",
      "path": "microsoft.extensions.options.configurationextensions/3.1.8",
      "hashPath": "microsoft.extensions.options.configurationextensions.3.1.8.nupkg.sha512"
    },
    "Microsoft.Extensions.Primitives/3.1.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XcIoXQhT0kwnEhOKv/LmpWR6yF6QWmBTy9Fcsz4aHuCOgTJ7Zd23ELtUA4BfwlYoFlSedavS+vURz9tNekd44g==",
      "path": "microsoft.extensions.primitives/3.1.8",
      "hashPath": "microsoft.extensions.primitives.3.1.8.nupkg.sha512"
    },
    "Microsoft.NetCore.Analyzers/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6qptTHUu1Wfszuf83NhU0IoAb4j7YWOpJs6oc6S4G/nI6aGGWKH/Xi5Vs9L/8lrI74ijEEzPcIwafSQW5ASHtA==",
      "path": "microsoft.netcore.analyzers/3.3.0",
      "hashPath": "microsoft.netcore.analyzers.3.3.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
      "path": "microsoft.netcore.platforms/3.1.0",
      "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "Microsoft.NetFramework.Analyzers/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JTfMic5fEFWICePbr7GXOGPranqS9Qxu2U/BZEcnnGbK1SFW8TxRyGp6O1L52xsbfOdqmzjc0t5ubhDrjj+Xpg==",
      "path": "microsoft.netframework.analyzers/3.3.0",
      "hashPath": "microsoft.netframework.analyzers.3.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
      "path": "microsoft.win32.registry/4.7.0",
      "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
    },
    "NETStandard.Library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "runtime.any.System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
      "path": "runtime.any.system.collections/4.3.0",
      "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
      "path": "runtime.any.system.diagnostics.tools/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
      "path": "runtime.any.system.diagnostics.tracing/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
      "path": "runtime.any.system.globalization/4.3.0",
      "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
      "path": "runtime.any.system.globalization.calendars/4.3.0",
      "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
      "path": "runtime.any.system.io/4.3.0",
      "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
      "path": "runtime.any.system.reflection/4.3.0",
      "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
      "path": "runtime.any.system.reflection.extensions/4.3.0",
      "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
      "path": "runtime.any.system.reflection.primitives/4.3.0",
      "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
      "path": "runtime.any.system.resources.resourcemanager/4.3.0",
      "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
      "path": "runtime.any.system.runtime/4.3.0",
      "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
      "path": "runtime.any.system.runtime.handles/4.3.0",
      "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
      "path": "runtime.any.system.runtime.interopservices/4.3.0",
      "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
      "path": "runtime.any.system.text.encoding/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
      "path": "runtime.any.system.text.encoding.extensions/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
      "path": "runtime.any.system.threading.tasks/4.3.0",
      "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
      "path": "runtime.any.system.threading.timer/4.3.0",
      "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.debian.8-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.fedora.23-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.opensuse.13.2-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "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.OpenSsl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.osx.10.10-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.rhel.7-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.14.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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.16.04-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": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
      "path": "runtime.win.microsoft.win32.primitives/4.3.0",
      "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==",
      "path": "runtime.win.system.console/4.3.0",
      "hashPath": "runtime.win.system.console.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
      "path": "runtime.win.system.diagnostics.debug/4.3.0",
      "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
      "path": "runtime.win.system.io.filesystem/4.3.0",
      "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
      "path": "runtime.win.system.net.primitives/4.3.0",
      "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
      "path": "runtime.win.system.net.sockets/4.3.0",
      "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
      "path": "runtime.win.system.runtime.extensions/4.3.0",
      "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "Serilog/2.10.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
      "path": "serilog/2.10.0",
      "hashPath": "serilog.2.10.0.nupkg.sha512"
    },
    "Serilog.Enrichers.Environment/2.1.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LclB09MAKLU14PXxlPiiejZxer1JhtbaVd1Zlb4EgllPYhzePYljx/jqW5uIXBe89hTtGlsCxjHLg9H6s1U24Q==",
      "path": "serilog.enrichers.environment/2.1.3",
      "hashPath": "serilog.enrichers.environment.2.1.3.nupkg.sha512"
    },
    "Serilog.Enrichers.Thread/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-85lWsGRJpRxvKT6j/H67no55SUBsBIvp556TKuBTGhjtoPeq+L7j/sDWbgAtvT0p7u7/phJyX6j35PQ4Vtqw0g==",
      "path": "serilog.enrichers.thread/3.1.0",
      "hashPath": "serilog.enrichers.thread.3.1.0.nupkg.sha512"
    },
    "Serilog.Extensions.Logging/3.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
      "path": "serilog.extensions.logging/3.0.1",
      "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
    },
    "Serilog.Settings.Configuration/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
      "path": "serilog.settings.configuration/3.1.0",
      "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512"
    },
    "Serilog.Sinks.Console/3.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-56mI5AqvyF/i/c2451nvV71kq370XOCE4Uu5qiaJ295sOhMb9q3BWwG7mWLOVSnmpWiq0SBT3SXfgRXGNP6vzA==",
      "path": "serilog.sinks.console/3.1.1",
      "hashPath": "serilog.sinks.console.3.1.1.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.CommandLine/2.0.0-beta1.20371.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-L6cnw4QgaLAOpUPSW1TjYGJGKsUvyDYvdQ/Gqv0/EnOSzByEf+IlAK1sRu+bcAhBrdws+eNPcOarg1Qj33oNDA==",
      "path": "system.commandline/2.0.0-beta1.20371.2",
      "hashPath": "system.commandline.2.0.0-beta1.20371.2.nupkg.sha512"
    },
    "System.CommandLine.Hosting/0.3.0-alpha.20371.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mJG8kUDnTuHqPs+nPGoGwG3H1TOX58s3mHmKZETFRO7L+z6ObBbi/tM/8y8Wz8skgTuhrQAEtZ1U4XhDH9AQ7w==",
      "path": "system.commandline.hosting/0.3.0-alpha.20371.2",
      "hashPath": "system.commandline.hosting.0.3.0-alpha.20371.2.nupkg.sha512"
    },
    "System.Console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
      "path": "system.console/4.3.0",
      "hashPath": "system.console.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
      "path": "system.diagnostics.diagnosticsource/4.3.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.EventLog/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
      "path": "system.diagnostics.eventlog/4.7.0",
      "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
    },
    "System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "System.Dynamic.Runtime/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
      "path": "system.dynamic.runtime/4.0.11",
      "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
      "path": "system.globalization.calendars/4.3.0",
      "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression.ZipFile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Linq.Expressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "System.Memory/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
      "path": "system.memory/4.5.4",
      "hashPath": "system.memory.4.5.4.nupkg.sha512"
    },
    "System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
      "path": "system.net.http/4.3.0",
      "hashPath": "system.net.http.4.3.0.nupkg.sha512"
    },
    "System.Net.NameResolution/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
      "path": "system.net.nameresolution/4.3.0",
      "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
    },
    "System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "System.ObjectModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
      "path": "system.objectmodel/4.3.0",
      "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
    },
    "System.Private.Uri/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
      "path": "system.private.uri/4.3.0",
      "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Numerics/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
      "path": "system.security.accesscontrol/4.7.0",
      "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
      "path": "system.security.cryptography.cng/4.3.0",
      "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.OpenSsl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
      "path": "system.security.cryptography.openssl/4.3.0",
      "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.X509Certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
      "path": "system.security.principal.windows/4.7.0",
      "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Overlapped/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
      "path": "system.threading.overlapped/4.3.0",
      "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    }
  },
  "runtimes": {
    "win-x64": [
      "win",
      "any",
      "base"
    ],
    "win-x64-aot": [
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win10-x64": [
      "win10",
      "win81-x64",
      "win81",
      "win8-x64",
      "win8",
      "win7-x64",
      "win7",
      "win-x64",
      "win",
      "any",
      "base"
    ],
    "win10-x64-aot": [
      "win10-aot",
      "win10-x64",
      "win10",
      "win81-x64-aot",
      "win81-aot",
      "win81-x64",
      "win81",
      "win8-x64-aot",
      "win8-aot",
      "win8-x64",
      "win8",
      "win7-x64-aot",
      "win7-aot",
      "win7-x64",
      "win7",
      "win-x64-aot",
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win7-x64": [
      "win7",
      "win-x64",
      "win",
      "any",
      "base"
    ],
    "win7-x64-aot": [
      "win7-aot",
      "win7-x64",
      "win7",
      "win-x64-aot",
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win8-x64": [
      "win8",
      "win7-x64",
      "win7",
      "win-x64",
      "win",
      "any",
      "base"
    ],
    "win8-x64-aot": [
      "win8-aot",
      "win8-x64",
      "win8",
      "win7-x64-aot",
      "win7-aot",
      "win7-x64",
      "win7",
      "win-x64-aot",
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win81-x64": [
      "win81",
      "win8-x64",
      "win8",
      "win7-x64",
      "win7",
      "win-x64",
      "win",
      "any",
      "base"
    ],
    "win81-x64-aot": [
      "win81-aot",
      "win81-x64",
      "win81",
      "win8-x64-aot",
      "win8-aot",
      "win8-x64",
      "win8",
      "win7-x64-aot",
      "win7-aot",
      "win7-x64",
      "win7",
      "win-x64-aot",
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ]
  }
}
tools\aim.dll
md5: A66115496D245414F2CFDC8199A52648 | sha1: 1C85C9184910E4E264F69345CF0901DA4E2593DA | sha256: 5626FF49A1DB3A3A9206B1CCDB712742F854C2DD2CD25705C306B7329F3F4A7C | sha512: 6B9FEBBCF7717D2FE7D8C67050B484237119EE163AB32B81B03826540FAE7C87D97F7525515028E9AAF23CFF14083B2DBB331D4CA4AE57F471E0A745B2473EDE
tools\aim.exe
md5: 7D4FB963E30B578B6D6AC999BEEB7BBA | sha1: FBEF32F49A37124C7402EE946CDD174C6C3DB154 | sha256: 78258B9234FFE4763FDDA792D7AD2EB75C639F549F5156805B4156E974D94853 | sha512: 05B6F0C6E4AF3FF141E04871B787C7F77D751D56EC0FECE430995A975728D4BF9160E0B257B9C9D48226AB042FBE69A6F5A53547E7B85620E1E8979346F98B70
tools\aim.pdb
 
tools\aim.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp3.1",
    "includedFrameworks": [
      {
        "name": "Microsoft.NETCore.App",
        "version": "3.1.2"
      }
    ]
  }
}
tools\api-ms-win-core-console-l1-1-0.dll
md5: E5912B05988259DAD0D6D04C8A17D19B | sha1: 724F4F91041AD595E365B724A0348C83ACF12BBB | sha256: 9F3608C15C5DE2F577A2220CE124B530825717D778F1E3941E536A3AB691F733 | sha512: C270A622D7887F4C97232EA898F5380459C565817F0D201CDB081EE82E3002B6E6248753A68DA896D3B1327F93E8E8CB0CA0DCAEEF324F610E0A1C7B542C6492
tools\api-ms-win-core-datetime-l1-1-0.dll
md5: 16789CC09A417D7DEB590FFFE4ED02DC | sha1: 4940D5B92B6B80A40371F8DF073BF3EB406F5658 | sha256: 3B68D7AB0641DE6B3E81D209B7C0D3896E4FFA76617BBADD01EB54036CDD1B07 | sha512: 19E4F086CC2137EE60316B0736B3C6B3780578896DF9A826EDFE004BB74BEE8E051C511A84D8A7EA278A5F47C82B9C955394F629AB0BB0740ECB51293D9BE7B7
tools\api-ms-win-core-debug-l1-1-0.dll
md5: 9476AFFAAC53E6E34405C4001F141805 | sha1: E7C8A6C29C3158F8B332EEA5C33C3B1E044B5F73 | sha256: 55574F9E80D313048C245ACEFD21801D0D6C908A8A5049B4C46253EFAF420F89 | sha512: F8E3476A09D888CAEBD50DA0EA2DEBC4006004E72AF677919413655AB4595622CAC524F1BC6C13406EE341AE0052A19ED83826AD530F652E73B2C65D4FA65680
tools\api-ms-win-core-errorhandling-l1-1-0.dll
md5: A5883C68D432F593812AB3B755B808DB | sha1: 51CBB7BA47802DC630C2507750432C55F5979C27 | sha256: B3715112A7CA4C6CC0EFEE044BD82444D3267A379E33A3EC118D87E75604204D | sha512: 27153E29E99A905FA4C8B3EDE078644A3A3F29FDF7B98E387E39C5C60444E326C92AFD74DA8FEE225F7DDF39724A0DAEF68BA238F3CC64FB7860172B8F29D79A
tools\api-ms-win-core-file-l1-1-0.dll
md5: 241338AEF5E2C18C80FB1DB07AA8BCDF | sha1: 9ACBEEF0AC510C179B319CA69CD5378D0E70504D | sha256: 56DE091EFE467FE23CC989C1EE21F3249A1BDB2178B51511E3BD514DF12C5CCB | sha512: B9FD37F01A58594E48FA566C41827B2B9499605D9E55C2178E83EE41C8C5F50A4DF2C85EFEA94CA586EA0EA4A6D984EBB7CA2193E9306FCB853B147B2C76BC2D
tools\api-ms-win-core-file-l1-2-0.dll
md5: 49C3FFD47257DBCB67A6BE9EE112BA7F | sha1: 04669214375B25E2DC8A3635484E6EEB206BC4EB | sha256: 322D963D2A2AEFD784E99697C59D494853D69BED8EFD4B445F59292930A6B165 | sha512: BDA5E6C669B04AAED89538A982EF430CEF389237C6C1D670819A22B2A20BF3C22AEF5CB4E73EF7837CBBD89D870693899F97CB538122059C885F4B19B7860A98
tools\api-ms-win-core-file-l2-1-0.dll
md5: BFFFA7117FD9B1622C66D949BAC3F1D7 | sha1: 402B7B8F8DCFD321B1D12FC85A1EE5137A5569B2 | sha256: 1EA267A2E6284F17DD548C6F2285E19F7EDB15D6E737A55391140CE5CB95225E | sha512: B319CC7B436B1BE165CDF6FFCAB8A87FE29DE78F7E0B14C8F562BE160481FB5483289BD5956FDC1D8660DA7A3F86D8EEDE35C6CC2B7C3D4C852DECF4B2DCDB7F
tools\api-ms-win-core-handle-l1-1-0.dll
md5: CCE27FF9B1E78B61955682788452F785 | sha1: A2E2A40CEA25EA4FD64B8DEAF4FBE4A2DB94107A | sha256: 8EE2DE377A045C52BBB05087AE3C2F95576EDFB0C2767F40B13454F2D9F779DE | sha512: 1FCEC1CD70426E3895C48598DFC359839D2B3F2B1E3E94314872A866540353460EC932BF3841E5AFE89AA4D6C6FAC768E21AE368D68C2BB15F65960F6F5D7D5B
tools\api-ms-win-core-heap-l1-1-0.dll
md5: CDC266896E0DBE6C73542F6DEC19DE23 | sha1: B4310929CCB82DD3C3A779CAB68F1F9F368076F2 | sha256: 87A5C5475E9C26FABFEAD6802DAC8A62E2807E50E0D18C4BFADCB15EBF5BCBC0 | sha512: 79A29041699F41938174A6EC9797FAF8D6BF7764657D801CB3AF15C225F8EAB0135D59CFA627BD02DD7459F7B857D62299E4D082586CE690627EBDF1267EBB21
tools\api-ms-win-core-interlocked-l1-1-0.dll
md5: 39809CC5DABF769DA8871A91A8ED9E69 | sha1: F779CDEF9DED19402AA72958085213D6671CA572 | sha256: 5CD00FF4731691F81FF528C4B5A2E408548107EFC22CC6576048B0FDCE3DFBC9 | sha512: 83A8246839D28378C6F6951D7593DC98B6CAA6DBCA5FBD023B00B3B1A9EBA0597943838C508493533C2DE276C4D2F9107D890E1C9A493EE834351CFF5DFD2CAB
tools\api-ms-win-core-libraryloader-l1-1-0.dll
md5: 5D5FAE1A17961D6EE37637F04FE99B8A | sha1: 47143A66B4A2E2BA019BF1FD07BCCA9CFB8BB117 | sha256: 8E01EB923FC453F927A7ECA1C8AA5643E43B360C76B648088F51B31488970AA0 | sha512: 9DB32EC8416320DCB28F874B4679D2D47A5AE56317FDC9D2D65EBB553F1D6345C3DD0024294A671A694337683DD4E77254595A9CDBFE115C80D0EF53516D46AA
tools\api-ms-win-core-localization-l1-2-0.dll
md5: 588BD2A8E0152E0918742C1A69038F1D | sha1: 9874398548891F6A08FC06437996F84EB7495783 | sha256: A07CC878AB5595AACD4AB229A6794513F897BD7AD14BCEC353793379146B2094 | sha512: 32FFE64C697F94C4DB641AB3E20B0F522CF3EBA9863164F1F6271D2F32529250292A16BE95F32D852480BD1B59B8B0554C1E7FD7C7A336F56C048F4F56E4D62F
tools\api-ms-win-core-memory-l1-1-0.dll
md5: 6DEF20ED13972F3C3F08DBA8ECF3D6CC | sha1: 9C03356CF48112563BB845479F40BF27B293E95E | sha256: C2E887A17875D39099D662A42F58C120B9CC8A799AFD87A9E49ADF3FADDD2B68 | sha512: 5B4D2B1152BED14108DC58D358B1082E27DEFD1001D36CD72EC6F030A34D6CAF9B01C3C1DD8A9AC66D1937FCF86A6FE3469AC93B1E76D933A8F4B51C1F782F65
tools\api-ms-win-core-namedpipe-l1-1-0.dll
md5: A056D4EEAAE37DEAB8333DCC4C910A93 | sha1: CB59F1FE73C17446EB196FC0DD7D944A0CD9D81F | sha256: 593FA2AA2474508AD942BBAA0FDC9A1BADD81C85B0DFF1C43B90A47C23AD5FB7 | sha512: C2F811994182EF51D0C011C19336179DA69357E5F284F787BCDB54F90C32768A959232A477534F7E62CD3D71A048A13E91B20042E2FE6AB108D606C7C8DF9255
tools\api-ms-win-core-processenvironment-l1-1-0.dll
md5: F3B4AB35A65A8D938C6B60AD59BA6E7F | sha1: 2745259F4DBBEFBF6B570EE36D224ABDB18719BC | sha256: EA2972FEC12305825162AE3E1AE2B6C140E840BE0E7EBB51A7A77B7FEEDA133A | sha512: A88AFB66311494D6C15613C94555BA436CD2F75E11A49A448C9C6776DFBA24CDA25A44792A1E8B3E680C1AD3AD0574B43AC2328C6E41FF0832139C94B066DBF5
tools\api-ms-win-core-processthreads-l1-1-0.dll
md5: 5FAF9A33BAB1D39DD9F820D34339B3D4 | sha1: 50699041060D14576ED7BACBD44BE9AF80EB902A | sha256: A1221836731C7E52C42D5809CC02B17C5EC964601631EC15A84201F423DA4AC4 | sha512: 73C25D1338DF9AEE5211FBB0E1B14E6BD853E31746C63BC46F44810622B09D52EE39B8E8A57C655DA63D3D3D4025C2CBA4D8673893D022417A2032BA3D935061
tools\api-ms-win-core-processthreads-l1-1-1.dll
md5: D699333637DB92D319661286DF7CC39E | sha1: 0BFFB9ED366853E7019452644D26E8E8F236241B | sha256: FE760614903E6D46A1BE508DCCB65CF6929D792A1DB2C365FC937F2A8A240504 | sha512: 6FA9FF0E45F803FAF3EB9908E810A492F6F971CB96D58C06F408980AB40CBA138B52D853AA0E3C68474053690DFAFA1817F4B4C8FB728D613696B6C516FA0F51
tools\api-ms-win-core-profile-l1-1-0.dll
md5: 7028CF6B6B609CB0E31ABD1F618E42D0 | sha1: E7E0B18A40A35BD8B0766AC72253DE827432E148 | sha256: 9E98B03A3CA1EBABDCEB7ED9C0CEB4912BB68EB68F3E0DF17F39C7A55FADA31D | sha512: D035CCFD0DE316E64187C18E6E5B36E14F615F872C08740EC22EF2C12D592E37D78AB154202926A56AB01D669EB5870DFF651280A882D6BF2A700C43DCD25AC2
tools\api-ms-win-core-rtlsupport-l1-1-0.dll
md5: 2166FB99DEBBB1B0649C4685CF630A4A | sha1: 24F37D46DFC0EF303EF04ABF9956241AF55D25C9 | sha256: CDC4CFEBF9CBA85B0D3979BEFDB258C1F2CFCB79EDD00DA2DFBF389D080E4379 | sha512: DE27D06B1F306110B42D0ED2642A555862D0ADE7E56E5F2908E399F140AA5F43904E08D690BCB0D2F4D11D799EC18FA682DB048DA57D99CD99891E45ADD86371
tools\api-ms-win-core-string-l1-1-0.dll
md5: B7CBC8D977A00A2574E110B01124ED40 | sha1: 637E4A9946691F76E6DEB69BDC21C210921D6F07 | sha256: 854DB7D2085CAACF83D6616761D8BDCBACB54A06C9A9B171B1C1A15E7DC10908 | sha512: B415EF4092FA62D39941BF529A2032BC8B591C54ED2050EA4730F198899F147539B2C0E97F3C4F14848C71066924C1848AE5F07779A1A47AB4C5E46F02BE7258
tools\api-ms-win-core-synch-l1-1-0.dll
md5: 6961BF5622FFCD14C16FBFC1296950A4 | sha1: 5584C189216A17228CCA6CD07037AAA9A8603241 | sha256: 50A1542D16B42ECB3EDC1EDD0881744171EA52F7155E5269AD39234F0EA691DE | sha512: A4D0C15ACBFF4E9140AE4264FA24BD4C65FB2D1052A0B37BF281498F3B641FEF563C18115511829A23340C9440F547028D36015BA38CBD51AD0744D44D5CCD87
tools\api-ms-win-core-synch-l1-2-0.dll
md5: 47388F3966E732706054FE3D530ED0DC | sha1: A9AEBBBB73B7B846B051325D7572F2398F5986EE | sha256: 59C14541107F5F2B94BBF8686EFEE862D20114BCC9828D279DE7BF664D721132 | sha512: CCE1FC5BCF0951B6A76D456249997B427735E874B650E5B50B3D278621BF99E39C4FC7FEE081330F20762F797BE1B1C048CB057967EC7699C9546657B3E248EE
tools\api-ms-win-core-sysinfo-l1-1-0.dll
md5: DF50047BBD2CF3A4B0CF0567514B464C | sha1: F20AE25484A1C1B43748A1F0C422F48F092AD2C1 | sha256: 8310D855398F83CB5B9CA3ADEB358DA1354557AEC5C82C8EF91A29F79A47F620 | sha512: 5C3BFC2CCB2EE864B99F6709677474327E85889F4C962EA0A1EF9E1E876DC88B1D8E8E0F6C1422F634FF1C84A861C34E52EE07DAC7FDDE505B508BEA80562B9F
tools\api-ms-win-core-timezone-l1-1-0.dll
md5: F62B66F451F2DAA8410AD62D453FA0A2 | sha1: 4BF13DB65943E708690D6256D7DDD421CC1CC72B | sha256: 48EB5B52227B6FB5BE70CB34009C8DA68356B62F3E707DB56AF957338BA82720 | sha512: D64C2A72ADF40BD451341552E7E6958779DE3054B0CF676B876C3BA7B86147AECBA051AC08ADC0C3BFB2779109F87DCA706C43DE3CE36E05AF0DDEE02BBBF419
tools\api-ms-win-core-util-l1-1-0.dll
md5: A1952875628359A0632BE61BA4727684 | sha1: 1E1A5AB47E4C2B3C32C81690B94954B7612BB493 | sha256: A41BEDE183FA1C70318332D6BC54EF13817AEEE6D52B3AB408F95FA532B809F1 | sha512: 3F86180CC085DC8C9F6D3C72F5CCC0F5A0C9048343EDAF62239EB4B038799845388898408ED7E8EAC5D015A9BC42FF428F74585F64F5D3467DDDB1303BAF4F03
tools\api-ms-win-crt-conio-l1-1-0.dll
md5: 6C88D0006CF852F2D8462DFA4E9CA8D1 | sha1: 49002B58CB0DF2EE8D868DEC335133CF225657DF | sha256: D5960C7356E8AB97D0AD77738E18C80433DA277671A6E89A943C7F7257FF3663 | sha512: D081843374A43D2E9B33904D4334D49383DF04EE7143A8B49600841ECE844EFF4E8E36B4B5966737AC931ED0350F202270E043F7003BF2748C5418D5E21C2A27
tools\api-ms-win-crt-convert-l1-1-0.dll
md5: D53637EAB49FE1FE1BD45D12F8E69C1F | sha1: C84E41FDCC4CA89A76AE683CB390A9B86500D3CA | sha256: 83678F181F46FE77F8AFE08BFC48AEBB0B4154AD45B2EFE9BFADC907313F6087 | sha512: 94D43DA0E2035220E38E4022C429A9C049D6A355A9CB4695AD4E0E01D6583530917F3B785EA6CD2592FDD7B280B9DF95946243E395A60DC58EC0C94627832AEB
tools\Microsoft.DiaSymReader.Native.amd64.dll
md5: 7E31E92DD59449F41C900862A16F0879 | sha1: 36ED049328FE585F2053A7E20BE4B98A3C3A1F24 | sha256: 95F301012ED09C09C9EB61A23A2803A7043E6A33F9C8957746379B610A52978D | sha512: 77FECD5611967F7234FCE744E0E57525E8699ECB3EAE99B6E7BB3E326EF4E10258ECDCC80AB5B9B402C4DA32104B6A6566DC63BFB1B7C7192A75EBEB13E439C4
tools\Microsoft.DotNet.PlatformAbstractions.dll
md5: 88D540658356525A4BEE51C9550FE77A | sha1: 159490E7CF22716B968FE8CCE58429D7DCBBFFC3 | sha256: 1EFD3EE06B8730E856AB6E0CFE3978A80274590149286576BB345A34BB36F7B9 | sha512: 2A6670D6C97FBFB56BAB0AB2517E9EDD82D34D4544AC84274606CD0DEB894912A3A0BF5FF9D2418617B1A1BF90A6523B41B371FBC3561EC406E7B4D8668CF339
tools\Microsoft.Extensions.Configuration.Abstractions.dll
md5: 7CF05250483BAAA3BB75D1ECA0485654 | sha1: 4BE31A1B6C867C0308ED7D683AB1172A09433E4D | sha256: 56BCEB5F10F430005BE0346B733F082D61C8EFD382FCC775F64474BF3A459CA9 | sha512: C79FDCD90463F6CF083F422D7201EE57797698C93367D6196270AFB1CB3BAE2D99F84C79E90847D20D0890B56C7749CF2F30F2BB9DBC71D8CAA6B4DF025094FC
tools\Microsoft.Extensions.Configuration.Binder.dll
md5: B1FBFF2BC113094D792B7F88C3C0A7CD | sha1: 479AE26F652104DAE3F39657B4220BB2524A415C | sha256: 03111FF016FFDC9DA1CBC45DF4AE14390320400E962EE0B0B1B0B9E63070ACD5 | sha512: A20F666715B9F74FF687B0099188848050D2A09B5D51B2D30DCC1632042948233D4587CE6C08EDA51A627A6532086AA6F54CA39AA51FDAE2ED802C0971E764C9
tools\Microsoft.Extensions.Configuration.CommandLine.dll
md5: E90C254AC2A97D3FCB1A008292418E07 | sha1: 24B1A3DC5A40C1197389D72E50644200BAF0AD62 | sha256: 39EE2F00969567B1132A8C696C6712CEF2FC9F8954CA0E1E992C61BB468460C7 | sha512: 64F3200514E3DF0F3BB92052488F9964AAA8D0F2FA9C86AE8E32F579826EBB5D35418AEC53688B3A0F47778BEB2F82AD80970DC236FCE39C50F3D3A91939D050
tools\Microsoft.Extensions.Configuration.dll
md5: 24D18C7408CD04E309DA946EB5B1EDF3 | sha1: E3093EAD5D08A2734D058F23B78E74A5D822FD4D | sha256: 1CD11454C2B5DBC5AE703DF6D95C03CFF7648B17B5942B7AE76E5FAF8D95B3F5 | sha512: 9E361C98247F7EB2B2E3AF2BE6F9F5C61FB214C88DB32B387789F83588F24315EC63FBE4B67EDDA396876C0DF0B8F7828E63C2832E9EC0DD151BD4A3FD4D58CF
tools\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
md5: 82CA689296EFB36E52F91120989059D9 | sha1: 38B9A20136710AE2D16B461DF46E035DC60227EE | sha256: DB815523869B70EFB3C22C57299BAEA490CE4AF55B4A974173C33CA746D10973 | sha512: 8D80D15965037F9F6821CC9144BD7AA13EE5BB599E848BC5C6FF7D700DDE0296C6F57AC5DAEA84045720B179AA649E40CB4B3D6DF1B5F7D3FEBC45E3FE90ED0F
tools\Microsoft.Extensions.Configuration.FileExtensions.dll
md5: CD46AF497E992C68081509E9706200EB | sha1: C14ADEABE7E1EA5AC5ECAB37C5C17DA0A2ECC6D9 | sha256: 9E5EB4CC2C77D61F49B0CE68F5B6104EDBDBC91E814DB0C5E56964A15473E505 | sha512: 239F7C2BFC0E6C0EBFA52054C371FE04BCECA759DD7EEE9EE279190B6EC1C5C05E00B0D3F44DC1534D2C3CE0583E567A601C5F427F40C0D37215F087C94D3BEA
tools\Microsoft.Extensions.Configuration.Json.dll
md5: F5A3562EF0B46B20C122854ACBFCDEE3 | sha1: D010E87B911CE3EA9F841B6FCA5D43BE40885411 | sha256: CE69463C501D474C24B2329D9F0A49F8E4B8D04D97730DB3467E35B367075FE6 | sha512: 4E642EF17B26A88057CC744551C45CF01E9127E5C23DC144EEE9D3964047A13696DCB05498EEE6D9639CB77258837CE298A2B1C9C86A876A5364F8F401ECA5E7
tools\Microsoft.Extensions.Configuration.UserSecrets.dll
md5: 7511F5CF143B3E593D3D83A61AC626C8 | sha1: 87F1F0BD835927A7EF56FF2A5C2626FC91315EB0 | sha256: BF853D82505030C8AF9872D60AEC21170992FBFC7ADEE924D633FA6E459EE0B1 | sha512: D024306B4D1466ABB8270E7CD9BFBA5AB7823AB9543A3EBE35D388FCFD4083AF9D3D743A21790F29603825CD19B518B0B9F106F51D30AFD3A5FE7BB27F758901
tools\Microsoft.CSharp.dll
md5: D825B22B5780DE7C30E6D025E88EFE93 | sha1: B77274ED4860AC61331AA9E77169D79955E56412 | sha256: D0CA7DD1CEDC0E732F9FB77936BF7C121763CD5A6E0C5F5376D877BDA3EFACA5 | sha512: F4C9C2BC971E71EAB747D93B04A5BA9580ABA16EC25BAA3D90CB582EADE15A3E4BD60F4620ADB377AEAF855823A538D1D067DDB59A1F7681255A3A56B5670FE7
tools\api-ms-win-crt-string-l1-1-0.dll
md5: 96DA689947C6E215A009B9C1ECA5AEC2 | sha1: 7F389E6F2D6E5BEB2A3BAF622A0C0EA24BC4DE60 | sha256: 885309EB86DCCD8E234BA05E13FE0BF59AB3DB388EBFBF6B4FD6162D8E287E82 | sha512: 8E86FA66A939FF3274C2147463899DF575030A575C8F01573C554B760A53B339127D0D967C8CF1D315428E16E470FA1CC9C2150BB40E9B980D4EBF32E226EE89
tools\api-ms-win-crt-stdio-l1-1-0.dll
md5: 76E0A89C91A28CF7657779D998E679E5 | sha1: 982B5DA1C1F5B9D74AF6243885BCBA605D54DF8C | sha256: 0189CBD84DEA035763A7E52225E0F1A7DCEC402734885413ADD324BFFE688577 | sha512: D75D8798EA3C23B3998E8C3F19D0243A0C3A3262CFFD8BCEE0F0F0B75F0E990C9CE6644150D458E5702A8AA51B202734F7A9161E795F8121F061139AD2EA454F
tools\api-ms-win-crt-runtime-l1-1-0.dll
md5: 8B9B0D1C8B0E9D4B576D42C66980977A | sha1: A19ACEFA3F95D1B565650FDBC40EF98C793358E9 | sha256: 371A44AB91614A8C26D159BEB872A7B43F569CB5FAC8ADA99ACE98F264A3B503 | sha512: 4B1C5730A17118B7065FADA3B36944FE4E0260F77676B84453EE5042F6F952A51FD99DEBCA835066A6D5A61BA1C5E17247551340DD02D777A44BC1CAE84E6B5F
tools\api-ms-win-crt-process-l1-1-0.dll
md5: 595D79870970565BE93DB076AFBE73B5 | sha1: EC96F7BEEAEC14D3B6C437B97B4A18A365534B9B | sha256: FC50A37ACC35345C99344042D7212A4AE88AA52A894CDA3DCB9F6DB46D852558 | sha512: 152849840A584737858FC5E15F0D7802786E823A13EC5A9FC30EE032C7681DEAF11C93A8CFFEAD82DC5F73F0CD6F517F1E83B56D61D0E770CBB20E1CFFF22840
tools\api-ms-win-crt-private-l1-1-0.dll
md5: 50740F0BC326F0637C4166698298D218 | sha1: 0C33CFE40EDD278A692C2E73E941184FD24286D9 | sha256: ADBB658DD1CBECACA7CC1322B51976F30B36CCF0A751F3BAD1F29D350B192C9C | sha512: F1331AB1D52FB681F51546168E9736E2F6163E0706955E85AC9E4544D575D50E6EACD90EA3E49CB8B69DA34FE0B621B04661F0B6F09F7CE8CECA50308C263D03
tools\api-ms-win-crt-multibyte-l1-1-0.dll
md5: 4E033CFEE32EDF6BE7847E80A5114894 | sha1: 91EEF52C557AEFD0FDE27E8DF4E3C3B7F99862F2 | sha256: DFF24441DF89A02DDE1CD984E4D3820845BAFDFF105458ED10D510126117115B | sha512: E1F3D98959D68EF3D7E86AC4CB3DBDF92A34FCFD1BF0E0DB45DB66C65AF0162AB02926DC5D98C6FC4A759A6010026EE26A9021C67C0190DA941A04B783055318
tools\api-ms-win-crt-math-l1-1-0.dll
md5: 4DD7A61590D07500704E7E775255CB00 | sha1: 8B35EC4676BD96C2C4508DC5F98CA471B22DEED7 | sha256: A25D0654DEB0CEA1AEF189BA2174D0F13BDF52F098D3A9EC36D15E4BFB30C499 | sha512: 1086801260624CF395BF971C9FD671ABDDCD441CCC6A6EAC55F277CCFBAB752C82CB1709C8140DE7B4B977397A31DA6C9C8B693AE92264EB23960C8B1E0993BD
tools\api-ms-win-crt-locale-l1-1-0.dll
md5: AB206F2943977256CA3A59E5961E3A4F | sha1: 9C1DF49A8DBDC8496AC6057F886F5C17B2C39E3E | sha256: B3B6EE98ACA14CF5BC9F3BC7897BC23934BF85FC4BC25B7506FE4CD9A767047A | sha512: BACCC304B091A087B2300C10F6D18BE414ABB4C1575274C327104AABB5FDF975BA26A86E423FDA6BEFB5D7564EFFAC0C138EB1BAD2D2E226131E4963C7AAC5BD
tools\api-ms-win-crt-heap-l1-1-0.dll
md5: F9E20DD3B07766307FCCF463AB26E3CA | sha1: 60B4CF246C5F414FC1CD12F506C41A1043D473EE | sha256: AF47AEBE065AF2F045A19F20EC7E54A6E73C0C3E9A5108A63095A7232B75381A | sha512: 13C43EEE9C93C9F252087CB397FF2D6B087B1DC92A47BA5493297F080E91B7C39EE5665D6BDC1A80E7320E2B085541FC798A3469B1F249B05DEE26BBBB6AB706
tools\api-ms-win-crt-filesystem-l1-1-0.dll
md5: F0D507DE92851A8C0404AC78C383C5CD | sha1: 78FA03C89EA12FF93FA499C38673039CC2D55D40 | sha256: 610332203D29AB218359E291401BF091BB1DB1A6D7ED98AB9A7A9942384B8E27 | sha512: A65C9129EE07864F568C651800F6366BCA5313BA400814792B5CC9AA769C057F357B5055988C414E88A6CD87186B6746724A43848F96A389A13E347EF5064551
tools\api-ms-win-crt-environment-l1-1-0.dll
md5: C712515D052A385991D30B9C6AFC767F | sha1: 9A4818897251CACB7FE1C6FE1BE3E854985186AD | sha256: F7C6C7EA22EDD2F8BD07AA5B33CBCE862EF1DCDC2226EB130E0018E02FF91DC1 | sha512: B7D1E22A169C3869AA7C7C749925A031E8BDD94C2531C6FFE9DAE3B3CD9A2EE1409CA26824C4E720BE859DE3D4B2AF637DD60308C023B4774D47AFE13284DCD2
tools\Microsoft.Extensions.DependencyInjection.Abstractions.dll
md5: B46C3B40ECEB305D09609015B3A5CF79 | sha1: 4B7242F695EA4D527A8F69398173F8BA32EE19F8 | sha256: 69931A0B5A7DA41F77AB0A10AD932043FD82012831D0DDE320AD32476DD0B2B5 | sha512: 58F11E401B89DD14966DEEDE6F718EF8E759DAFCD06EC834045BD3262477EB372CE059A00DA2B341B6F37F373CE8563D48601724429FE6CB3F446546D9DF0237
tools\Microsoft.Extensions.Logging.EventLog.dll
md5: 36B1C216C7BE6EAACE68228B0D37A07F | sha1: 7213B71D4F8BA19761EC98617355947A10E39D68 | sha256: 45E8A6492CE8887BBC6C978ACEC3AE8437E00ADEED7A7065E07A9219BEA77A5F | sha512: BC8CADF6CCD7A802282E07D0265FDF113569DCCB44F1FE8085D7E7242A575AE9B55C54D39E79981608F633D655D7F4A4888EB41D1AF156CABEB163DE75E2DA4D
tools\Microsoft.Extensions.Logging.EventSource.dll
md5: CE0174386C6E7059CB01B323AE300FD5 | sha1: C36AE4211B3FD2F672D5556299250E9530874D12 | sha256: AAC1A2A6ADADC43CADD9E69E26C569BB702D6847D4F2030831CDFB9B0A2F83F0 | sha512: D884DB81E7441DB6632442838FE9BB7D0046A3D68F6628C1C1D87316E4EA1107F9D5F26ABCE5503123C8493468C7E709BF61EA1CF424C15AF73E20DFD9CA816F
tools\Microsoft.Extensions.Options.ConfigurationExtensions.dll
md5: A287DEA05D5A638DF58A46677AFCAC9B | sha1: C144E37BA6E9D2758EC53B98D83557508CBFF5BF | sha256: FEB44EF9373B56CA03C38AEFB922845F7F1D000D84D36E06B57D9F46509EF27B | sha512: 0DFD61DC78EA80FD69253C2ADC142B8177F83219F7C428BD1CA53F1B5B6FA869D9F6A7DA9D34254ACF74307BD22873311D6B242796E9A36CDB3565DE3C220F27
tools\Microsoft.Extensions.Options.dll
md5: BF0E5DD2E6D774A17CBEBE8F0175D84A | sha1: 3EE2D341C51E727BE47907695B2BA00EF02EA842 | sha256: 2A6925FE8FAECDBEF434C4682F1640D76215C4F54FD5B4A9AE736773E18C0126 | sha512: 8DE5615EACA522A498096E2C901EBD939A7044BBDF4363A4A9F213D52D2BF0C4A9ECE80A1A96301021A3B429E9EC0BD09FE563E2498B041E88171EE0625451C7
tools\Microsoft.Extensions.Primitives.dll
md5: 22BF3675CB41F2A7A333BF2A0E0CDA3F | sha1: 891F4740F6B769E59A25B9FF878461138B31B7CE | sha256: 3CDF0A99E3F82A97FA36215C17360AE5B1295C7ED7AD783102279A794744B11D | sha512: 23F010623FEF8A874800E989A73D3AF276C29BB01142778C41FB04B3C41A85B4883C0DF4B36C81A5070EB9FF69F124AE15B206A644AA0166E934E25E06B70537
tools\Microsoft.Win32.Primitives.dll
md5: C50CD302CD52903F4B83656B810D8645 | sha1: 9C5ECF4B9AD36E17979B9FF9C350CA99EFA65939 | sha256: F99317D5A38410BED4059A5380D58176103D4D961C4FACEE27D484404B88DA7B | sha512: 12F128AB97331C6148D884868FAB4B5F55FCAC91CCA15E7E65827F180AE9D805B947EE6670260CF6DEDEC4AF6ECCBAB8EEA1F65E268BC1EFB7764C7E4CEBD7D5
tools\Microsoft.Win32.Registry.dll
md5: 8655D5FEAA0A0043731C631A1A5A84BB | sha1: 67C891AD3984426F2FF3EB4B0A8B083E2E46A5BE | sha256: 53806381C07D188DE5D47F136C462B21A46EA36077F2EA9B5F537E9C7DB98586 | sha512: D41362C11E23C8DF286E7FED5881D47BE5239708982D5B134ACBB2B3857AB41BC790B0936F127EAA8841AC8A2F671A26C074037372C5B067E65411E81EC0660D
tools\mscordaccore.dll
md5: 8B3099A6132E0D05807094BDF1A7B7D9 | sha1: 9E9A4B2510A67D1D0FD90BAB8BFF3EB0ED5DFFA4 | sha256: 0F79E06B0ACD6ABA7C0F6014F1352E7F216F3CFF09FAAC2FC4D9D42A9F0472C9 | sha512: 3096D15AB0C6A2A662B09B31696AE0E7844AADB09F602F72F8075EEBF5CE99EC273F81C960A3D104F3CBFC9C2D8E263871135EE0DCA61682F07A6ABD30B241CE
tools\mscordaccore_amd64_amd64_4.700.20.6602.dll
md5: 8B3099A6132E0D05807094BDF1A7B7D9 | sha1: 9E9A4B2510A67D1D0FD90BAB8BFF3EB0ED5DFFA4 | sha256: 0F79E06B0ACD6ABA7C0F6014F1352E7F216F3CFF09FAAC2FC4D9D42A9F0472C9 | sha512: 3096D15AB0C6A2A662B09B31696AE0E7844AADB09F602F72F8075EEBF5CE99EC273F81C960A3D104F3CBFC9C2D8E263871135EE0DCA61682F07A6ABD30B241CE
tools\mscordbi.dll
md5: B71FD11FD464036088F9A547611D79DE | sha1: 00C7A46388888FEE412B38579F4D4366D3CE55AB | sha256: 64DA9869F53DE6495047ED89C83B883F9B38D7851D7D3BF8350B1708F4404950 | sha512: BBEEE58A7080E580A12E850E0A67790BF3FF603F3735B34C2E8D4CE6BAE66D6FF043EB33B1852C8FE0A192819E9DCDBD44CBC26068F676857C0A64A76BD44677
tools\mscorrc.debug.dll
md5: 6BCDCE12A78F180C7455861320BF4CFD | sha1: 2EFB8AC07D7D8C3BAD3D83B250CD38B6CFEB32FA | sha256: E1C3D7D3CEF563750FFCD637D9D774D3C801D7C17F7A5089FEEA28C325206D65 | sha512: B7E3086EE81A640423E6A9C64EDF59E3091FFCA3D71B8D260B5E9888FA89B2EC9D8F4DC03BB28648D5F6DC2EF00AED3AE901B7E1E6A76DE41468698180891E83
tools\mscorrc.dll
md5: 57149C41D57F797D962E4D3CE1AEC5A4 | sha1: 12230E603AFA4F41399008CB289AE494B124F793 | sha256: B4A4D0783D2F2C88B80E051B4AC49FE379F396870FB9ED0BF218E8943BCDA443 | sha512: 3C7FAF3006F45238FF6817ABD936EA697128482D26B48E7D1463ED7DA66F8592B3070652BC44BBD285B3C1BF210164368C4B90BE307B9BBCE82AE2E3000F1CCB
tools\Newtonsoft.Json.dll
md5: 4647A8DE069A11B7E3BEE67F65FC3AFD | sha1: B8238EF9853F9662274D53486AB1161FC435C4A3 | sha256: C3077792DBA9EE047336324BFEC9D0EFBCF3E3330F5CC96A2F71DA98461A4768 | sha512: 0E9F288425EDE1458729146E688281178479F4B01B11339860BBDA65C8BC34C68F758AD613C1F502F9F29FA290C50D6F5E95DFE55132FA4B18C9598449858DD5
tools\Serilog.dll
md5: 50218546FF83314DB5E4E608C5686034 | sha1: 08E0503069D6A920AA841278EC94907BFAC6378F | sha256: 4EBAA9DBC70EF8CCC81B8987B09028DC737C94922C06D8000F5A13B7DDA74AAE | sha512: DD79CA5066CC84B464F9E29BD924DB829D4061AEAE97750DA37C2BDD7408792412C04B685BCE638FC10E6B0FAC4D8072FBECBBA4C0B9DC7DA4C034564D5BC313
tools\Serilog.Enrichers.Environment.dll
md5: B67B8CEB937B676CAA479B461755C825 | sha1: E23F8BC549664D986195293319EC07600F365A61 | sha256: 314BB1BE1636CBD00B549AC7400AD3D95D28C45DFF9C9F157C2D0B1D70E48FCE | sha512: EB75C0D1FD4E1F7D3798FA9D003A754F933FD37140CA8BD256C5F84EE541D04C9A4BC2647494423BAB570206EBCCD9F7D5BFD05EBE7B8F91AC88AFD68606ADFF
tools\Serilog.Enrichers.Thread.dll
md5: D4DAD0BA752BA7305B0E65EBB63BBCBC | sha1: 8150E021CA36843F733EEF3DF99DCAA9C764DD35 | sha256: 6F71E2EDBBC884A1C52A3FCDCE7F810F0D2BC1CE99B9DF5D5876A91E6277B82E | sha512: AA7D0A81158E5F210F43C37AE51E63159C8D8F43828A63AC6A8FAEBD2152FEBB1F19AF204FDB9600D649F507884546B6DA6ECC509098AA1990A449D7D73A1EBC
tools\Serilog.Extensions.Logging.dll
md5: 73683FC93D00FAB95D5302A5E5D10792 | sha1: 8A368C2273892336DBE09BDB79AF9A0C68B20638 | sha256: F18FA52174B77867A8487D39E06C53C2357551DBAFD9390E3D58B2C8086B40FA | sha512: 4A3AE772AF514CBCD5442A652A65526C9546D4FBBFC71E98757A8760C93F73333BD7C8727B7A4E9FFF4190ED001D63A05BB9203D9D7C823057EC7DCFABE2E164
tools\Serilog.Settings.Configuration.dll
md5: BB470BC6A2CEAEB4E8E6F2CB0ECE20C5 | sha1: FF0B96810984C1B867ECC12DD732C10741EB6F62 | sha256: C5449CEFF998EF391F6BE48AC0730E1AA6626D7455BF9473D29CB6B501155BAB | sha512: 35A94CDD21A967D18FDA6478ADF0CA235156C092E332E199F051FAE7978974B29AE330697839F131B27CD9435F4D5E57A76D28FC67B9811569C631D6323AC69B
tools\Serilog.Sinks.Console.dll
md5: 699E454EA09127EE1E5017A75248631B | sha1: 6045C98FF80F43BFA56FF1C9E63BFFA6B6247BB5 | sha256: 93A5C6CC93245AF760BF8393AA32D35B623170E3C42E01DB436A72B9DF1F37BF | sha512: CCA27DDBFCC6790476DFF7A3568B4C81A75A586E8DE8194C33F5B215AE04AB65EB0BB27A1FC46E448D00573F16C348D9B3635BB851CCD666D8BBCD49D0DA37E6
tools\SOS_README.md
SOS and other diagnostic tools now ship of band and work with any version of the .NET Core runtime.

SOS has moved to the diagnostics repo here: https://github.com/dotnet/diagnostics.git.

Instructions to install SOS: https://github.com/dotnet/diagnostics#installing-sos.
tools\Microsoft.Extensions.DependencyInjection.dll
md5: A72327F1E62860C9B00F02924E7F2843 | sha1: 95DBC9622034EC56FC28FD678D30F42D5DD14444 | sha256: 52C47924D4DB541CD50758151A7C561F3767588348DDE4000F3BE8632406214F | sha512: E35741CE9272A91C575208BE5051606D6530D49D5E4BADCDD7DA6253D4482447DDECEDC4643B8B89D1D181F54F633FF15704C455BD0A7A7EE1DF82A079373B7C
tools\Microsoft.AzureIntegrationMigration.Runner.dll
md5: 833EF8580EDEE371A0C3303A495BF159 | sha1: 89DD3EA0028471B7867B47C44F7DC2F8E9F6348E | sha256: 64471140F24D2E3B448B2610CE086D8961CBE34A7E68A85BD7EF01D841DBCCC1 | sha512: D863068191916FA4FC1F036E0A5C6D14C5B7BAAB19196D6E99B1AD6BDC7AFB358F1668F706521452370B70BF6601EB689FE8EC13303A4BD5AFFF3BDCD56A18FE
tools\LICENSE
 
tools\hostpolicy.dll
md5: AE45D80723A486A08E23B8BF40E0A2DF | sha1: B52A1EFA214889507B7A423478E87DFFCF700665 | sha256: 17B3877355F65CF238280361E6DB69420897F0C7FABBC675CBC4D7DAAFA644B5 | sha512: 05400AAE5A72D11C4CC0433B3DDB8363B42BD5F4D6AAB0486821D0B257244DA3B68B4860A0FC866C929EE565EE9293616F55F3777195F6A1258BFFB88344ABCF
tools\hostfxr.dll
md5: 59404D68282A80F42D9C1F01E062D1A8 | sha1: A6A78324A01A9D988E7A9E9E78FD68CEF7A7BBFD | sha256: 34EC159F4F8EE204BB151EE7DDD1712E685019412645A1445FFC4B033AFC7B9C | sha512: B7843B7A3CFE6788BFE152C21ECABB83BA064980C53211DEF4B16ED33847F954A110B64D96FF5B7749AA17B5E01A87E282A1A1170ADF6580FB1F640431645D34
tools\dbgshim.dll
md5: BA9AF850961F36CFD062D61C234EAED7 | sha1: FBF2B06E54C31ADF7072903D2080F13C2E5BFB1D | sha256: BD22D17D7339A1FBDD8B76C52F86337859EE1B0AA0EA1649CFAF7A05D41326BC | sha512: ADA8FFA4C5ACDCCDEB87A193BDD02F7844A7C29AE69C61E0A1C8A03C778FBE6AC8B4CBD5A232C33C8410F7F3CACF02100FE7DBB54FCF7E228322788F4B953BD5
tools\coreclr.dll
md5: 842526E327CA0FF5EDA08E3AF393C66E | sha1: 668C0B1B39EA2B2EF6ACEC5D3DCC5F6CDACE39F9 | sha256: 0F52317DACAAECDAB1DEB87F0FFE316A35DB05F3BB7A9C4F0E2D89CD3139B392 | sha512: 67143CF13B1898A9C74CB57901E50D381E325569FF76075F6BD409AEF5378B7E7585703B6744709CE3962A7F85410C27D453CBA917AB3F2D08BCB680EB6C5C17
tools\clrjit.dll
md5: A2F705CC21DBAE8CD654EC9E5CECDFDD | sha1: 4704AEAA9A6128C5D6DE8E6C56550FF45008FB81 | sha256: 70293942C4896AA383EE99A0588B1A2F49977B209F01F7228C1797E39A672C5B | sha512: 277AF5E8D865C67AF060336A0B98E4AD8C6D21C845C92AA0DD05AB7AE8C019F9590CF2BEB49C3EC0D5C36DF0D90B49DAB1856A72893C65F6F9FCD013E52F2877
tools\clretwrc.dll
md5: 7E6F17209504F19F1ED806A8614B02D7 | sha1: 5F6D4F97F75849AF47073F821C6CE9C99331E512 | sha256: 20221606623C17A3648574BC3DB0712D5888619F3A6EF8E203E96780D3B78633 | sha512: 8ED970B871DD20ED50F708648BD3027065B41678EC1D5CC1579E6923BD19F99D9F73A2DCDE793D29EE52BD4E607986A2686E8F7ED6A8D081FD4F2696712C6440
tools\clrcompression.dll
md5: E912BDE97B262D1C183CCE3DD31C0582 | sha1: B720D82317BC073AB8DF33B95FFECF496ADC81FB | sha256: 98C2EA3CA1597A87502A8C2FB8231FF069723B374F5DC80582C66335842983F7 | sha512: FD31C091795BC94CA194EC1B525C4824B881BA6FF2CC0DE56B36D6BCFAA2826D1AA540F225BB1358563D643040092313ED3692D3A4D3E8207A60E6EB4FD05805
tools\appsettings.json
{
  "AppConfig": {
    "WorkingPath": "",
    "StatePath": "",
    "FindPattern":  "",
    "FindPaths": [
    ],
    "TemplateConfigPath": "",
    "TemplatePaths": [
    ],
    "PrimaryRegion": "East US",
    "SecondaryRegion": "West US"
  },
  "Serilog": {
    "Using": [ "Serilog.Sinks.Console" ],
    "WriteTo": [
      {
        "Name": "Console"
      }
    ],
    "Enrich": [
      "FromLogContext",
      "WithMachineName",
      "WithThreadId"
    ]
  }
}
tools\api-ms-win-crt-utility-l1-1-0.dll
md5: 54F27114EB0FDA1588362BB6B5567979 | sha1: EAA07829D012206AC55FB1AF5CC6A35F341D22BE | sha256: 984306A3547BE2F48483D68D0466B21DDA9DB4BE304BEDC9FFDB953C26CAC5A1 | sha512: 18D2BDCE558655F2088918241EFDF9297DFE4A14A5D8D9C5BE539334AE26A933B35543C9071CEDADA5A1BB7C2B20238E9D012E64EB5BBF24D0F6B0B726C0329D
tools\api-ms-win-crt-time-l1-1-0.dll
md5: 6B33B34888CCECCA636971FBEA5E3DE0 | sha1: EE815A158BAACB357D9E074C0755B6F6C286B625 | sha256: 00AC02D39B7B16406850E02CA4A6101F45D6F7B4397CC9E069F2CE800B8500B9 | sha512: F52A2141F34F93B45B90EB3BBCDB64871741F2BD5FED22EAAF35E90661E8A59EBA7878524E30646206FC73920A188C070A38DA9245E888C52D25E36980B35165
tools\Microsoft.Extensions.DependencyModel.dll
md5: F74F5B36CA087B5899B0010C5BBD05F0 | sha1: F5308DB0DA95CD5C7EFECECCA7CF91AEA86DEC24 | sha256: 59FEC0AADBD3A601B38917B8E971B80F95A5F5B619E095C1BA7A11833C4F8EF0 | sha512: 4E718D8CD762B2CD7E78AB741D3EAA4F3615615C132D2C3396975E6FD7FACD8D230066F67B2E5A0E0F02C136CC61482A701F108C5788B5F24B293B52225D674A
tools\Microsoft.Extensions.FileProviders.Abstractions.dll
md5: C6F685D187C9028D86D7E44637D037A0 | sha1: FE8FBF28F8A9FF35BFB2AFFAEFC59EC55D76262A | sha256: 3D2BD1A95D00E4AFD167ABEBE4C3283BAB67BEB1F234187AD7A83AA1171692EA | sha512: E26A5F2043113FA7FCEEC193F4914EB5D27A5F666332ADB1C4F0C69DFA38AEEAE2BB117FF99F0FBF6946B245001697D44D0B7AF989DCD91CDBA008D9C62A8D30
tools\Microsoft.Extensions.FileProviders.Physical.dll
md5: BD2D74E6D0B59A15897273B0D4463CA7 | sha1: 14CD4688DC92894F988F32D72BDD09E3D18A42B9 | sha256: 2555E80CE9744CC3CFF0A150449542384805842A7F891DC6E930814652A6FCBF | sha512: 6921482785F99C6F787BA0BB80E37464D7BA21E086CA947385A1A2777B79FD0A06D941377B9F3716B9D20424DE8078B5AC6A6BB5BF1F9268E2AF1209871733E0
tools\Microsoft.Extensions.FileSystemGlobbing.dll
md5: 7C84E0999CB4471851F3ED5173BF7125 | sha1: 6338CD0EFA36FC07675388E79043C8E8B1F7AB92 | sha256: 19D33DDAA51311FE93D5C8137826506122E41EE2A4E8B703050D726618C23685 | sha512: 5E0F7B01C1B339512279D97D1F209319113A1537FD8AADD8065254357520EC2124A182C176C8FCDA1FB493BB99A643842AB4F82ED7E59B4434C880CC13604448
tools\Microsoft.Extensions.Hosting.Abstractions.dll
md5: 9E44CFB3BD6709EA416A27FD23B6B4BE | sha1: B26B817A564E3DC5E2A447ABD284519ED2C60EFE | sha256: 74FA750FE6867090B688A32DB51DF885AE04DE81217CD8D2178364CA78E58D5C | sha512: CC269C783E25E26A31434E3E1D7F4BBD586C9DA141A6D6597E986403FD6F24F07199E83CA663A1A32225368AC5AA98E35939A38F1057D1452A4CEE4D43E32535
tools\Microsoft.Extensions.Hosting.dll
md5: 3E24034AE2CAF0F6167015407931EEAA | sha1: 42EA8D99D90ABE87ECDA1C06823B5386B6FA1FFB | sha256: 9CCFDC5D983464375B2515593EE01E082C8EB760A6857634329FA2636994D2ED | sha512: 1A0F5A3D458E36086BC2A1B2C481B3FD073B78455D4EE35EC6CF7424F75E77A4C87B4676FF516F360E78EE0135E67E98D45086A32A59142F4443D83068E37165
tools\Microsoft.Extensions.Logging.Abstractions.dll
md5: 4FA37CFBF212BA13F040E668CA0875C3 | sha1: 7F6BE922F4DF763107A58F151F01902BF134C9E6 | sha256: 04AF2A1E576CD9D38B9799A6B91BB216807CB0C3516631CFFE95A04C398F1C42 | sha512: 1F43D8BF6FD8D9A8C500BE525E3EC3AE2959A5D70AF3034626A4556E473EDDA9FBEE9B66A78B4FD45BC338066CCBE85979641627F7F2914ED8F4A1C0DAD8278E
tools\Microsoft.Extensions.Logging.Configuration.dll
md5: 82A09D36058F76A1834AAC15E4396069 | sha1: D0BCEA327849CDACB1D7DA7F1A600DDD170F091E | sha256: A73DB37C22D257C0BC41F24BA6F1D12BF69AC076419AC354FABD8E6C0BBC3979 | sha512: 9F446AB1B05A17BC4E57362A17B5C08023E8791C00CE07786169EB7221BCC4FA08BE20045B72DBD1EADD2166BD5FEEEF148D44182806728DBB1A925E9BE3AB1E
tools\Microsoft.Extensions.Logging.Console.dll
md5: AD8C32FC75AF2EF41546C3D6661DDB93 | sha1: C186C053EF87AE06AD8A31A6E2C330D9CD179AFF | sha256: B5571E4FF46D4F3B845A01A78A99E25E2C6C06D028635E107B04BFD2373E5751 | sha512: F354FBB8A1F16D6E3D70CB85CBA0C920F81A629EEDE08F7813F8CD27B9C1C99F7750D7B0599FA91E127D45F97E6328B9EE6EF1C5232A2944151B817645DD1E68
tools\Microsoft.Extensions.Logging.Debug.dll
md5: B954795CDE9500D989D55D92C72FA360 | sha1: 3A272907FFAFA95C842086BFD65E97D72B37BDD2 | sha256: 4F0D0E23D411E0E9799170CC76D6ACB9ECA46649637BB54E94C0CC6588C19F7F | sha512: 55D6901D854108D63DA88B75980B3E844728F08299FB3BB20AA2FD8811971B1B924DC85CA7441767624AF2F417E1C741EE32C80027A9C799DEA73AEFD38508ED
tools\Microsoft.Extensions.Logging.dll
md5: DAF372754B816796D15ADAA3329588A2 | sha1: F0BFBF5662C451AC9486545C3111BAB48B740E32 | sha256: 055CDC838A914CCF350CCDB45EA08EE2AB4AFE4029FF00F2CBD5E0C2827EAB45 | sha512: 76959C9FE22D296155624BE0CD8C92FC2A7F918BAB9DBEA93949A5B3876D3E1DBB28086652B55ED8DBB59AA47263C34E0E3FBD92DB31C2BBDBC09F48B9964140
tools\System.Collections.Concurrent.dll
md5: EDDFC9C7EAB6B2E766F3FFA112CB99CC | sha1: 170EA7A221803B80A33E0A4656B529ADAC530004 | sha256: 6799730D4C5ABAF9C435066EB6D9F2846E0F1A92B6A768C2A594BE52ABC20369 | sha512: 347237F8305B2B971D149E232F81307A7E14320071357F4D15D408F824BD4C6E887A2A455EEA603D71FD5185CB06EBDD91F3C6309A5BF701D6C72DC7E3BFF7F8
tools\System.Net.Http.dll
md5: 4814B9675333EABB8BDC95EF5A60F2D9 | sha1: 48C353DAFB04DF5892D21325D040C5F54F5535F8 | sha256: 1F85370F39927443C617AA90D23B39B0C044AE7F36948405CD68876D46D32ADA | sha512: CE0B84828576BCD1F4877F4914805B5BC1802D6680B6875E772B95FAF260CCFB28AC8E05EF65C4B7E63FA8619ED67C7464A8D05FD281761333ED621E9EA7485A
tools\System.Net.NameResolution.dll
md5: 88B3E035E0F3E1160CB7D1EBBA7DFF8E | sha1: 83556960B266C0EFBF490820AED7E070ADA2FACF | sha256: 45C013BDD43E2B8158C795D871EF9B99F926F8937B3B22746A7E5A5B231B5615 | sha512: 8263414256BFCD3141ECB0493DFCCA9F8D3598F5672BF3ED2D088F1A54E5C215297514B02AD4387B1F964130568E88C999818D28AC1366E1535D249D712350C2
tools\System.Net.NetworkInformation.dll
md5: AE7BBE7D7985850EE6FFA5385D5850AD | sha1: F60A39E988D48E64995624C8F3029D04D1717A05 | sha256: 805894807FC3884E732D649E68F9182577D35922FF6AF40D38C5BB527334EAC8 | sha512: 03D7FB73F59A24CEE645C8BD2CB3149D58BF623108E22BBD72A9FEACBA03FAB6FBAE6574250CB06AA8B9442E5C597A2E586A211FB182CAF81A0B5F54ABB2CCB4
tools\System.Net.Primitives.dll
md5: 3B0D5005A8DF65D9E0AC9061053BD3C5 | sha1: 09BAD947D9ED387A53A04E3FF3FB8CB0EBEF72BD | sha256: 5BA799DF35698B41801146B350E4E5D115C5BBF5A98731B28505E2FDC1469308 | sha512: 6E1C7368628B2AA70B5A5B93085AF4D8C6C2AE02E0F5A97B37B7E040C39A7BA9750EE772C1DAEFFA00F40D3231A6D99D1E0D24BFDAA0B034D4EDB5EF65F13C36
tools\System.Net.Requests.dll
md5: F50E8697C872F17116F595F071DF00BC | sha1: B2620C02A1FE36907FC88E618B6F4F262EDCF192 | sha256: 2603B170DFE96B275683CAEE553C70A6EC83731E3EAFB16C80F5ECA5CC341309 | sha512: 7D15E73C41E082081B0638CAED4C8D011D8D554E3090140ACD69398A8C2FEDE79F9E7E071139BEA0D60B2558075425D804A4A982265D5F1817051C692E550712
tools\System.Net.Security.dll
md5: 03B511A1EE2455B13F7F60DF2D48A830 | sha1: 0C48C8BD1AADFF27F9EF72BE513B0E8240EED624 | sha256: FDB3417FE725A01A0167CE0E51D205774BB837A006EE7A56A73C9DFC7AA17096 | sha512: 65941EF16F9C2749DABDCB39C359711529A9301A7566348B84FA7DDAE80D644A9805E15BDE7F85996609C7A27DD0165B9EB070B02DA1DA9D5C315E529C8D3D5F
tools\System.Net.ServicePoint.dll
md5: 342ECA073A3831832971C9607E9A894E | sha1: 1D93946CB094C443A90FC37834810D905728B5E9 | sha256: AB86A3B674014987DEB1C952095CCD1B5032CA9F762DF3F7338460725D701CC7 | sha512: 5722E343565CC2A6FB86A06EBDA3D0C43C3258C902ACFBD55017081F94061AB34B81AD79DC889BCA5E999A0AEA5313948E2412453457C8437E6346F0BA794F13
tools\System.Net.Sockets.dll
md5: 9D0D7CB4D8B0BE8996AAAFAE391F9E6F | sha1: 7547D0D1266B7DA635E6CEDA71B47285AA8C0751 | sha256: F322A62F08696EEFFEC0DC3C536B94F90F0604CA3598264E0AD5F76D99FA9043 | sha512: FA8244C66710213F0E7677B96B89710649C716C0D10298F48E2BE16608390687440DEF0F15C90B92F80D6B8ED8F19E37A45B6B5C739E61FDB536EE17BF574F20
tools\System.Net.WebHeaderCollection.dll
md5: 120E08B389941D5B48B16B3A4B0EA2CC | sha1: 7742F9E921C12E48E0EC884F43D0F9BAF8D213F2 | sha256: 561DEF5A4497A6A8E2E85D5FA8379D59427F016719FFDCAF01D3485D2101A018 | sha512: 8C6DF5E6F3363D533ADBB71C42AE67449C5F12398E04093EE9F8670375A3706D219F6965C5BB9B21FDEB0C63B033687F089692668137DA0F067442E1509D5BB5
tools\System.ObjectModel.dll
md5: 8972E2C5E2AFFDDFA7CE02D4B6FFEC88 | sha1: C4E6C96AD2CB9602DD094D64630CC67BF454D012 | sha256: 70B29BE9F2DF9BF2A11303A3C9E8CB830CB5026251F820AA3FB302BBE78B6425 | sha512: F512E35A2629D3E799375933CAA44F606CCCC92CF004365D1459EF1F766E7362AB0F6838B242013A531FA692D3811E7B02A1AA2E374E090186377BB0FC3D2790
tools\System.Private.CoreLib.dll
md5: 648F18F67561CBA4FAB97A8F9A7E9B25 | sha1: CCCD708BAA4437230A2C8E0745F934C7AAA27B2A | sha256: 9981ED50EB2EF74F881BDBB460531B7A0BEB305EF377F536346DABAF24A8BD51 | sha512: 7AB0404D56FD1D4478C8A6A3771A5D696843632C1B632DEB65379424BACB370A3630AE6287D49E6F88875BBFE37441E2B2C0085AE7CA75D627D93D8B0D93D5C0
tools\System.Private.Uri.dll
md5: 28A0E6E08892691506B1934EBF0FA01D | sha1: ADBB76692EC03E7DC25BBF28F309D0078075D854 | sha256: D491A70BCDB3EB340F55B7C8F2C783F9BB220249DD9328E4690ACD3328E08DA5 | sha512: 4697295828DB00A559AC5D35373FBC2229B4911A6E17A0C9A40B89F6D0723CFB3BC40BB57D70A29655573F6D9B3A625FA6C8C201B562B81DC0D45C5D355BBF0E
tools\System.Private.Xml.dll
md5: BF1A58C7CF8E1205E5BCBFDA6495E314 | sha1: F2E7B354D5735A46C9F08ED26162A6B766EA3D85 | sha256: 2464D849622C3F502EF0E6F34FBA2490A3E9D4A233AB200AB1B922DD4B549D7B | sha512: 1EB2C8D7085DA9E15072845DD6570C2D7E1BF5EE3A21037775A354A05A0AAC7BEC9C8B82CBAD4C9108200B4FAAE0F34278486BB44F614405F0739611B0D66981
tools\System.Private.Xml.Linq.dll
md5: ED393E66CB04D39FB97D35F97EB5C232 | sha1: 856245F9AED74FC3E5D5233F73AB77D56E562026 | sha256: BB1DDCE6A0431C9A755F819EE01F97C8C6C315AECE38B1854560A9F07BF17492 | sha512: 20D403126116041BC612F8CF4BDBDD5D0184DA217D34F33585CCC11F3CBB332D344F61FBF068BF22C1DB817D6F0E695D1CD9BC81CC22902C2A780A62AE1EFA55
tools\System.Reflection.Metadata.dll
tools\System.Runtime.CompilerServices.Unsafe.dll
md5: 2AECE005FDCD6AC28DA0A58A186C567F | sha1: E833A7D5816E931020DAE9F28F01CF1BCA933BAD | sha256: 09D4BAFBE6F61E5C5D393BE6D9ACEBB55252B92BD068CF2FD6E97BCDB83A4317 | sha512: 73A0CBCA0A0D913F0ADABE06E1A05C29A6A1182A089CE783B13BC4CD0B3FEBBCB58D8263B16C4B55A355E9680F7C481D38E121735EA8642376F4E92D22E39679
tools\System.Runtime.dll
md5: C02CC665E2C4303ACA84A5DF7BC326D7 | sha1: DFB7488988FBA422B928A66DD665302252340BF7 | sha256: 10C85179B7AD262BD647BE08CF95653D2C0EA1B12CF014CDACE518F4965AC53A | sha512: 8C7B022973FFD034D9957C00976044BDBB2B1F0EAABADC0B40B0211B9FB11E44D2107BFFF01D418851641709C49E5558A61CBB0B73722CF65CE9DC7B092B3A80
tools\System.Runtime.Extensions.dll
md5: 858AEB00B38A41EB7892EDFB58F57E68 | sha1: B75D7FAB1AC8BF68B3318E2CE8265740E1E80433 | sha256: 65BE4AC57DFDA0ED825837E2964AD04ED2101333AA182C3F05DA347BD17036F8 | sha512: C1ACCE63473002B74D1092D07862A676FDF4DC9A892C8C5B573D49B8A7A7FDC752FFCD91612B7F433041A35CA0467E3DB1DBD287D1D6677A0B8691A1CA4E08EE
tools\System.Runtime.InteropServices.dll
md5: 317AC0448B83C32A20D06146B7619338 | sha1: D835BA93011C3F97F99F83AFF2EE6AE9E81700B7 | sha256: F23E02732E698FE4D9F95123E2738071D328F3212E84E68DCA8484BE7C2AE035 | sha512: CC50ABD4A067BB91E2E5B89A5F127FB520D28960E5F46E1FF06F1250466E9368E68C453B5760D063A0D8F0917953F96726C220058D5FF9C4595C5691EEF75819
tools\System.Collections.dll
md5: 3A5BF1DDE0A4816395F2DC32CE561437 | sha1: 80E996B17EC80783F0CD9A6D59F9521702BCA92F | sha256: 5233CF37850B5A99D43C57EA9E5C464E1C5CAE3D8AE5D7EB48EDEC889658D810 | sha512: 1595CC4C45A3E2DACA10D51BAAE582FCC21471FD0697E2EA76F74929808898F36EAB1A82615715E0CB2DAF641A57567AAC06AA01246EE758966D634ECD225B02
tools\System.Collections.NonGeneric.dll
md5: 65BE34FE531AAE5ED1599689F9D310AF | sha1: 9D5F5D2EC8E1AB52370E592C172F3415FD912701 | sha256: 112CF8F6BBDC83332EF8FE632D83E0C074FBF2F5357AF545AD9BB73B27098899 | sha512: 14EE84F054FF63654F420B22AA24DAD7F5BA76BFFB7902AF92EF5822073F70640E456D54178758BC704D01D41F44BF76F803CD53DD11C085BFDEB470AC5E62CF
tools\System.Collections.Specialized.dll
md5: D556815F04EBDF13E608BDD2B7B1B7ED | sha1: 964D04DEB21B208A2376DA7EAA5A047A680FDC27 | sha256: D375F2E4FDB9D1B98CF0F73BC1B8533F466BF0BDF24D1101792E42BBC7C8DC67 | sha512: C2DF6B6005635EE40C9DC7748EA5305099E668C27795F8CECCBA8E805DB3AD23A31B8C16826DA17350A3B4257EABD2AA6DFBEB2DC257D26A8A341D86BA74ED9B
tools\System.CommandLine.dll
md5: 5DD567CEF84ECF23BBBBE72878B93059 | sha1: E2FB13C9A6C88F1C10DA75A780F485C5882E9ADE | sha256: 00828F3D419EFD63EDFE60EA4D10BF6E06B11052F5B73BC238B47DD1CA3C52E4 | sha512: 788DBB4CCBE69A502B1B4522F2AA2CA929A34F700548576D542F8F4426F62FD9F4A7A5B1C2D76C811376B0219D1AF283050583F51A0EE37E2FAD0F6D4123D898
tools\System.CommandLine.Hosting.dll
md5: F6F0C14D36EA95BA55558A3AB998F4FC | sha1: 38310F8CFAED51F0507789D269C74B7DDC7B56FB | sha256: AF4DF459ADC00343BF4B64AA2C54C70C2E8893C2ACC72A6720F2DF4648119EB5 | sha512: 22F9517B3B75A70DC652C7FE536FEDAF850D01E163621429990F993B1064AC1007438D977AF616B1166C49E414983E404D56AFC1884D51182647C93CBE4332C7
tools\System.ComponentModel.dll
md5: 37334684A5F5AFDE12D5B1C6D7FA01C9 | sha1: 65FB0281670FCFA9E8E218F16B786C0757811043 | sha256: 66AFE9973CCCAFCAB9683F6E80FD509F17FF5255E782639C7F031E38482B043C | sha512: 032A7F79CB972737643EC09740C62CB80D70E2DEF73ED826D5FF3EC75BC245DBF8DDAF4A033CAD2D05E4A4620C3AE03DF8F48522E2097B3AD39399E514F49CED
tools\System.ComponentModel.Primitives.dll
md5: 7B1CF24E09B794A513558A41611938CC | sha1: 9AE0C558CA1F4DCD136C17966993442AE4AA1C62 | sha256: 5A021C2A7EDE9B4E14759DBDBDF7A588B1C7ED85BB333A10C0D362CE8A04CA75 | sha512: E42AD456A2314D2B2532ACD123223A87D425242358C246DCE1969FA812927390867B7EF8C2F0184682E7D2736A199A2BB5C5D4B223F056E96564515760DE9412
tools\System.ComponentModel.TypeConverter.dll
md5: 4F5F5740DF12E1415146351659DA85AE | sha1: A99303876914C1FACF55B4CFC4BBBEF60569AB75 | sha256: CBE69A34B0C76505072B1FDDD6FE93DA8FDD839183F67CC35F39CDFF940AF372 | sha512: FB709FE3F490328F30E439F6643F14B2996782D56180A9E15DC7D3908F03AE12FC4364797D3D41F99AE50C15169019CED3D58BCB2BB3E2611327973C6F0EBB03
tools\System.Console.dll
md5: FF3250E94876757EFCCAE430D332D052 | sha1: DE33B2117A1EF8B83D6895982571606D5171B4DB | sha256: 705B6112E435F6EF5426C6E810306DCE4D754F3055A7338F227763DD5C0D5AC3 | sha512: 857DBFBB75A0D80A1BFBB78C189C3035E196B71ED0BD32A2A88B00F5A1E8E8C7C757F18EC91C58E6FEE19BA6B86750883777A735B1BF8F1DFE3C88558A47D6AB
tools\System.Data.Common.dll
md5: DF4B97D66D6B2D20FE7CBA569A99B26A | sha1: C0223EEB48B8A5DFE70B99E1B4604CE8ABD76329 | sha256: 7354966419BCF4642F659AED0A7AB4732B66AABCBFBF4AF772D5EAC8C645E142 | sha512: 0F3753890332B9064921080DDE8594C202ED6F9956D1AD57979265EEFD43CE0E51B7D1FA21E2C449E59C83F491C9FF8E781B9B9F20195228FFB87D008FE18D46
tools\System.Diagnostics.DiagnosticSource.dll
md5: 474DB4573BFDBB027CC0D6CA286CA775 | sha1: 92C02FA805FF527713344E1401B7E663B7984656 | sha256: 5E4E6096992C7C1B13A8DE2A00C7DFBF3DA3F275ADA43063ACB8D1C82BAC298C | sha512: B8CBC441A80400FA285CE9688CD4E2D221AEF6C51B3CFB579B7195CF7CE10BD0DA1EC06945082905E6938DA33DFB632948E852FB8E07DAD7F2BB9C95DA0BC9B4
tools\System.Diagnostics.EventLog.dll
md5: 1EEB014DDE632D3DA7B6AD8BD27E2E42 | sha1: E8BE0384030221FA5987CD8AE348A1479520C358 | sha256: 2C92FC353A25C8C3420C7D88A38E60488E81881DE5B845F1A38E54FC7B5CA706 | sha512: 35B88CCD6559C71FF652A26E6CC95F1844995EDDA405A0073A2167EF0775FEFC8960BCB4929C0560C272A346F8A848770C2DD1CFD58D921ACD61C548344C2785
tools\System.Diagnostics.Process.dll
md5: 394B3E9DA6DCB9C2BB753BF27A9116D6 | sha1: 772BF3B05DA77ECAC6F49E6E10F306F1A0078092 | sha256: 13B2D23179652D618969AD42055BDF1B7689F72E7DFE6D0033755369F8AF9E17 | sha512: 207609218B04C4BDF26205B4D57CDF94211D13948603738FFCC0B83593E2E1D54085F7E7F1983A5B50F66C574DFD20B4E9256DAB6F32A7A0AC51AEC7F34AE196
tools\System.Diagnostics.StackTrace.dll
md5: B99D7371446EE0F27F2269CC5904AABC | sha1: 1A2F7B0543A61D45BF2B4F1C093A7B8693D526E6 | sha256: F5990812C4F914E976A82E6C2F5D5ED612ED6E75976900F509FB8F9BF32275F7 | sha512: D0E7AA735441D7C0E7EE111238DB9DE36FAEBFC8043915A3C4F12987B005D78F395611453FB2D0C3F64BE9971FD6A00D203C7DC66EC4797DDA6F0A0ECDCDAA0D
tools\System.Diagnostics.Tools.dll
md5: 658CC76667F26F47D5F5537DB4388D5F | sha1: DF749E7AA7F7155E338551D2579F0BA35EA21B38 | sha256: B5EFAED67A8FA1A61D6567B3923D1FEF19EC5CCC7B3A1F0EA70AC25C8D9A043C | sha512: A344E5B02D65DACDED7E1DFDDFB7162235DCC015AA2997CB0595D27ECF0031CED13CAC32A516E2746926DF83C3D7113597A0686D06BB2A991220A446746DC1CC
tools\System.Diagnostics.TraceSource.dll
md5: D0436B84336A4779EF0E38CCA8735DF5 | sha1: 04D7A5C0191362F05739A8F0FAF986A52D257D4D | sha256: F2ADB95F110812992B19684963646060001EC4BF909E210330F9C521FCE1FDD3 | sha512: BE69A0A2756D22421E78AE9D54E5FBD88DEB673447605152820E33AA0C0ECDB33983ED16FF6442CFDEE8708BCCB08FD4754B235AA53B9AC040BCA5F2687F3776
tools\System.Drawing.Primitives.dll
md5: 545A56F67C86A6AFB9597A526B68AB7C | sha1: 5269ED3EC23A5756E0087A10F66178E57EDC1569 | sha256: A2111F5835E0AE1D7AC1922A731F1A6F25D7AF0DCE9AD18A6EF34CFC31C78A71 | sha512: AAC712C49EFDDB4A78C30D9228640A602E80C75FF2B78A6B4061DE249957F1334CE1BECBA938A492334C7B055F085BC3D819F8DC189110AEB39034DF6DB1FD34
tools\System.IO.Compression.Brotli.dll
md5: 4BC42D66CF45D7A396EBA9DE12B2B251 | sha1: FC8600D1EBE7AB8D11168B60E9EFC4CFC355B9F3 | sha256: 0AD5C3B162144C6473842DADBA3F76B4E9BA2D227BDD7246E5812F597D9E8DE9 | sha512: 7DB43CA18FFB83416C1B7979D10AC9D60E864F4ED6B03FBB9079095AA7850BD2412F06F9450EBE5DF42510EA6B0BFA584B7B7A0CF583477A4B53C51959EEB27D
tools\System.IO.Compression.dll
md5: 2A352D85EE08FE7F09A443F78283CC31 | sha1: 2043A63748FE9A2B3A84712FB2623A8838E6F8CB | sha256: DAA7C2DBC9B51154F87B6C818D17038EDD238F2C162F2E86CA73874A2DAE0355 | sha512: 9BC52D23E3785DC90023D5E3F49E9C2D79EB15F95809C287955E4857ED08AF5045A73968C175D7554D80DEC4C5A5E65F0412441D2E6AAFD6A9833FBD651A7245
tools\System.IO.FileSystem.dll
md5: 8316BBD302B407FD54E109491E8C0B7A | sha1: E366645AC75FF63AD8860DA47DEE35C1A542ED68 | sha256: 7216B528168240099887EF678B755FB0DB0A16F99C176D645E9E3F6B3342748D | sha512: 155DCC8EEE725B87687F6CC068496653AA7F15A1B3AABEB84E8ABC9578F6F9A1B571433D1DD1EC995F021F1BCD19171A6A751AF0A0677942965579CC4A4714DB
tools\System.IO.FileSystem.Watcher.dll
md5: 5C889DCD05BE813E58069FCBA7F417E5 | sha1: 657B331C6E134DB9C3AACACC8DC59AB3C281CBA0 | sha256: B67C5315F6D70BAB6665FEEB8D16722F74E93E2CC9198988A242B61DFA8546AC | sha512: 3182A012E2B352758F12A053DCFB475AC5549A67EEC142B0B7E9E3EB862ABFDF22EF9562EB3D3A661D89CCEDA5012965AE63A86806AA1FB2D417488BF2007B86
tools\System.Linq.dll
md5: 4B4F8AAAB5B17C8180BE98468DFEF715 | sha1: 7E2D74CE46041D11C9ECEC42162BB458912E9DFD | sha256: 4084B3D861432D889F00D2D93D7791B9766BD174B23F65C4A3F2DF7BD3D214E3 | sha512: 5E7E2EA12CC97BAAAA05CE55A48DF8EFF72800C9E93A3C6422A067CB285F2B5C73B1A26BB9B7FC57366098D9108534392024D4AA65A80D75C6FEDF3E12463455
tools\System.Linq.Expressions.dll
md5: D0905789F61B8DB4AD28711BA8B1A018 | sha1: B0E70EDA2F420B4277D6A54CFBC22A82571C362C | sha256: B808829F51E66743E489DB4585A1A8FD6FFEBC4F115588F35F34841D2DF8BD49 | sha512: 1A2603086D54C2BE8ABBE43647FF8532E91AA25B673ED1CDA099A0E22E5C2A333852812010B82673B30491B3CCA8863C1EA739D7E9AD64D960BB2B6C515FBA73
tools\System.Memory.dll
md5: 811CDE9CAF8218C15BE61047DCDE5631 | sha1: 43C8820A1591F1027E3BA645610633A16345CA2B | sha256: 24A1D0A5C22DA9CA3E1E47C9B1D124F717683BC585DD7353700E397138B367F7 | sha512: 241E8DA0D2E29F74161A714B227306A66DFAF43467FF8B71CD29C79F1292EB868036AA41733DFA39D70F7887BB9ACEED531D702E21C732A74DBD24562A01F0E3
tools\System.Runtime.InteropServices.RuntimeInformation.dll
md5: D0617ED62D50737662E5A13F031AC813 | sha1: F7335769A2BACE511FB727BFF3CAA61C46C78A94 | sha256: BF10464B21170AC3033E906E85018AB13812AE4C7847AB75A7FEA82E2B636A2F | sha512: 3B4A69A60E21AFDD04BDD2C88CE59A2922C0C27C551A5A3C59C1CBB06257035F7E5CA66E80FE031B0B03A2452E3CB7BADC7AD551939EE0B76DBA340EFCBE9102
tools\System.Runtime.Numerics.dll
md5: B6B223636A4A47113CD21714444488FB | sha1: 6AF58C016AF1CA6F6809F9B5E473DAE2E78600BF | sha256: E374D7B325CE31205AA57C9C0DCCE3F8692F0DC5EA4860540A75D14F2F64EC03 | sha512: 6432DFF210B4A3A33BAD811F8D19F24C34299BE923525832DA171FCF6A65D6902147A48CB93EE9E20BD79512EBCFF715C93D70DC93E45C44A72683CB62393A4D
tools\System.Runtime.Serialization.Formatters.dll
md5: C1A129F7F6ABAC0684D0E769A779E7AC | sha1: 007E07196FA0634045732043EFD97DC740ADC3A4 | sha256: D13AF483A69D57D9F31D19DFA71FBC2D5FC7299244EF5BCB490F163907A9EF57 | sha512: 570E67334BAE77B894F6956D363D31079F9FAD513CB15067FF27A98E1CA3D8EB413236E371329BF0B818B69A5DC12B41595AC6BF662F2AB36393D9E1767A1973
tools\System.Runtime.Serialization.Primitives.dll
md5: 48216305ABD4AF02B583F262A7B35289 | sha1: 67D947F29AC69FE9CAC11664516E98AA2E423DB5 | sha256: 25CD6BA5FD7C44CCB2DDDF22667AF9A94BD0DD2732560A955DC49A10F154DECE | sha512: E819AC5D161F613153552E0001F7B006076BB0CE96988BE09FC02BC1A79840C14CF3579EC8712BFACE695FA4910CF0EF0EA13F7E1B70ACBE52FD34261ED77361
tools\System.Security.Claims.dll
md5: D8D57B94BA160AEA9AAF9DB35ABC6399 | sha1: B35E28D284E208444F3FA23D54278DC563EB3CCD | sha256: F999D3645A041DAE9D46F9469B3D5AA732BDE7BAFE88B60F8DAEE2149071D91E | sha512: 0278DF540EAAB2762A3572CA01961065D5817C5B2A5E84D5B94D951290F55E674EB30757C0A16A939266F1367A1F954F934BB577F3FB18635FD0C44829F447F4
tools\System.Security.Cryptography.Algorithms.dll
md5: 789900524A969D06465A89AE5EED28C3 | sha1: 5563D2124A80A50DE9CC27B4B45B5A5BBBDB759B | sha256: 16DA91BF09511CF1366ED0ABFC157AE82E6D42D42A28B7D1770B6B95D859B52E | sha512: 584BF8270E05A3E5547B410E1CFF0A08340016E4F6698117DF09F57C8B4C841CE98776B83CBD285F56F255A2F3D093D44A6714220A8A784108B05DCDCA6ADB90
tools\System.Security.Cryptography.Cng.dll
md5: B7F2002AEBB03ED25D2F24EE2F377A9C | sha1: A0813B691CFAA3C1AD00C028E1015E6698BB6D93 | sha256: 6584DE041F0E9F91787C795F1BEE69DE839C4F4FEAC32BB8C55132907CE2E063 | sha512: 5CFA0D7655B3FD1F5A8AE17F75392958B13C08AADE82A73917CC3540003E0FE8A3E1253F9D3E1BC6763C823C6E6E141F044A7430A4CE1B73855956ECD7749CB4
tools\System.Security.Cryptography.Csp.dll
md5: D43798B7FD433491239921D897DC235B | sha1: BF564986A1A63C776AC88D71ED2C4314F961CE2C | sha256: F9A04C57E6C8FB227BAD3ADB62C961AF2EFD88BE35C15F37BBDE2927028C7F11 | sha512: B6BBEC46AF5FF2F78BC7C53471E9557950E3AD2551F8577968B9127587DACA9A916BD8FFADA0CA44AA5202CA92C3FB975770D7EC1962ED7D7188D101A59331EB
tools\System.Security.Cryptography.Encoding.dll
md5: 81D9624D879369F47F66586FEC971414 | sha1: 14330AA10E5E34D519D671967476768AEF8FFBE5 | sha256: 5AFE4FFD4090CD68C3C07636197E969BCE1D5B4B0D18150E4CEA579320095EDC | sha512: 611378614A26AA0E981BF6BB96DD01EF37FDD9A45129E69B43C10853BE27183994CD7479B56C00F660631EF6AB957CB4C2914E878C7F6F1981049C48A6F0AC3B
tools\System.Security.Cryptography.Primitives.dll
md5: 0277AB2F106290491374AD0F2BFD2DB7 | sha1: 71E57C86EBAA4A43A3D578343BD970718535F185 | sha256: 453BA1A6CAE401E954707157EC51B497A69A2F4F8350326850F1D8EF63814807 | sha512: C70534940F841BDB33CC65F2E4F28020DD669008FD804E746EBE6D01939FA1E395FB6BB314BE5B7EB6F659FFEB01892769FE97A360BEE9A84C84106691296197
tools\System.Security.Cryptography.X509Certificates.dll
md5: 50095E6A6E353D7200878DF228482465 | sha1: BDF21AF16D9BDBB2B753B6CB8FF42EB20FA1DC3E | sha256: B68F84545D9A5BD64A83005A63A273593068F84A7B6BCC9F7ED354882B303E8E | sha512: C3AA389C88D437D0A221048BF2DCE9F0AC109BDE54DE0B93C57340FE928083BC27B484315ED95F5D3DC034CC5EEA0DAB990E6FC4A69B05BA613D36DE9BE8DD35
tools\System.Security.Principal.dll
md5: B5E1684C00202964505E5CF344C8B15F | sha1: 157A30A21C13565EF1667AADCC484F3CFC8ED33E | sha256: EC394497B10BB94CD75515791B4029C74BDFD2BAA47EC6FD791036DFAB7F133F | sha512: C25C690E01DD85FA43E699931E72687937A4368E9AFEB01301D9BC06BAEA044E054F1C42415AC3D4779F2FA34ABC85FF4CC9C77E7183D2977636AA2811313D31
tools\System.Security.Principal.Windows.dll
md5: C78F3EAD71C484AAB8D8B28F1905057A | sha1: DFC6FCD78250219FD88088C843F44D89970112B4 | sha256: 781DD4AF5C12430971B2666F22C7B4E9BE8F16BF988DCE7A87C8BD2D5C3497E7 | sha512: 7DAC8BF507F63ECD32CACF997FD00507DE529D9F3C27B9E640195A98C3ECAF19F0BF87D3A5A24CAE287EBAD0B85A4B7649B54D3ED2F0088EA4AB7B9BBD6B2E24
tools\System.Text.Encodings.Web.dll
md5: 47F88E9A3E3E515216B0532F7BCE1061 | sha1: AC282CC5D253AAF83FA1F4FA1A8D929DACC95E24 | sha256: 8DFF6CEAD13394C45576BEB7D8510E4E8AB825A3C8CF1FDD2C6D9AE477C3013F | sha512: E76C322E3DD0DDCF4E9A3013C4B70815048D4C5F000BC993542AFDEE9BB8B27814C34AA9D47FF247F76E1EA53D54C30135F89A620F11EB1E1936135ACE0C108A
tools\System.Text.Json.dll
md5: 698799C40E4C2F53A51E747FD44571C4 | sha1: 9D9E474DDDAD490E7549469AF5295EDBB9607403 | sha256: 95931178A377FFF70C399A3DC5071E38277F40BA027F0FAD973D337E3BA23E99 | sha512: 69F3C0361EAD9906B2863680198F344ED02BCEEFB1AFE1A6E9AFA14DF4F5249DF2B8C5173CB73663A61F4641BC48B73586CE6B9FC29378AA541D92A70D6D5066
tools\System.Text.RegularExpressions.dll
md5: FED009D1E2C75EBFD10BA019AA8539D9 | sha1: AE53D22F7C8FC277E8DA4DE962725620D6D3718E | sha256: E125CEBDE456C1C624949075F9DBE30DC99C22E3BFDC2332CFE306102AD3C650 | sha512: EAA649A5AAFB55A086C721761827413153FF315EEAE435AFB78A77FD3CA2445206C26632AF50F33A9A43784B3E39BB8401C4BF21787A8FA397FE1E6496443CC5
tools\ucrtbase.dll
md5: 0E0BAC3D1DCC1833EAE4E3E4CF83C4EF | sha1: 4189F4459C54E69C6D3155A82524BDA7549A75A6 | sha256: 8A91052EF261B5FBF3223AE9CE789AF73DFE1E9B0BA5BDBC4D564870A24F2BAE | sha512: A45946E3971816F66DD7EA3788AACC384A9E95011500B458212DC104741315B85659E0D56A41570731D338BDF182141C093D3CED222C007038583CEB808E26FD
tools\VERIFICATION
 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
BizTalk Migrator Dependency - Core CLI 0.5.1-beta-2020102844785 236 Wednesday, October 28, 2020 Exempted
BizTalk Migrator CLI 0.5.1-beta-2020102752469 66 Tuesday, October 27, 2020 Exempted
BizTalk Migrator CLI 0.5.0-beta-2020102743195 62 Tuesday, October 27, 2020 Exempted
BizTalk Migrator CLI 0.5.0-beta-2020102668611 68 Monday, October 26, 2020 Exempted
BizTalk Migrator CLI 0.5.0-beta-2020102659612 66 Monday, October 26, 2020 Exempted
BizTalk Migrator CLI 0.5.0-beta-2020102622397 65 Monday, October 26, 2020 Exempted

This package has no dependencies.

Discussion for the BizTalk Migrator CLI Package

Ground Rules:

  • This discussion is only about BizTalk Migrator CLI and the BizTalk Migrator CLI package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or BizTalk Migrator CLI, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus