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:

8,403

Downloads of v 4.0.0-rc0185:

227

Last Update:

08 Jul 2020

Package Maintainer(s):

Software Author(s):

  • Bastian Schmidt

Tags:

files find search text batzendev

Batzendev.Tools

This is a prerelease version of Batzendev.Tools.

  • 1
  • 2
  • 3

4.0.0-rc0185 | Updated: 08 Jul 2020

Downloads:

8,403

Downloads of v 4.0.0-rc0185:

227

Maintainer(s):

Software Author(s):

  • Bastian Schmidt

Batzendev.Tools 4.0.0-rc0185

This is a prerelease version of Batzendev.Tools.

  • 1
  • 2
  • 3

Some Checks Are Exempted or Have Failed

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Depends on 4.6.2 which has an exemption on the verifier, so this package requires the same.

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 Batzendev.Tools, run the following command from the command line or from PowerShell:

>

To upgrade Batzendev.Tools, run the following command from the command line or from PowerShell:

>

To uninstall Batzendev.Tools, 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 batzendev.tools -y --source="'INTERNAL REPO URL'" --version="'4.0.0-rc0185'" --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 batzendev.tools -y --source="'INTERNAL REPO URL'" --version="'4.0.0-rc0185'" --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 batzendev.tools
  win_chocolatey:
    name: batzendev.tools
    version: '4.0.0-rc0185'
    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 'batzendev.tools' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '4.0.0-rc0185'
  options  '--prerelease'
end

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


cChocoPackageInstaller batzendev.tools
{
    Name        = "batzendev.tools"
    Version     = "4.0.0-rc0185"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'batzendev.tools':
  ensure          => '4.0.0-rc0185',
  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.

Package Approved

This package was approved as a trusted package on 08 Jul 2020.

Description

Just a suite of tools.
Currently included:
- Finder (searches and replaces text in files)

If you are using my little tool and encounter any issues or have ideas for improvements feel free to provide feedback at https://github.com/batzen/Batzendev.Tools.


tools\Accessibility.dll
md5: D0FFA415FBA26EBEFFEFC9BE68676D0E | sha1: 1F6B81E323E18243C3B9389A5249FC273ADF2A57 | sha256: DE1AD08015F6B0E56F099639B3294950B92F6B3BDF435D0622A45C6A6C797EAE | sha512: 004231FDC2C78E695457C45F5AEE5EFC3A0299C3EB62029691A55E4AF6461B626B28CB754C8677DA6CFBCF05E1DD76C3EB674AEE0D31F8174FF072695A152C31
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\api-ms-win-crt-environment-l1-1-0.dll
md5: C712515D052A385991D30B9C6AFC767F | sha1: 9A4818897251CACB7FE1C6FE1BE3E854985186AD | sha256: F7C6C7EA22EDD2F8BD07AA5B33CBCE862EF1DCDC2226EB130E0018E02FF91DC1 | sha512: B7D1E22A169C3869AA7C7C749925A031E8BDD94C2531C6FFE9DAE3B3CD9A2EE1409CA26824C4E720BE859DE3D4B2AF637DD60308C023B4774D47AFE13284DCD2
tools\api-ms-win-crt-filesystem-l1-1-0.dll
md5: F0D507DE92851A8C0404AC78C383C5CD | sha1: 78FA03C89EA12FF93FA499C38673039CC2D55D40 | sha256: 610332203D29AB218359E291401BF091BB1DB1A6D7ED98AB9A7A9942384B8E27 | sha512: A65C9129EE07864F568C651800F6366BCA5313BA400814792B5CC9AA769C057F357B5055988C414E88A6CD87186B6746724A43848F96A389A13E347EF5064551
tools\api-ms-win-crt-heap-l1-1-0.dll
md5: F9E20DD3B07766307FCCF463AB26E3CA | sha1: 60B4CF246C5F414FC1CD12F506C41A1043D473EE | sha256: AF47AEBE065AF2F045A19F20EC7E54A6E73C0C3E9A5108A63095A7232B75381A | sha512: 13C43EEE9C93C9F252087CB397FF2D6B087B1DC92A47BA5493297F080E91B7C39EE5665D6BDC1A80E7320E2B085541FC798A3469B1F249B05DEE26BBBB6AB706
tools\api-ms-win-crt-locale-l1-1-0.dll
md5: AB206F2943977256CA3A59E5961E3A4F | sha1: 9C1DF49A8DBDC8496AC6057F886F5C17B2C39E3E | sha256: B3B6EE98ACA14CF5BC9F3BC7897BC23934BF85FC4BC25B7506FE4CD9A767047A | sha512: BACCC304B091A087B2300C10F6D18BE414ABB4C1575274C327104AABB5FDF975BA26A86E423FDA6BEFB5D7564EFFAC0C138EB1BAD2D2E226131E4963C7AAC5BD
tools\api-ms-win-crt-math-l1-1-0.dll
md5: 4DD7A61590D07500704E7E775255CB00 | sha1: 8B35EC4676BD96C2C4508DC5F98CA471B22DEED7 | sha256: A25D0654DEB0CEA1AEF189BA2174D0F13BDF52F098D3A9EC36D15E4BFB30C499 | sha512: 1086801260624CF395BF971C9FD671ABDDCD441CCC6A6EAC55F277CCFBAB752C82CB1709C8140DE7B4B977397A31DA6C9C8B693AE92264EB23960C8B1E0993BD
tools\api-ms-win-crt-multibyte-l1-1-0.dll
md5: 4E033CFEE32EDF6BE7847E80A5114894 | sha1: 91EEF52C557AEFD0FDE27E8DF4E3C3B7F99862F2 | sha256: DFF24441DF89A02DDE1CD984E4D3820845BAFDFF105458ED10D510126117115B | sha512: E1F3D98959D68EF3D7E86AC4CB3DBDF92A34FCFD1BF0E0DB45DB66C65AF0162AB02926DC5D98C6FC4A759A6010026EE26A9021C67C0190DA941A04B783055318
tools\api-ms-win-crt-private-l1-1-0.dll
md5: 50740F0BC326F0637C4166698298D218 | sha1: 0C33CFE40EDD278A692C2E73E941184FD24286D9 | sha256: ADBB658DD1CBECACA7CC1322B51976F30B36CCF0A751F3BAD1F29D350B192C9C | sha512: F1331AB1D52FB681F51546168E9736E2F6163E0706955E85AC9E4544D575D50E6EACD90EA3E49CB8B69DA34FE0B621B04661F0B6F09F7CE8CECA50308C263D03
tools\api-ms-win-crt-process-l1-1-0.dll
md5: 595D79870970565BE93DB076AFBE73B5 | sha1: EC96F7BEEAEC14D3B6C437B97B4A18A365534B9B | sha256: FC50A37ACC35345C99344042D7212A4AE88AA52A894CDA3DCB9F6DB46D852558 | sha512: 152849840A584737858FC5E15F0D7802786E823A13EC5A9FC30EE032C7681DEAF11C93A8CFFEAD82DC5F73F0CD6F517F1E83B56D61D0E770CBB20E1CFFF22840
tools\api-ms-win-crt-runtime-l1-1-0.dll
md5: 8B9B0D1C8B0E9D4B576D42C66980977A | sha1: A19ACEFA3F95D1B565650FDBC40EF98C793358E9 | sha256: 371A44AB91614A8C26D159BEB872A7B43F569CB5FAC8ADA99ACE98F264A3B503 | sha512: 4B1C5730A17118B7065FADA3B36944FE4E0260F77676B84453EE5042F6F952A51FD99DEBCA835066A6D5A61BA1C5E17247551340DD02D777A44BC1CAE84E6B5F
tools\api-ms-win-crt-stdio-l1-1-0.dll
md5: 76E0A89C91A28CF7657779D998E679E5 | sha1: 982B5DA1C1F5B9D74AF6243885BCBA605D54DF8C | sha256: 0189CBD84DEA035763A7E52225E0F1A7DCEC402734885413ADD324BFFE688577 | sha512: D75D8798EA3C23B3998E8C3F19D0243A0C3A3262CFFD8BCEE0F0F0B75F0E990C9CE6644150D458E5702A8AA51B202734F7A9161E795F8121F061139AD2EA454F
tools\api-ms-win-crt-string-l1-1-0.dll
md5: 96DA689947C6E215A009B9C1ECA5AEC2 | sha1: 7F389E6F2D6E5BEB2A3BAF622A0C0EA24BC4DE60 | sha256: 885309EB86DCCD8E234BA05E13FE0BF59AB3DB388EBFBF6B4FD6162D8E287E82 | sha512: 8E86FA66A939FF3274C2147463899DF575030A575C8F01573C554B760A53B339127D0D967C8CF1D315428E16E470FA1CC9C2150BB40E9B980D4EBF32E226EE89
tools\api-ms-win-crt-time-l1-1-0.dll
md5: 6B33B34888CCECCA636971FBEA5E3DE0 | sha1: EE815A158BAACB357D9E074C0755B6F6C286B625 | sha256: 00AC02D39B7B16406850E02CA4A6101F45D6F7B4397CC9E069F2CE800B8500B9 | sha512: F52A2141F34F93B45B90EB3BBCDB64871741F2BD5FED22EAAF35E90661E8A59EBA7878524E30646206FC73920A188C070A38DA9245E888C52D25E36980B35165
tools\api-ms-win-crt-utility-l1-1-0.dll
md5: 54F27114EB0FDA1588362BB6B5567979 | sha1: EAA07829D012206AC55FB1AF5CC6A35F341D22BE | sha256: 984306A3547BE2F48483D68D0466B21DDA9DB4BE304BEDC9FFDB953C26CAC5A1 | sha512: 18D2BDCE558655F2088918241EFDF9297DFE4A14A5D8D9C5BE539334AE26A933B35543C9071CEDADA5A1BB7C2B20238E9D012E64EB5BBF24D0F6B0B726C0329D
tools\Batzendev.Core.Desktop.dll
md5: AA201563D8FC781288A83E45116DCC82 | sha1: E21346F24FCD42F0D1135BB035875026EF8DD58D | sha256: 16A1DA4B19D7DEB2D86F435AB80C1EC8200A68783D7A5C3392FABD4767E2231F | sha512: 333A0728EF9BEF999EE919E68B8A87734D153B4FA5D062CF55F287F7DDEACE78D50C5B050156583663388D0EBBC81347FC0B6F7A529B70F9C807AFB9FC39104D
tools\Batzendev.Core.Desktop.pdb
 
tools\Batzendev.Core.dll
md5: 36C14EE32D5FD8A9A78F836F9D436B58 | sha1: C9B1A2C322D8B6F7FF37C8C1523DF04B782BF95D | sha256: 4924D8751DCBAD47BB063265C255F2D1D114EB0A8503248B76539D78CE1ABE24 | sha512: 3F99FBC7812D1E5D519DB7D43365793619778C7AD7E153200022A3D3B9DB1945919EF4401E5C6A929473E6029DACC99D2CD8CB93A0E0E05C49116D9C0DAB25BD
tools\Batzendev.Core.pdb
 
tools\Batzendev.Tools.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1/win-x64",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {},
    ".NETCoreApp,Version=v3.1/win-x64": {
      "Batzendev.Tools/4.0.0-rc.185": {
        "dependencies": {
          "Batzendev.Core": "1.0.3",
          "Batzendev.Core.Desktop": "1.0.2",
          "Batzendev.UI": "1.0.2",
          "DryIoc.dll": "4.2.3",
          "FluentValidation": "8.6.2",
          "Fody": "6.2.0",
          "GitVersionTask": "5.3.7",
          "JetBrains.Annotations": "2020.1.0",
          "MahApps.Metro": "2.1.1",
          "MahApps.Metro.IconPacks.Material": "4.3.0",
          "MahApps.Metro.IconPacks.Octicons": "4.3.0",
          "Microsoft.AppCenter.Analytics": "3.3.0",
          "Microsoft.AppCenter.Crashes": "3.3.0",
          "Microsoft.CodeAnalysis.CSharp": "3.6.0",
          "PropertyChanged.Fody": "3.2.8",
          "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.14",
          "Serilog": "2.9.0",
          "Serilog.Sinks.Async": "1.4.0",
          "Serilog.Sinks.File": "4.1.0",
          "Serilog.Sinks.Trace": "2.1.0",
          "StyleCop.Analyzers": "1.1.118",
          "System.Text.Json": "4.7.2",
          "WpfAnalyzers": "3.1.0",
          "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "3.1.4",
          "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "3.1.4"
        },
        "runtime": {
          "Batzendev.Tools.dll": {}
        }
      },
      "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.4": {
        "runtime": {
          "Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "Microsoft.VisualBasic.Core.dll": {
            "assemblyVersion": "10.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "Microsoft.VisualBasic.dll": {
            "assemblyVersion": "10.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.AppContext.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Buffers.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Collections.Concurrent.dll": {
            "assemblyVersion": "4.0.15.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Collections.Immutable.dll": {
            "assemblyVersion": "1.2.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Collections.Specialized.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Collections.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.Annotations.dll": {
            "assemblyVersion": "4.3.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.DataAnnotations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.EventBasedAsync.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ComponentModel.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Configuration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Console.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Data.Common.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Data.DataSetExtensions.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Data.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.Contracts.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.Debug.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.FileVersionInfo.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.Process.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.TextWriterTraceListener.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.Tools.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Diagnostics.Tracing.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Drawing.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Dynamic.Runtime.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Globalization.Calendars.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Globalization.Extensions.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Globalization.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Compression.Brotli.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Compression.FileSystem.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Compression.ZipFile.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Compression.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.FileSystem.DriveInfo.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.FileSystem.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.IsolatedStorage.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.MemoryMappedFiles.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Pipes.AccessControl.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.Pipes.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.UnmanagedMemoryStream.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.IO.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Linq.Expressions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Linq.Parallel.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Linq.Queryable.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Linq.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Memory.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Http.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.HttpListener.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Mail.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.NameResolution.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.NetworkInformation.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Ping.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Requests.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Security.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.ServicePoint.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.Sockets.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.WebClient.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.WebProxy.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.WebSockets.Client.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.WebSockets.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Net.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Numerics.Vectors.dll": {
            "assemblyVersion": "4.1.6.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Numerics.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ObjectModel.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Private.DataContractSerialization.dll": {
            "assemblyVersion": "4.1.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Private.Uri.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Private.Xml.Linq.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Private.Xml.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.DispatchProxy.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Emit.Lightweight.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Emit.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Extensions.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "4.1.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Reflection.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Resources.Reader.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Resources.ResourceManager.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Resources.Writer.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.CompilerServices.VisualC.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Extensions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Handles.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.InteropServices.WindowsRuntime.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.InteropServices.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Intrinsics.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Loader.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Numerics.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Serialization.Json.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Serialization.Xml.dll": {
            "assemblyVersion": "4.1.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.WindowsRuntime.UI.Xaml.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.WindowsRuntime.dll": {
            "assemblyVersion": "4.0.15.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Runtime.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.AccessControl.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Claims.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "4.3.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "4.3.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.OpenSsl.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Principal.Windows.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Principal.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.SecureString.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ServiceModel.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ServiceProcess.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.Encoding.CodePages.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.Encoding.Extensions.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.Encoding.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.Encodings.Web.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.Json.dll": {
            "assemblyVersion": "4.0.1.2",
            "fileVersion": "4.700.20.21406"
          },
          "System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Channels.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Overlapped.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Tasks.Dataflow.dll": {
            "assemblyVersion": "4.6.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "4.3.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Tasks.Parallel.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Tasks.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Thread.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.ThreadPool.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.Timer.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Threading.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Transactions.Local.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Transactions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.ValueTuple.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Web.HttpUtility.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Windows.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "4.2.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.XDocument.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.XPath.XDocument.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.XPath.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.XmlDocument.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "mscorlib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.20.21406"
          },
          "netstandard.dll": {
            "assemblyVersion": "2.1.0.0",
            "fileVersion": "4.700.20.21406"
          }
        },
        "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.20201"
          },
          "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.21406"
          },
          "clretwrc.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "clrjit.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "coreclr.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "dbgshim.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "hostfxr.dll": {
            "fileVersion": "3.100.420.21405"
          },
          "hostpolicy.dll": {
            "fileVersion": "3.100.420.21405"
          },
          "mscordaccore.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "mscordaccore_amd64_amd64_4.700.20.20201.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "mscordbi.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "mscorrc.debug.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "mscorrc.dll": {
            "fileVersion": "4.700.20.20201"
          },
          "ucrtbase.dll": {
            "fileVersion": "10.0.17134.12"
          }
        }
      },
      "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/3.1.4": {
        "runtime": {
          "Accessibility.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "DirectWriteForwarder.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "Microsoft.Win32.Registry.AccessControl.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          },
          "PresentationCore.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework-SystemCore.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework-SystemData.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework-SystemDrawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework-SystemXml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework-SystemXmlLinq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.Aero.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.Aero2.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.AeroLite.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.Classic.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.Luna.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.Royale.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationFramework.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "PresentationUI.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "ReachFramework.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "System.CodeDom.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Configuration.ConfigurationManager.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Design.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.Diagnostics.EventLog.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Diagnostics.PerformanceCounter.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.DirectoryServices.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Drawing.Common.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Drawing.Design.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.Drawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.IO.Packaging.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Printing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "System.Resources.Extensions.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.20.21406"
          },
          "System.Security.Cryptography.Pkcs.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Security.Cryptography.Xml.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Security.Permissions.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Threading.AccessControl.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Windows.Controls.Ribbon.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "System.Windows.Extensions.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.19.56404"
          },
          "System.Windows.Forms.Design.Editors.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.Windows.Forms.Design.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.Windows.Forms.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21302"
          },
          "System.Windows.Input.Manipulations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "System.Windows.Presentation.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "System.Xaml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "UIAutomationClient.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "UIAutomationClientSideProviders.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "UIAutomationProvider.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "UIAutomationTypes.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "WindowsBase.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          },
          "WindowsFormsIntegration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.800.120.21303"
          }
        },
        "native": {
          "D3DCompiler_47_cor3.dll": {
            "fileVersion": "10.0.19041.1"
          },
          "PenImc_cor3.dll": {
            "fileVersion": "4.800.120.21304"
          },
          "PresentationNative_cor3.dll": {
            "fileVersion": "4.800.120.21304"
          },
          "vcruntime140_cor3.dll": {
            "fileVersion": "14.25.28508.3"
          },
          "wpfgfx_cor3.dll": {
            "fileVersion": "4.800.120.21304"
          }
        }
      },
      "ControlzEx/4.3.1": {
        "dependencies": {
          "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
          "System.Text.Json": "4.7.2"
        },
        "runtime": {
          "lib/netcoreapp3.1/ControlzEx.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.3.1.5"
          }
        }
      },
      "DryIoc.dll/4.2.3": {
        "dependencies": {
          "System.Reflection.Emit.Lightweight": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/DryIoc.dll": {
            "assemblyVersion": "4.2.3.0",
            "fileVersion": "4.2.3.0"
          }
        }
      },
      "FluentValidation/8.6.2": {
        "dependencies": {
          "System.ComponentModel.Annotations": "4.4.1"
        },
        "runtime": {
          "lib/netstandard2.0/FluentValidation.dll": {
            "assemblyVersion": "8.0.0.0",
            "fileVersion": "8.6.2.0"
          }
        }
      },
      "Fody/6.2.0": {},
      "GitVersionTask/5.3.7": {},
      "JetBrains.Annotations/2020.1.0": {},
      "MahApps.Metro/2.1.1": {
        "dependencies": {
          "ControlzEx": "4.3.1"
        },
        "runtime": {
          "lib/netcoreapp3.1/MahApps.Metro.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.1.1.6"
          }
        }
      },
      "MahApps.Metro.IconPacks.Material/4.3.0": {
        "runtime": {
          "lib/netcoreapp3.1/MahApps.Metro.IconPacks.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.3.0.5"
          },
          "lib/netcoreapp3.1/MahApps.Metro.IconPacks.Material.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.3.0.5"
          }
        }
      },
      "MahApps.Metro.IconPacks.Octicons/4.3.0": {
        "runtime": {
          "lib/netcoreapp3.1/MahApps.Metro.IconPacks.Octicons.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.3.0.5"
          }
        }
      },
      "Microsoft.AppCenter/3.3.0": {
        "dependencies": {
          "Newtonsoft.Json": "12.0.2",
          "SQLitePCLRaw.bundle_green": "2.0.2",
          "System.Configuration.ConfigurationManager": "4.6.0",
          "System.Management": "4.6.0"
        },
        "runtime": {
          "lib/netcoreapp3.0/Microsoft.AppCenter.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "3.3.0.0"
          }
        }
      },
      "Microsoft.AppCenter.Analytics/3.3.0": {
        "dependencies": {
          "Microsoft.AppCenter": "3.3.0"
        },
        "runtime": {
          "lib/netcoreapp3.0/Microsoft.AppCenter.Analytics.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "3.3.0.0"
          }
        }
      },
      "Microsoft.AppCenter.Crashes/3.3.0": {
        "dependencies": {
          "Microsoft.AppCenter": "3.3.0"
        },
        "runtime": {
          "lib/netcoreapp3.0/Microsoft.AppCenter.Crashes.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "3.3.0.0"
          }
        }
      },
      "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
      "Microsoft.CodeAnalysis.Common/3.6.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
          "System.Collections.Immutable": "1.5.0",
          "System.Memory": "4.5.3",
          "System.Reflection.Metadata": "1.6.0",
          "System.Runtime.CompilerServices.Unsafe": "4.7.0",
          "System.Text.Encoding.CodePages": "4.7.1",
          "System.Threading.Tasks.Extensions": "4.5.3"
        }
      },
      "Microsoft.CodeAnalysis.CSharp/3.6.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "3.6.0"
        }
      },
      "Microsoft.NETCore.Platforms/3.1.1": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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"
        }
      },
      "Microsoft.Win32.SystemEvents/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1"
        },
        "runtime": {
          "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "Microsoft.Xaml.Behaviors.Wpf/1.1.19": {
        "runtime": {
          "lib/netcoreapp3.0/Microsoft.Xaml.Behaviors.dll": {
            "assemblyVersion": "1.1.0.0",
            "fileVersion": "1.1.19.35512"
          }
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.4",
          "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.2": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.2.23222"
          }
        }
      },
      "NuGet.Common/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "System.Diagnostics.Process": "4.1.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Threading.Thread": "4.0.0"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Common.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Configuration/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "NuGet.Common": "4.2.0",
          "System.Security.Cryptography.ProtectedData": "4.6.0",
          "System.Xml.XDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Configuration.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Frameworks/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Frameworks.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.PackageManagement/5.6.0": {
        "runtime": {
          "lib/net472/NuGet.PackageManagement.dll": {
            "assemblyVersion": "5.6.0.5",
            "fileVersion": "5.6.0.6591"
          }
        }
      },
      "NuGet.Packaging/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "NuGet.Common": "4.2.0",
          "NuGet.Packaging.Core": "4.2.0",
          "System.IO.Compression": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Packaging.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Packaging.Core/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "NuGet.Common": "4.2.0",
          "NuGet.Packaging.Core.Types": "4.2.0",
          "System.Xml.XDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Packaging.Core.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Packaging.Core.Types/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "NuGet.Frameworks": "4.2.0",
          "NuGet.Versioning": "4.2.0"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Protocol.Core.Types/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "NuGet.Common": "4.2.0",
          "NuGet.Configuration": "4.2.0",
          "NuGet.Packaging": "4.2.0",
          "System.Net.Http": "4.3.4"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Protocol.Core.Types.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Protocol.Core.v3/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "12.0.2",
          "NuGet.Common": "4.2.0",
          "NuGet.Packaging": "4.2.0",
          "NuGet.Protocol.Core.Types": "4.2.0",
          "System.Dynamic.Runtime": "4.0.11"
        },
        "runtime": {
          "lib/netstandard1.3/NuGet.Protocol.Core.v3.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "NuGet.Versioning/4.2.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.0/NuGet.Versioning.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.2.0.2457"
          }
        }
      },
      "PropertyChanged.Fody/3.2.8": {
        "dependencies": {
          "Fody": "6.2.0",
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.0/PropertyChanged.dll": {
            "assemblyVersion": "3.2.8.0",
            "fileVersion": "3.2.8.0"
          }
        }
      },
      "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.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "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.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "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.9.0": {
        "runtime": {
          "lib/netstandard2.0/Serilog.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.9.0.0"
          }
        }
      },
      "Serilog.Sinks.Async/1.4.0": {
        "dependencies": {
          "Serilog": "2.9.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
            "assemblyVersion": "1.4.0.0",
            "fileVersion": "1.4.0.0"
          }
        }
      },
      "Serilog.Sinks.File/4.1.0": {
        "dependencies": {
          "Serilog": "2.9.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading.Timer": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Sinks.File.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "4.1.0.0"
          }
        }
      },
      "Serilog.Sinks.Trace/2.1.0": {
        "dependencies": {
          "Serilog": "2.9.0",
          "System.Diagnostics.TraceSource": "4.0.0"
        },
        "runtime": {
          "lib/netstandard1.3/Serilog.Sinks.Trace.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.1.0.0"
          }
        }
      },
      "SQLitePCLRaw.bundle_green/2.0.2": {
        "dependencies": {
          "SQLitePCLRaw.core": "2.0.2",
          "SQLitePCLRaw.lib.e_sqlite3": "2.0.2",
          "SQLitePCLRaw.provider.dynamic_cdecl": "2.0.2"
        },
        "runtime": {
          "lib/netcoreapp3.0/SQLitePCLRaw.batteries_v2.dll": {
            "assemblyVersion": "2.0.2.669",
            "fileVersion": "2.0.2.669"
          },
          "lib/netcoreapp3.0/SQLitePCLRaw.nativelibrary.dll": {
            "assemblyVersion": "2.0.2.669",
            "fileVersion": "2.0.2.669"
          }
        }
      },
      "SQLitePCLRaw.core/2.0.2": {
        "dependencies": {
          "System.Memory": "4.5.3"
        },
        "runtime": {
          "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
            "assemblyVersion": "2.0.2.669",
            "fileVersion": "2.0.2.669"
          }
        }
      },
      "SQLitePCLRaw.lib.e_sqlite3/2.0.2": {
        "native": {
          "runtimes/win-x64/native/e_sqlite3.dll": {
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.14": {},
      "SQLitePCLRaw.provider.dynamic_cdecl/2.0.2": {
        "dependencies": {
          "SQLitePCLRaw.core": "2.0.2"
        },
        "runtime": {
          "lib/netstandard2.0/SQLitePCLRaw.provider.dynamic_cdecl.dll": {
            "assemblyVersion": "2.0.2.669",
            "fileVersion": "2.0.2.669"
          }
        }
      },
      "StyleCop.Analyzers/1.1.118": {},
      "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.CodeDom/4.6.0": {},
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.Collections.Immutable/1.5.0": {},
      "System.ComponentModel.Annotations/4.4.1": {},
      "System.Configuration.ConfigurationManager/4.6.0": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.6.0",
          "System.Security.Permissions": "4.7.0"
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.Process/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "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.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.Tasks": "4.3.0",
          "System.Threading.Thread": "4.0.0",
          "System.Threading.ThreadPool": "4.0.10",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tools": "4.3.0"
        }
      },
      "System.Diagnostics.TraceSource/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "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.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tracing": "4.3.0"
        }
      },
      "System.Drawing.Common/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.Win32.SystemEvents": "4.7.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.1",
          "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.1",
          "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.1",
          "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.1",
          "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.1",
          "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.1",
          "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.Management/4.6.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.Win32.Registry": "4.7.0",
          "System.CodeDom": "4.6.0"
        },
        "runtime": {
          "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.700.19.46214"
          }
        }
      },
      "System.Memory/4.5.3": {},
      "System.Net.Http/4.3.4": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.2"
        }
      },
      "System.Net.NameResolution/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.1",
          "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.1",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.Metadata/1.6.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.any.System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.7.0": {},
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.1",
          "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.1",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.2"
        }
      },
      "System.Security.Cryptography.Cng/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.1",
          "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.1",
          "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.2"
        }
      },
      "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.2"
        }
      },
      "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.ProtectedData/4.6.0": {},
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.2"
        }
      },
      "System.Security.Permissions/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Windows.Extensions": "4.7.0"
        }
      },
      "System.Security.Principal.Windows/4.7.0": {},
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.7.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "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.Json/4.7.2": {},
      "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.1",
          "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.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.3": {},
      "System.Threading.Thread/4.0.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.ThreadPool/4.0.10": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.1",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Timer": "4.3.0"
        }
      },
      "System.Windows.Extensions/4.7.0": {
        "dependencies": {
          "System.Drawing.Common": "4.7.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.5.3"
        }
      },
      "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"
        }
      },
      "UDE.CSharp/1.1.0": {
        "runtime": {
          "lib/Ude.dll": {
            "assemblyVersion": "0.1.0.0",
            "fileVersion": "0.1.0.0"
          }
        }
      },
      "WpfAnalyzers/3.1.0": {},
      "Batzendev.Core/1.0.3": {
        "dependencies": {
          "ControlzEx": "4.3.1",
          "DryIoc.dll": "4.2.3",
          "FluentValidation": "8.6.2",
          "Fody": "6.2.0",
          "GitVersionTask": "5.3.7",
          "MahApps.Metro": "2.1.1",
          "MahApps.Metro.IconPacks.Material": "4.3.0",
          "MahApps.Metro.IconPacks.Octicons": "4.3.0",
          "Microsoft.AppCenter.Analytics": "3.3.0",
          "Microsoft.AppCenter.Crashes": "3.3.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
          "NuGet.PackageManagement": "5.6.0",
          "NuGet.Protocol.Core.v3": "4.2.0",
          "PropertyChanged.Fody": "3.2.8",
          "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.14",
          "Serilog": "2.9.0",
          "Serilog.Sinks.Async": "1.4.0",
          "Serilog.Sinks.File": "4.1.0",
          "Serilog.Sinks.Trace": "2.1.0",
          "System.Net.Http": "4.3.4",
          "System.Security.Permissions": "4.7.0",
          "System.Text.Encoding.CodePages": "4.7.1",
          "System.Text.Json": "4.7.2",
          "UDE.CSharp": "1.1.0"
        },
        "runtime": {
          "Batzendev.Core.dll": {}
        }
      },
      "Batzendev.Core.Desktop/1.0.2": {
        "dependencies": {
          "Batzendev.Core": "1.0.3",
          "ControlzEx": "4.3.1",
          "DryIoc.dll": "4.2.3",
          "FluentValidation": "8.6.2",
          "GitVersionTask": "5.3.7",
          "MahApps.Metro": "2.1.1",
          "MahApps.Metro.IconPacks.Material": "4.3.0",
          "MahApps.Metro.IconPacks.Octicons": "4.3.0",
          "Microsoft.AppCenter.Analytics": "3.3.0",
          "Microsoft.AppCenter.Crashes": "3.3.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
          "NuGet.PackageManagement": "5.6.0",
          "NuGet.Protocol.Core.v3": "4.2.0",
          "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.14",
          "Serilog": "2.9.0",
          "Serilog.Sinks.Async": "1.4.0",
          "Serilog.Sinks.File": "4.1.0",
          "Serilog.Sinks.Trace": "2.1.0",
          "System.Net.Http": "4.3.4",
          "System.Security.Permissions": "4.7.0",
          "System.Text.Encoding.CodePages": "4.7.1",
          "System.Text.Json": "4.7.2",
          "UDE.CSharp": "1.1.0"
        },
        "runtime": {
          "Batzendev.Core.Desktop.dll": {}
        }
      },
      "Batzendev.UI/1.0.2": {
        "dependencies": {
          "Batzendev.Core": "1.0.3",
          "Batzendev.Core.Desktop": "1.0.2",
          "ControlzEx": "4.3.1",
          "DryIoc.dll": "4.2.3",
          "FluentValidation": "8.6.2",
          "GitVersionTask": "5.3.7",
          "MahApps.Metro": "2.1.1",
          "MahApps.Metro.IconPacks.Material": "4.3.0",
          "MahApps.Metro.IconPacks.Octicons": "4.3.0",
          "Microsoft.AppCenter.Analytics": "3.3.0",
          "Microsoft.AppCenter.Crashes": "3.3.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "Microsoft.Xaml.Behaviors.Wpf": "1.1.19",
          "NuGet.PackageManagement": "5.6.0",
          "NuGet.Protocol.Core.v3": "4.2.0",
          "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.14",
          "Serilog": "2.9.0",
          "Serilog.Sinks.Async": "1.4.0",
          "Serilog.Sinks.File": "4.1.0",
          "Serilog.Sinks.Trace": "2.1.0",
          "System.Net.Http": "4.3.4",
          "System.Security.Permissions": "4.7.0",
          "System.Text.Encoding.CodePages": "4.7.1",
          "System.Text.Json": "4.7.2",
          "UDE.CSharp": "1.1.0"
        },
        "runtime": {
          "Batzendev.UI.dll": {}
        }
      }
    }
  },
  "libraries": {
    "Batzendev.Tools/4.0.0-rc.185": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/3.1.4": {
      "type": "runtimepack",
      "serviceable": false,
      "sha512": ""
    },
    "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/3.1.4": {
      "type": "runtimepack",
      "serviceable": false,
      "sha512": ""
    },
    "ControlzEx/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-s5fpe39KFfiJTDTAyXOE6pCs7OgyVbf7IE2UhlmX8ZheypULAKRVJp6PFpg9P1qLsYszO+nqmuWd6R9BvBabug==",
      "path": "controlzex/4.3.1",
      "hashPath": "controlzex.4.3.1.nupkg.sha512"
    },
    "DryIoc.dll/4.2.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iiQ6B0vP2sGD65hpcV6OxRCB1/6BL+9ao0qSD6KxPA6axKYEpcdk+ojos7qiRuQha3cl2g2aSzzjSF50cZLH8Q==",
      "path": "dryioc.dll/4.2.3",
      "hashPath": "dryioc.dll.4.2.3.nupkg.sha512"
    },
    "FluentValidation/8.6.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-N2vz+f6pAX9AI19hu83U2LJjjc/ETzWGlICVanu3DIG76QhzEu3PR/CQSFBX69PRuBTivrW4jhBzeV7dXIfqyw==",
      "path": "fluentvalidation/8.6.2",
      "hashPath": "fluentvalidation.8.6.2.nupkg.sha512"
    },
    "Fody/6.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hgSbLWRIscIkfV70V4P6246xfLI4onz0wd/O0kQ9ufot+VCl3ya9pYtU9IVkjRMFYxgVF20zS8wVciq59LXaGQ==",
      "path": "fody/6.2.0",
      "hashPath": "fody.6.2.0.nupkg.sha512"
    },
    "GitVersionTask/5.3.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2Xpv1Ym6dD29W5ERefnTI6no5aY+E9aNxenvrQtoDDXRXm9wfbD2E3GPu2UFdJ2FW/RM8+rL3+5vQrNRL+YFYQ==",
      "path": "gitversiontask/5.3.7",
      "hashPath": "gitversiontask.5.3.7.nupkg.sha512"
    },
    "JetBrains.Annotations/2020.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
      "path": "jetbrains.annotations/2020.1.0",
      "hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
    },
    "MahApps.Metro/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VVmeIEjiXnGoPEdZPcs8TENo+haU9ga84JtJcCtrpVkO/wB15Ns/5al9q+S8RZNT8JPyq3yWI9sEpytKo7TvzQ==",
      "path": "mahapps.metro/2.1.1",
      "hashPath": "mahapps.metro.2.1.1.nupkg.sha512"
    },
    "MahApps.Metro.IconPacks.Material/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uldKGwLOIWUNXy7SCmNTVIX7pqZierLGoh9TTb2tgm787oI4WH1dZqVta5r6k87uC/YW9hXiLSA6YCM3r6vqRA==",
      "path": "mahapps.metro.iconpacks.material/4.3.0",
      "hashPath": "mahapps.metro.iconpacks.material.4.3.0.nupkg.sha512"
    },
    "MahApps.Metro.IconPacks.Octicons/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZPZ4UNog56RcIqSOGKq1dcQCqrt9VAqTcFy6EZTpN7PvUBkGNv/Yq/kaly9MUonFwyFBsM6+p8eRYt7FZck+Xw==",
      "path": "mahapps.metro.iconpacks.octicons/4.3.0",
      "hashPath": "mahapps.metro.iconpacks.octicons.4.3.0.nupkg.sha512"
    },
    "Microsoft.AppCenter/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IVcnOfoFUibczOoWFr9Z4vyWyf0wWpOUoj41CVC4j6WVMGVAKC3l6Byu8x8yquOdOAVcLhPyqL0fyXgdS5RcHA==",
      "path": "microsoft.appcenter/3.3.0",
      "hashPath": "microsoft.appcenter.3.3.0.nupkg.sha512"
    },
    "Microsoft.AppCenter.Analytics/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4GUx7AF2zXOx5XhpRNd6bcHMFCpxUP4JqmN45rZr6I6r72G3JMWGk3Tra9beJV3G+oMuhYGRUyGE+o84KnXXuA==",
      "path": "microsoft.appcenter.analytics/3.3.0",
      "hashPath": "microsoft.appcenter.analytics.3.3.0.nupkg.sha512"
    },
    "Microsoft.AppCenter.Crashes/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3fTBBK9I3hQInXNb3n4IyaZ70mGwEWfdF+Zkwz4eLzk+iV2RYT/+U+v8HQfwHvplUBy8x3AAQ7h7SFIzX7vGxw==",
      "path": "microsoft.appcenter.crashes/3.3.0",
      "hashPath": "microsoft.appcenter.crashes.3.3.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
      "path": "microsoft.codeanalysis.analyzers/3.0.0",
      "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/3.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jQxDeYyQbNZwx/9O8hiyApTqZ7+KR3xVA6Ogbb50qsODfjAKRWuH7z3lGkU/62PYUz4yiDtgXlRtntWNdhFPfQ==",
      "path": "microsoft.codeanalysis.common/3.6.0",
      "hashPath": "microsoft.codeanalysis.common.3.6.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp/3.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kflVAdezWxqIfKNvEi4cmWZchX0Cgm3bRk1asYSnAQWQPTMddecrHzb9D8+ZDfYUeyYKkF4DETwjmONeSChCqA==",
      "path": "microsoft.codeanalysis.csharp/3.6.0",
      "hashPath": "microsoft.codeanalysis.csharp.3.6.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
      "path": "microsoft.netcore.platforms/3.1.1",
      "hashPath": "microsoft.netcore.platforms.3.1.1.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.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"
    },
    "Microsoft.Win32.SystemEvents/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
      "path": "microsoft.win32.systemevents/4.7.0",
      "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
    },
    "Microsoft.Xaml.Behaviors.Wpf/1.1.19": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5sPWkbqImc2t1aQwIfJcKsUo7tOg1Tr8+6xVzZJB56Nzt4u9NlpcLofgdX/aRYpPKdWDA3U23Akw1KQzU5e82g==",
      "path": "microsoft.xaml.behaviors.wpf/1.1.19",
      "hashPath": "microsoft.xaml.behaviors.wpf.1.1.19.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.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
      "path": "newtonsoft.json/12.0.2",
      "hashPath": "newtonsoft.json.12.0.2.nupkg.sha512"
    },
    "NuGet.Common/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+FSE9AJEZ+Uhn0zTEEyLJwe+O64v15tC2z2v92QUlDbSRYWu10NLSsOFYiSQAIU6rS7gwq18dHvnkGuTsk1OaA==",
      "path": "nuget.common/4.2.0",
      "hashPath": "nuget.common.4.2.0.nupkg.sha512"
    },
    "NuGet.Configuration/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/MZpdEmJnx9728Y6XfXH7n6D8sn2+qLRwQajwE19TzojbfgBuMFOv5BpZbQYdrg8jZgc4MLNRsVH8n4+4aSmwA==",
      "path": "nuget.configuration/4.2.0",
      "hashPath": "nuget.configuration.4.2.0.nupkg.sha512"
    },
    "NuGet.Frameworks/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NVi3p3v5qFF97FKrhjhWvWwYMUvxbAs2aeCXwYaQF6XEGnpjrDtmVz99DXfDgtc9ArH5MyOOyTiolnK+YxO02Q==",
      "path": "nuget.frameworks/4.2.0",
      "hashPath": "nuget.frameworks.4.2.0.nupkg.sha512"
    },
    "NuGet.PackageManagement/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5s2Krxbhw7andEoQ2Ud1VPxbNRkuTf1+gZzmRRJ1rqnAOjx4LQ8Kk0y/vzygq6RXfY9R0Re47DiO5tsc24bs/A==",
      "path": "nuget.packagemanagement/5.6.0",
      "hashPath": "nuget.packagemanagement.5.6.0.nupkg.sha512"
    },
    "NuGet.Packaging/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PMa0HV/AIY9dXdTFf2mZ1+JnxM9/y3+Fohyg4NCDoJ4Z7s1qjuFQoMGVLI3f2sfFFQUhuXN+t0hOfgZAx8Dgmg==",
      "path": "nuget.packaging/4.2.0",
      "hashPath": "nuget.packaging.4.2.0.nupkg.sha512"
    },
    "NuGet.Packaging.Core/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3NWD2hYD7eP1iEcGHekTfzrZYYevUVT2juL8VjWIV11AZGym5l4RibkLJwyBAI4Qhw4s+Dk/8WGmgWbsBxQzUw==",
      "path": "nuget.packaging.core/4.2.0",
      "hashPath": "nuget.packaging.core.4.2.0.nupkg.sha512"
    },
    "NuGet.Packaging.Core.Types/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Zv+s9hhUTIOit/PDmCEx7v+rjv0DwhzwbzIGynKdQtr6x3Y/sQGO0A7/Kw4zKUyykAUezbe7pnd+w+K5Llqy2A==",
      "path": "nuget.packaging.core.types/4.2.0",
      "hashPath": "nuget.packaging.core.types.4.2.0.nupkg.sha512"
    },
    "NuGet.Protocol.Core.Types/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/+SFFBpq6XaXaNe4SZHtC3F/E2QoEErfbFzGjj8rcs+AmwLZc1SyRqh3M3/y4SkIMjprCqUuKxtgd+ufG1Dy5A==",
      "path": "nuget.protocol.core.types/4.2.0",
      "hashPath": "nuget.protocol.core.types.4.2.0.nupkg.sha512"
    },
    "NuGet.Protocol.Core.v3/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nl+Q0mTLTYC5A3jwEWP9G8czDOu8+eo3jfYDN0Ytmm8Df915fxZzXlN+R/ZCQoTYhZzlGT5/M3oolPZxSkEanw==",
      "path": "nuget.protocol.core.v3/4.2.0",
      "hashPath": "nuget.protocol.core.v3.4.2.0.nupkg.sha512"
    },
    "NuGet.Versioning/4.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wr5pplZFz2uiEZsCmm9DZNhzValXq6ZhV2MgXRIJEqbnXmPprrh9QkbgAxBmVs28QR3dfp0GDVVG21bnzgo+Hg==",
      "path": "nuget.versioning/4.2.0",
      "hashPath": "nuget.versioning.4.2.0.nupkg.sha512"
    },
    "PropertyChanged.Fody/3.2.8": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UfhhtFPgbqwx8cpuxdRbz9cuHve2BXEs1DjPAA/4p/TfqnTct3glcUz5MQ/TGDjFxHmO1Dc4ETS+B1Zk38TnbQ==",
      "path": "propertychanged.fody/3.2.8",
      "hashPath": "propertychanged.fody.3.2.8.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.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.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.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.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.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.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.9.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QzcrD33A3+CsVvwi1I5CSei67ikQnkGrw7SscgL+vZTghaC2aNYg8fiUcedXHzKJFNjgje9rBjzwYGQTKEaXaA==",
      "path": "serilog/2.9.0",
      "hashPath": "serilog.2.9.0.nupkg.sha512"
    },
    "Serilog.Sinks.Async/1.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OZDmB/qs/uXO9oLyLIY4h85b0sCoJnFmPqI3P79jLumViEKq2su7h70Vqs1cdqEftl2oWuBgkkS54fOK4PjP0w==",
      "path": "serilog.sinks.async/1.4.0",
      "hashPath": "serilog.sinks.async.1.4.0.nupkg.sha512"
    },
    "Serilog.Sinks.File/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U0b34w+ZikbqWEZ3ui7BdzxY/19zwrdhLtI3o6tfmLdD3oXxg7n2TZJjwCCTlKPgRuYic9CBWfrZevbb70mTaw==",
      "path": "serilog.sinks.file/4.1.0",
      "hashPath": "serilog.sinks.file.4.1.0.nupkg.sha512"
    },
    "Serilog.Sinks.Trace/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VgJNH1F3UOrmI8m32WFS9x5cxmYOrSfc+mLxXFmgN3bG1zg0jRf7jgbBB15NoJjfAn0nJMZgP0Hqx/w0bxKGvQ==",
      "path": "serilog.sinks.trace/2.1.0",
      "hashPath": "serilog.sinks.trace.2.1.0.nupkg.sha512"
    },
    "SQLitePCLRaw.bundle_green/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W8cUJhwC5b0Rp34ZI2q243totrvILMz2MQyvg1toYXaDmiyvx3gFXVc2X4yiPPha0YexicuksVLpWAekvNC1VQ==",
      "path": "sqlitepclraw.bundle_green/2.0.2",
      "hashPath": "sqlitepclraw.bundle_green.2.0.2.nupkg.sha512"
    },
    "SQLitePCLRaw.core/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TFSBX426OelS1tkaVC254NVVlrJIe9YLhWPkEvuqJj2104QpmDmEYOhfdfDJD1E/2SmqDhoRw1ek5cQHj8olcQ==",
      "path": "sqlitepclraw.core/2.0.2",
      "hashPath": "sqlitepclraw.core.2.0.2.nupkg.sha512"
    },
    "SQLitePCLRaw.lib.e_sqlite3/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-S+Tsqe/M7wsc+9HeediI6UHtBKf2X586aRwhi1aBVLGe0WxkAo52O9ZxwEy/v8XMLefcrEMupd2e9CDlIT6QCw==",
      "path": "sqlitepclraw.lib.e_sqlite3/2.0.2",
      "hashPath": "sqlitepclraw.lib.e_sqlite3.2.0.2.nupkg.sha512"
    },
    "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.14": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mGjdDKXWJyPS11l9IULNZ6B9/TphGVBewhLJ1mfbn9I6Kupf6t7uwgHD4Rx07M1/kpSbaJLyCpQysh8m62qAAw==",
      "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.14",
      "hashPath": "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.14.nupkg.sha512"
    },
    "SQLitePCLRaw.provider.dynamic_cdecl/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZSwacbKJUsxJEZxwT23uZVrGbaIvXcADZDz5Sr66fikO5eehdcceDncjzwzTzWfW13di8gpTpstx3WJSt/Ci5Q==",
      "path": "sqlitepclraw.provider.dynamic_cdecl/2.0.2",
      "hashPath": "sqlitepclraw.provider.dynamic_cdecl.2.0.2.nupkg.sha512"
    },
    "StyleCop.Analyzers/1.1.118": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==",
      "path": "stylecop.analyzers/1.1.118",
      "hashPath": "stylecop.analyzers.1.1.118.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.CodeDom/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ArWGZOxPhOaJUd4YgvbTxGZDbVDJHPAOQNiJIpbRDPW6v2NT5xkallQv1zpu8Rwwb5Z3iZ1jwWA4gSQuWgR+jw==",
      "path": "system.codedom/4.6.0",
      "hashPath": "system.codedom.4.6.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.Collections.Immutable/1.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
      "path": "system.collections.immutable/1.5.0",
      "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
      "path": "system.componentmodel.annotations/4.4.1",
      "hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gkNklXxdmB3r4SQTUzRhESZAb3MotgDz24XYi2R/bIjJ10SF0KHJ/qTEwi9CLyIAOTjmCo8Vx8+rKldLaiW7Ig==",
      "path": "system.configuration.configurationmanager/4.6.0",
      "hashPath": "system.configuration.configurationmanager.4.6.0.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.Process/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
      "path": "system.diagnostics.process/4.1.0",
      "hashPath": "system.diagnostics.process.4.1.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.TraceSource/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
      "path": "system.diagnostics.tracesource/4.0.0",
      "hashPath": "system.diagnostics.tracesource.4.0.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.Drawing.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
      "path": "system.drawing.common/4.7.0",
      "hashPath": "system.drawing.common.4.7.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.Management/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wyb0OtzOuuyNIIhR+cSo2fX1Q3/MtG9GaSB/r7ABZt89cNs5ZpT4yxdlKXeuciOLqBs6sbgqDayLuLLBXSK5qw==",
      "path": "system.management/4.6.0",
      "hashPath": "system.management.4.6.0.nupkg.sha512"
    },
    "System.Memory/4.5.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
      "path": "system.memory/4.5.3",
      "hashPath": "system.memory.4.5.3.nupkg.sha512"
    },
    "System.Net.Http/4.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
      "path": "system.net.http/4.3.4",
      "hashPath": "system.net.http.4.3.4.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.Metadata/1.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
      "path": "system.reflection.metadata/1.6.0",
      "hashPath": "system.reflection.metadata.1.6.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.CompilerServices.Unsafe/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
      "path": "system.runtime.compilerservices.unsafe/4.7.0",
      "hashPath": "system.runtime.compilerservices.unsafe.4.7.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.ProtectedData/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zdCsTOakmbAQVyOI6+ZadvXZgzSiFiY5nXAfGUQNGrz3ofc9sjehpXRvqYb3vWUsvloYFILSpiQCjiZVFKRBjA==",
      "path": "system.security.cryptography.protecteddata/4.6.0",
      "hashPath": "system.security.cryptography.protecteddata.4.6.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.Permissions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
      "path": "system.security.permissions/4.7.0",
      "hashPath": "system.security.permissions.4.7.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.CodePages/4.7.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
      "path": "system.text.encoding.codepages/4.7.1",
      "hashPath": "system.text.encoding.codepages.4.7.1.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.Json/4.7.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
      "path": "system.text.json/4.7.2",
      "hashPath": "system.text.json.4.7.2.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.5.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
      "path": "system.threading.tasks.extensions/4.5.3",
      "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
    },
    "System.Threading.Thread/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
      "path": "system.threading.thread/4.0.0",
      "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
    },
    "System.Threading.ThreadPool/4.0.10": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
      "path": "system.threading.threadpool/4.0.10",
      "hashPath": "system.threading.threadpool.4.0.10.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.Windows.Extensions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
      "path": "system.windows.extensions/4.7.0",
      "hashPath": "system.windows.extensions.4.7.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"
    },
    "UDE.CSharp/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mCdLwQGz/9C6FptnFCoBTJI/C0K74fZOwfQWq2sl/p3H2H4RNS40Rnf2WF6G6+ZK1lCaOhtOdLlpXQTtbP13fQ==",
      "path": "ude.csharp/1.1.0",
      "hashPath": "ude.csharp.1.1.0.nupkg.sha512"
    },
    "WpfAnalyzers/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iredEMentaGcmE1rvK6YCy85nwN+xCXXR87OfVmNKAS7rDUvDfUdiEV6pDJod1DLq3zx2ofkN/tiNv6tm19vig==",
      "path": "wpfanalyzers/3.1.0",
      "hashPath": "wpfanalyzers.3.1.0.nupkg.sha512"
    },
    "Batzendev.Core/1.0.3": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Batzendev.Core.Desktop/1.0.2": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Batzendev.UI/1.0.2": {
      "type": "project",
      "serviceable": false,
      "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\Batzendev.Tools.dll
md5: BDD10510D6FBFDD8637952F235C6C5D3 | sha1: 036AF4BD663146003D9F4C6794FAE9586C3B9734 | sha256: BE3E34F9E7FE51ED655B934DA92842C61AF288BA9216DFE4AFCB9F91EB9609F2 | sha512: 6428FD529425083A18CDE1767BF62C6F8388305CBCB5B04B4F22CA488028927600FAC198F16971895F2DD9448A401D8E3FB4E34D2801C215FA8432CCC7B050B3
tools\Batzendev.Tools.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration> 
  <runtime>
    <gcConcurrent enabled="true"/>

    <AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false" />
  </runtime>
</configuration>
tools\Batzendev.Tools.exe
md5: 22CBAF3EDBF933BEC99A11065FB08D99 | sha1: 21766501972D871EDB9DDD93ADAD7997BDE53325 | sha256: 083EF10C9BE41E644C54FC1867D5ED80F654F00ADCDEA8D6DEC023CB9DD2B14B | sha512: 134DC3776E1A8BB98E822A3B726C1B8EE040590F3AC8B054EFA93BB707D069DA8AB269C92F2BD65A96CF4E0A71ECE367EBEC2DF358D2B0B6019ACE107AF877FB
tools\Batzendev.Tools.pdb
 
tools\Batzendev.Tools.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp3.1",
    "includedFrameworks": [
      {
        "name": "Microsoft.NETCore.App",
        "version": "3.1.4"
      },
      {
        "name": "Microsoft.WindowsDesktop.App",
        "version": "3.1.4"
      }
    ]
  }
}
tools\Batzendev.UI.dll
md5: 9F95B7EB389A7047C9BF816BB4639155 | sha1: C4F8D58573A93D86E3EC7DC48210E439CAF4D5F7 | sha256: 19E3251CF28F307BCB45E7A414BF1667EEE2227D405634CA8C861F3E9E02E044 | sha512: A292882EB851E263291A35C06092975DEC1644D1EDFFFA1421C6EA934A9EB12AF897F6D370D0E044D7BAD1B9F252ADF8507550CBDB4C4C90A37E98B6E5365A7E
tools\Batzendev.UI.pdb
 
tools\chocolateyInstall.ps1
$installDir = $env:chocolateyPackageFolder
$installLibDir = Join-Path $installDir "tools"

@(
'Batzendev.Tools'
) | % {
  New-Item "$installLibDir\$_.exe.gui" -Type file -Force | Out-Null
}

$desktop = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$shortcutFilePath = Join-Path $desktop "Batzendev.Tools.lnk"

$targetShortcutPath = Join-Path $installLibDir "Batzendev.Tools.exe"

Install-ChocolateyShortcut -ShortcutFilePath $shortcutFilePath -TargetPath $targetShortcutPath
tools\chocolateyUninstall.ps1
$desktop = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$shortcutFilePath = Join-Path $desktop "Batzendev.Tools.lnk"

if (Test-Path($shortcutFilePath)) {
	Remove-Item $shortcutFilePath
}
tools\clrcompression.dll
md5: 46433A36D65080078DAAA6842C84EE5C | sha1: 172A3E46C628221EABC648D8CF95FC76500B1601 | sha256: 5A26C273FEEACA9618D335675C5D64593072EDC251ECDA13B2B8E811C5266738 | sha512: EA07F14D66A46D02722249C9FD1624AE159325124E1C9EC07D727D8B853D92BEF3F7B793DF938A4C4CF13F052712F735436D64C16978328B8E856A11D5E4CB05
tools\clretwrc.dll
md5: ED764B3CB924E4DCA241FC5461A4B8F9 | sha1: 0B34ED8AC705E5B285BF75FE7C738B89B242C6F8 | sha256: B037E77944C693708BE985FFE27A004993E684A87492DC2C8BA214A1AB0935B1 | sha512: 277C10FD072FB5AFF5465D9EC1D0D3C0C4B57FC27743E866A3D77B288874DAA65CF5740D6FA6A7A5378CCB9BBBBB985CA4E42AE90935C9D3AF3129D6E243B7E7
tools\clrjit.dll
md5: 0BA41597CD6BD4BEBF9D00D9DAB10336 | sha1: 42AC35F011B5D07599829F0A1C73EF9AA5A1306E | sha256: 5D99433270A46F61F96EB71672D976F82709E7F1CBDD50E218F38D2BF3A5B633 | sha512: E3B0E3B343F0A2FA09F91B9C112FC67A4540C4D39FFBA2942EB8222B36A463BAF5A3DDF899018300CAB3CD8BC2E414B581FFD2C02F3AFF78C77E5C0C226E98CA
tools\ControlzEx.dll
md5: D48A41DCDD66F0E808B8B3EDE7D6BA07 | sha1: 7707251FF8CDFDF77DC9158C99F16C2F9C67C884 | sha256: 9CC69E987D42429DF7E63F0F9F72AC0CB16A1435DA7CFEAB7A46D866FE1E652F | sha512: 4DE54E2D1604947DF3885A6AC4C555ECAA21C9D87D5CAE36AEDC94C247CDF5E8E30AB0DB1CEF7639797B528706D9FF649C493C9A80B498EF5DFA6DD6DE8AA019
tools\coreclr.dll
md5: EBB5CA617CBAADEB7515FCBEA2747917 | sha1: 77301F9A2CCDECA3B13A32CB6E5E1649A2D8F5E1 | sha256: 5F26A59DF8D186615EC681EAD9FEAAA8D30EE31E195D4288DCA7671473DB45AE | sha512: 5FE62C34FA0F82E90366FF6E6D5CD25094F63556D34CF0E9006C9379EF982D8F6A1098C48E8648C476F5FB35E63BDCBA86C9F0C64D3EA9B9B42DE0BCFF58C887
tools\D3DCompiler_47_cor3.dll
md5: 7641E39B7DA4077084D2AFE7C31032E0 | sha1: 2256644F69435FF2FEE76DEB04D918083960D1EB | sha256: 44422E6936DC72B7AC5ED16BB8BCAE164B7554513E52EFB66A3E942CEC328A47 | sha512: 8010E1CB17FA18BBF72D8344E1D63DED7CEF7BE6E7C13434FA6D8E22CE1D58A4D426959BDCB031502D4B145E29CB111AF929FCBC66001111FBC6D7A19E8800A5
tools\dbgshim.dll
md5: 568D46EFC15148B6F0BA13FF688EA590 | sha1: 7559347B09ABDF521B30EF6E849603DC40B2458E | sha256: C91B9A919A0F7B11E2663BBF23CB95896C1136330437929347CE4375DEA849F9 | sha512: FA234B09C4C5039AB79C05AE7C752F72AAE28E1D7732DC87EE76960D97ED73F474D4EC49E0ED29F56A4B3DF63DB076328E28C983F0C959A219FF4F6E34289A6C
tools\DirectWriteForwarder.dll
md5: 79B209DB02584419DC3869A7EE1C1920 | sha1: 45977DA15D0455A1C4FF30BA347106EFD4E17EF0 | sha256: 2D99CB74E5D29DBB918A6F5F94B25BBF879D198CF6290E2292EE0D76A007312C | sha512: 5E18DDFD913450D4A8DA9B064235DC65DBD06427C3523C19A7A2C742E812EAA65CC9740030279FAF83C3B33236BD78A55F84E9AE27E9755510CC4E8D9C121133
tools\DryIoc.dll
md5: 0C5CC9FE1219F794A12836C4A537383F | sha1: F2BD9D666FD70B28C6B7FB2BCA8E64CFD321997A | sha256: 41353A36B62F87CB224C9B9AF31619D9633F3900CACDF2826A4E79F3DDCA6F1A | sha512: 9972BE3823B6335638925A61BE562584B1700706ED17E632616100C8A6A73338255A0DDAA05F4C033563A3A35BC6591324D096E91C20BC4C4A7DC47A006A2476
tools\e_sqlite3.dll
md5: 0B495CE20254620EBCB3FEFDEFB7AD70 | sha1: 67DAD6F7F6ACE235B4E77F32B102EFA715C5B285 | sha256: 3B73661441E0A7A439D5B2A1190D2C9BB326E54BCDB180AAD9F0366BDBD47E07 | sha512: 39F6DCDAF4CF58FB06EED3E65746B1F9FE225E2A01192D97A4240DFD69F4F3F7543CA1373E8546F0318FCDF5E5A0FBCF7846510F751EC80565F7B1EC66305198
tools\FluentValidation.dll
md5: E564DBC9E87D1621C55979C579592923 | sha1: 984C3D3A74F49E72274B88B3501989C02F7BF98D | sha256: EEF6B1FD32D43C11B36AE8A5703BB3ED657C8D76427D768CB2B8B24CAF134B68 | sha512: 9DC052AAA9DD759C6B544D8CEDEAE88C691ADCE79D009A3B776AE64A86D17902D96E0BC186F5B92E17C7567F995C39BE9B95ED62CF852F2861426EBEA5CE3BA2
tools\hostfxr.dll
md5: 68C3018E6713A5D8E8F005A75451AD3C | sha1: A8EE9FEF3439F9FAEC36B3B23F293EA296C6CA50 | sha256: F5BBD158DC2CB34BED8A0286C9847B452DEE7F6888DD0DB9EAE2F5C3C0E190CA | sha512: 15162A357B306C7AB85FC2C893A524F9EC06248EB553D2276A790485077FEE18F576AF3F7D9EA02DF7558468054D5840464AE5E9E2F06D29BCB3313D8291EA5D
tools\hostpolicy.dll
md5: CE64594A66AC9FF2443B98C3EA072F4A | sha1: 1838A4097EE0A89672698CEA28FF536AA9FAA160 | sha256: 56083C400CE2C9BD5A0F87E6FEECBE2096DC91F22EB69D7168B0C2DE72F6DAC8 | sha512: B8F3C2D758986BD7C7CFA7DDCCCEC21763CE26081AD86D9D67CFDF9D40832587F4FD5A93000FD375F428343B8BC47642438F94B3F6C0E18CD2BC8CCCE8AB6B42
tools\LICENSE.txt
From: https://choosealicense.com/licenses/mit/

LICENSE

MIT License

Copyright (c) 2009 - 2019 Bastian Schmidt

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\MahApps.Metro.dll
md5: BAB6301CFF60E08F2FDFC46A0CB272C7 | sha1: 1336EDC019C4E4E2B0C7087FA7A79128F916AD6D | sha256: DD7982D5C73AEF07E19C8321C64CCE86D4A0778BD47FC2E9134D2FE7399F75A9 | sha512: 40074805E6502035D7EDE4D1982A39A5C99AB82DEC3E800CA2F694FB7F164029737C7AEAB2E8681DDB5AC80118CA8648F4E681F8EABFF0EDB6844069D236A7AE
tools\MahApps.Metro.IconPacks.Core.dll
md5: 7418A658FE1565D12778BDDF03BF21E6 | sha1: 7813AF590746CAF2F71419A1E293ED0DA1E1A0A3 | sha256: 2BAF2118DE1B24746F92317EA9B255221B0B139D9EAB6600CECE5B7D2F097024 | sha512: 6E7F8DF29234B2550984272DFDFC170104E9DA2769126A5BA1804DDCBF1BE28D48C925F6310701668EF594E95CDB8973C41AFB73E2C426FA9980E58D5AB783C3
tools\MahApps.Metro.IconPacks.Material.dll
md5: 2C21DF46BF32CF2DBB9FB5CDBBC1F3C7 | sha1: 60DF324A358DD178C9A118FA3DEFE2772F44D474 | sha256: 07B87EB1FD3CBB88925091F871862D5145F4F98DDF0A1B7011A804EF231CB012 | sha512: 7A4DC0272E401AC1568839D76282EA4033AE795C65B615287EB359120495BEA4CD8BC7554F82317B33A0EF64AC8B06CC0816163048ADEAA5DA61E9BFD375AB7E
tools\MahApps.Metro.IconPacks.Octicons.dll
md5: 25426115F420AC5DC9FD655C80E4EE52 | sha1: 7B6374A3733498774CA07FF5CA438B66C0DFBCD1 | sha256: 80DFCA1E33535A307678D9A52F7F65A9A5853026225539E67D05F47AF13BAA59 | sha512: C7FA091C0796220B134902F4DADD960E747D3557A97471AB7BC00FADD151337C051DC9F13677B2D2F8EA1C15940FAB3F69052B601E5264CFEB5E4A7E16A8811B
tools\Microsoft.AppCenter.Analytics.dll
md5: FCAA471E29C83A7A5A123F8D7A6764C8 | sha1: C80092219C369AB8E542160E171EE9B64DF42AA5 | sha256: 94F6A1F121AD23B964DC62B2AAB22411A6F273FB7085C364C0D4FD5EDF55DD3C | sha512: 7D016D66262CCCF9E6435D8648918EA6BF38AD26370440C468977E3715579FE05006B8EAABD162E7E7AD5DB8CEB2B3A71868FF9C6D6233B90242BFB782FCC132
tools\Microsoft.AppCenter.Crashes.dll
md5: F585D5B6CBD36E185C1EC503D832FE69 | sha1: 679A6926DC96CECE75F00B28053EA548D8774049 | sha256: 4B0CA571002105D25412BCDAE518797AA060CD7E272757B7AADFAB91F02F62B6 | sha512: 834E87750101590BF02782D975C742386BAA210DB6CF4BEEB0CBCA237163BDB5A1E69AE17994798C88A90655B36C5EFA95596D348EFC4164892B704FD586CA07
tools\Microsoft.AppCenter.dll
md5: 81A639A0BB31FD8226EC98CAEC161A0B | sha1: 224024009D0891025962E0870543BCDF13BFD664 | sha256: C259C514D4538736E18DEBC0213FA8C7986B4AE7B12B3B13889B0AAACFC03C2A | sha512: 765E2D7CD8ABFAE9A9AB49DFCF07FFC99781614665D1F20A99332130CDD7EBC6C148F598C5375CB36DBD105E46DCAB04019310D0F1F8F2B179D1A0346779F511
tools\Microsoft.CSharp.dll
md5: 1E4751516583C451DE935DA6E5EEE167 | sha1: C3015715457617FB8D58FDE8A34FCD805B7C34DB | sha256: 5FD855DD5E87F4E53DE910FEA01FCC13DD6E7DF99817AB14116C5FA4165C4753 | sha512: CCF1A3A9EADA0F763321272F281E8C36D3E6DB5D5C579C6FE532FE79E1009D76C7C8D61CE0826F0B6B500BECC4156106FDDBB3A6165270DBA31CF781C8018C29
tools\Microsoft.DiaSymReader.Native.amd64.dll
md5: 7E31E92DD59449F41C900862A16F0879 | sha1: 36ED049328FE585F2053A7E20BE4B98A3C3A1F24 | sha256: 95F301012ED09C09C9EB61A23A2803A7043E6A33F9C8957746379B610A52978D | sha512: 77FECD5611967F7234FCE744E0E57525E8699ECB3EAE99B6E7BB3E326EF4E10258ECDCC80AB5B9B402C4DA32104B6A6566DC63BFB1B7C7192A75EBEB13E439C4
tools\Microsoft.VisualBasic.Core.dll
md5: AA68FCC0589626A260B625123558CB14 | sha1: B582547E275D8FEB0FD65E269FF7352F67B50A91 | sha256: 253A50C0F3E7D052D5C0314BAA17C38D2435026734B54AA814D0CE761924FD93 | sha512: 7D9CB5D707FD14A9C8770D4A769F04A4320E8EACD7CA4738C79935E046139E5E29C2E1EDE901DEDE2009DED27D4FF3DD83FE015A27CDBC96510587005438056B
tools\Microsoft.VisualBasic.dll
md5: CC475F18EC4DED9B04D84E30C88EF495 | sha1: F9C80C5E4A15CF5CCBAE6365314D04B5420CE34B | sha256: 602D3AB038FA788E1B6FE4D24D09A45EC57EC883AD1F20B57B56768B016D17CE | sha512: 66718155BE39EE18F867B99C8B0E6268EFC20E8046E50F4F50EB9AC745C6B92E84BC15305A929AAF7E3E5B48D6E15BF36AA89EFE0725D3C77E436648D910E0D3
tools\Microsoft.Win32.Primitives.dll
md5: D87A6A03B6B25308CFBA67374A68145B | sha1: 9A06AE4D1492BF7BEF87F479BED719EFC5B19ECC | sha256: 6A4B5AA88D7A2A167AB7A290476BDB85F2A9E4D6ECEA50154EF56737D730EE54 | sha512: 1BBE45638C38F4826B1830838103EE20E3A4C5CC9610716115CC38BCF01FD4880FE661C460979E1FC55DE9CCF61419DD15C86748D416E8CB501876245FA8116F
tools\Microsoft.Win32.Registry.AccessControl.dll
md5: 2017F3455B23B82AC9DD298313A93534 | sha1: ECCE35038EC219C7D7C29E278DBD646656C9EC0B | sha256: D63BEA0A67E68260932599448BE162F1386D02A35C563766A2157E8B59FC3331 | sha512: 8B386D6A352BE8941FAE97BEDFAA28B01D365304803E7E02B58A1760203549D55E16653C2E6C38D50BC5AF44C346510BBB184F26D6A43FFE0A2C1728BB60FFD3
tools\Microsoft.Win32.Registry.dll
md5: D0BFBD6103A8F629B740BEA061816774 | sha1: 5CE0C77B84A63FFA9B32D9DFA2921474B5E7C280 | sha256: 21263C1C949B4DC9D9884EF7D654B18125DA9CD55370B77A240ADB2F7F749EE5 | sha512: 9D5EE67FEF82B1C112B94FE6D40BAF113E8E2F4EAA37C432869664DACA145B4109002BA7630CB7414B507FF4CA6BDCC879FED28F9307C7F05AC5342338A8F22C
tools\Microsoft.Win32.SystemEvents.dll
md5: D7C087B8D5A11CC0AEF3EB6396E19B16 | sha1: F2F343460E3662CED69ADC65C00E6545DC42B7EC | sha256: D13FCB16F32446523C5ABD96A38C970E1BE4EEEC3FBD069C877574AC2DD882C9 | sha512: DD7572E9536CA044759468F6E2765B17A4DF1A8E98420A109F9AD92BA77DB748CA75BE6B7CC782379639EA75949ED8F48984BF47E1929D1278958669D8C12D90
tools\Microsoft.Xaml.Behaviors.dll
md5: 253C03FF786650BAC3D05996CB205D34 | sha1: BE8568A88D9E7C4A8D89214CECF1247F4C5E8DCD | sha256: EB375FEABDB2F1B1412685422237CC172BE1F8DC3E19F5380E12B9ACD997DD48 | sha512: 46AB86DECE97484248D813D7E21CB71219F771626254774A21B188034595ACB2088F30E133058D815DB2B92B2EF9C67DF96B2A52BD44D8DA05AE9AEC2FC055EF
tools\mscordaccore.dll
md5: 6225AB4C7BE996A10F080142D96935EE | sha1: D58F0A91360E7EAF62D83E441B73A0A11D9F019D | sha256: 6EAA645134A0E4129A5AD16A51A8653D8287254706C023FE4D8D1CCE58D7EE95 | sha512: 2CDC8F7401D7C50D7C4FB0BD72A69124C6705B1543A4C30297A6373AEF9D7100693573D7F0B1FF7CAB2B25AB2E62AD3B53A6495DBF0249380E0335DFDA9B3A3E
tools\mscordaccore_amd64_amd64_4.700.20.20201.dll
md5: 6225AB4C7BE996A10F080142D96935EE | sha1: D58F0A91360E7EAF62D83E441B73A0A11D9F019D | sha256: 6EAA645134A0E4129A5AD16A51A8653D8287254706C023FE4D8D1CCE58D7EE95 | sha512: 2CDC8F7401D7C50D7C4FB0BD72A69124C6705B1543A4C30297A6373AEF9D7100693573D7F0B1FF7CAB2B25AB2E62AD3B53A6495DBF0249380E0335DFDA9B3A3E
tools\mscordbi.dll
md5: 0F14920BE14D648265E047A8905BF151 | sha1: BC7A51B81FCA0777C310F27F1E5032DC0C4AC2BF | sha256: 62898DEA205EA87EA02BBACCD60BA806D5FED540F381F298204469B3DFDE0CC3 | sha512: 9FF1CEF867A76E1AC01DF02EECDFF47FA437662FE6F1BDBC1997E24541B282E4ED7E924F6DFD186BE81E2829FBDC0E5ACFDF026E2874FAE3B2ABA8CB27834072
tools\mscorlib.dll
md5: 044EB70A39F0CC4ABC12CFD4C21BC1A3 | sha1: 416BA3353A9798991B4EDB1A9C1E885672BF1260 | sha256: 417CE9F163C2C4724C957D97808047DF3FDF38540C3149512B49F577F7A1576F | sha512: 127B91808E00387793E56AFB70CAA8634D83A946A5012CBCE4D28A06D50B39A86AFEA5DE420A74F01FBCCC32AA0D02BBF5CA8F7C72FEBE7098B580EAFDB79777
tools\mscorrc.debug.dll
md5: A6A154E30D1905936D89684211130CC6 | sha1: 0148667953A300F925E02E913820F4F2A01A56A3 | sha256: 19B247C37EB160068FEAE7D569BEF22371D462866FE0CD319530002865FF0890 | sha512: 56AA2B98209C88B237EF3F9BD8AA310D9E99BA75797B58DF094BAD7AF49955B4E16E43C91B7B996974F44EE2C014759C1C33F90B509FD33823EDC8C337D7F6AA
tools\mscorrc.dll
md5: 57B48831D8E076BDC4717962B1287E45 | sha1: 12B778CB6AB7D0075E912E335A1EE342F5016E3C | sha256: 93AA39DC417E01D074BC949CAEF6D6B6DD626B948072C16444E9CFF1B71C4B5E | sha512: D2DA8792C370026D1507CB24C6BC153D4BF9E0CF0D2F76649820DDE9DFD3D8E3BFDD62921B09D2149209C69F8B4E379F5FAF8AEA9E3565E15DE55D05C9233709
tools\netstandard.dll
md5: 4AF5952EDC4697DBB7E095ACF566C3DC | sha1: C0EE3F3C9188792873C02DBB18BC7F77115E5E52 | sha256: D2E31EB716E4966D10F8A663A5D91E3A515688D33392BD48E36B8964D1357D1D | sha512: 941C7363ACB04322036FCA9871638DB2BBE4332ABC0EB6582067730E49D51DAACA1E86EBC06CDF0BBBA50C3E28860E0540D371E9CA6BCBBC31F901E9B28FD603
tools\Newtonsoft.Json.dll
md5: 9C9BC5CC6E6DD5B70B5E49FCFBBDE428 | sha1: 6711391FBEB477D65D02C78F039AF563A0082C0C | sha256: 01BE4D03B079FFF4F4FCD3E6C259E9826C465D25D32E6CCA5CE5B4FBF2709764 | sha512: 7905910B2FECDE2CCBEE35307BFE2340AA0182437F874DD3FD6F23B84A9939116B5846BEF39A5CD46B3638AE68BBD47059494432659D57BCD91106ED852E32DE
tools\NuGet.Common.dll
md5: 4B273FBC6EA93126BBEE71B198565276 | sha1: 044ED7B1645001F0F5B928CB9930EA1B951BC47D | sha256: 50BB72D67EDBA2B82708387398418DADBAAE2D2C086AB539052AF538361102D4 | sha512: E1D876FB7C068DBD50C534CAE740C0E94432FFA2FF05A25812DC879725F5B6DE55DC676460C660F7ABA031D84E289460694AD9BF7CF1BF77F5FED40522010EF5
tools\NuGet.Configuration.dll
md5: 2D5B6ACD91076FA988E439D2E434EF80 | sha1: 407EC5AB7CDE46D365974B59553D91F9DB54F716 | sha256: 452934F8EA82D0FA367B4CE848ED6F1DCFCD20D48BDE522BABB768A1172C4E86 | sha512: FC0FFBB408BADCF77C735B654E236F7A7A21A86634603587B00CA9BF504E8D64B853FAF8674D335799570BB509531B8FD579335F9E75358868CF22FBC3E337EC
tools\NuGet.Frameworks.dll
md5: 0E2DFC149150E59E0727BF2228C08B10 | sha1: 86E8703F02D624C9EEA46AC8775B107E5F0DB942 | sha256: 3E43B4DF2B808DC93C4A9DCF75183A8B59126724E97F47DD99C25EA69068CF95 | sha512: 690387E3063525EB588609054FE4DEE1EFADB119128E3582F5D2CD62EBEA102D27BD4A67F8344C752D4D9C89173AFFB6CE82A6941517F196A1455D130BF8AB78
tools\NuGet.PackageManagement.dll
md5: 716FD1546245E4B09AA1AC5A4EABA717 | sha1: CA21A5E422E96EE0E54543710E7A09D7110EC995 | sha256: 5DECFA016498DE482342EFB26B382656E0E4F000D61CF251B27160147F6DD686 | sha512: 7EF5CE0566A3598AE54FAEE367804A758A1EDB18973A58180B9A061904CDD03CFF916B12E2A39147E8FCC7E9B05938919C757EE291757C27177FDF64831AAF0E
tools\NuGet.Packaging.Core.dll
md5: EB2C702DBE9431D3A17810FC65DD2C47 | sha1: FFAD1B8808FABD24BEFC09B0ACC2D9322C7BBA35 | sha256: B8FFA45EE26DBE334E41B07C74FE76988946E55BFD4FB226DCD26969AEE0E39F | sha512: 151C2A74920116A8D1C05C2ED6C89CEFA5DFBA1442CA31C957F729B24F0E0B7983E542F914F86AA1C195499E8435AF0C0A0DDAE93BE1D5BF7CC542798177A55B
tools\NuGet.Packaging.Core.Types.dll
md5: 7B4BC441C024607D30C6D918A089488D | sha1: 7D356D5AB456689BECC804DBA6B923413C5B3EEC | sha256: A166E4B887873E9B2F9A55EFFC032E815F8E3E3480A8852D33F87CC6A3A83BDD | sha512: BF8FD518F56103DBE5DA0B00BF5E927DCB13404D9C264FFDD10354A11CC53E5868D1AE159C0BF6CC1274AB7E61EC83E0A1645E6A99EFF1F9D201A2FEF42A6698
tools\NuGet.Packaging.dll
md5: E2796AB79A08B8E21D9AE3A5542980B3 | sha1: 9DFBECEC9A80AA95177727C704529490E83AEE4E | sha256: C1A7BEDEF7713377B672BEEDA3DDA391E181B95950C181991F3EBC16AF2A0FC7 | sha512: 04DA912F1F3D1314509CA5D865437B0FD178CB9BEB288C001181A82B113BC2D84C7994D2297FE6426DB81CD3A75D4A80AD8ECBB75EC656396A237B5488D9D706
tools\NuGet.Protocol.Core.Types.dll
md5: B07A32D393773BFD2C5D040A3E3B23BB | sha1: 1D7B79D6F85B2C69F6D2C959575DADD8E84A7286 | sha256: B6D4B241B35D5EC575888FB04B24080D246A0870875997F4B604C4FC1030C291 | sha512: 980BE47EB14E6584D0591976A0F755CF0216230C97551865F9EC0F1496CA069C7AD11DFA095CE62B176AE42CB6E745AD28A7D0FF98F9A495B604AE505E24F539
tools\NuGet.Protocol.Core.v3.dll
md5: 5CB1C63C28AC5651100D8818E6006856 | sha1: 0A86DC028AA22C3DA5E98AF2170D584BDA25DB7A | sha256: 665C5624996F584B5BB6BC7D58ADD8F046B28EC2417C3FBC62EF80F40FD0D035 | sha512: E3434BB4E9E9FB2BB4E76CE8E874E85468ABC3DAF527192F82E26E470A70E975885409A2DE663912B1F6AD2714D3BC793CC114A8DFE1DF2361FE77C83AA7948F
tools\NuGet.Versioning.dll
md5: BECEECFC65D9D9E3444821B514091029 | sha1: B6372ADC2E229A3F59E4AAA0875026BA8838D86F | sha256: A5374612C3042005E64E16B134110DD4006AD2598D05C8CEBF4BDF0CFD2BF0B7 | sha512: 51BFF03CBC25D183397F30A281DCCA860A03A43381570126CA4A72468E5072E8C710ABCF8A7A522626E59E3939984DBB17255B35D139D2A836884EEE30744DE8
tools\PenImc_cor3.dll
md5: F0CBF22D46BABE8FA8C300895B778479 | sha1: 8556D08F8C1E84042BE54D88D9A0B95B306F8B0C | sha256: 6A5E57D2390F8075C0DD022F55CCC8981ADDCF822952E07A50614145A162D8B3 | sha512: CF4D37EBA1504BA90BDAC824AE12157B23ADB877404B30AB36F2A18CDB065E8019E6411F9150DE773474DF647434738BEC2F28727A5E5051E670BBD4CA307835
tools\PresentationCore.dll
md5: B89E72B197DC05381216CA51FAEE7693 | sha1: 377CE66B159F58BA0AA3D4CF77F3D8AB96205623 | sha256: 51C0B89069AAD650AEE18C36685A6737AD48FFB0C2738EDF3ABAC0BF69A4F924 | sha512: 9001BE4116549CA09C0333A9187FF8B7576DEE48DB68A10D0D8104376E02AB696291728023D6DE00002E6560D57D4BCAA94CE73192B7D1F619F39A13B91334A0
tools\PresentationFramework-SystemCore.dll
md5: 4390B293941E372B3C8FA0A223630E0C | sha1: 6C8D240D8A322283F83C8C4A760268FE268E744B | sha256: A5BA19CA5ECF4BA0F8806280AE7FF909BA02CDBCC1741F1936CABE7A4469C859 | sha512: A20C0FA1B67FA62485B5B3A93EC4E652E3AB4E55A2E46E00997FF48B078E2DE515D3C9DC23995988054969206F883E50709EBE7F681B68B6B761C81C9B42E669
tools\PresentationFramework-SystemData.dll
md5: 2C6347310714770F4E88CA6DD073CF57 | sha1: 82738B5960EAE478FC36B8F22DC434E82FC56CDC | sha256: 5FF7E3FB68C8C32E83889AF9F1814CBC0B436887FFDDE65FCC1246B1524A07C8 | sha512: C825DA4B8C5C3B3579270097556E8C73343398001DCBCF50A1ABB3997C74D422F8A0A2122DA1461271BC248231389248736150E93E7637BCACE9B61C0D4C4AC4
tools\PresentationFramework-SystemDrawing.dll
md5: AEC835AB5EF13B6DAC465017B2C565A3 | sha1: 57825A0335E476428BF411FB3423D7B5381DB373 | sha256: 9F25221B5E3FBBBB46B6A20CB136683BD512DB9BA80824DB8DC014AB34A4C30C | sha512: 375043CEB5BC703764A7591489A5C80F3B794B34DD3D5645AD7B9FA7040216FCA7FA12D788757B14487F9288E90955180FAD4A587F3952EDF1228F9B71E5583E
tools\PresentationFramework-SystemXml.dll
md5: DC93DF9E69DC025753C927A2DC93560D | sha1: 22AC2F43307BFCEDED1FCF63D7FFC95C83A68066 | sha256: 182E211FBCE6FD25D348261CFBE662647F6746C4BCA53AAED7144EFEA027F6FF | sha512: 175A94C5F1C73D14CAA00F048D6AF1191243BFB96E48AB24CA2E4D94196685AEE69210D100D53310C147C833A91F802B834835FDA581743FEFB678707F27C32C
tools\PresentationFramework-SystemXmlLinq.dll
md5: E213D12E5753AD91753CD0F6EE4ECD8D | sha1: 5F109B9F109B669838FF122F0712118DE4B30D9B | sha256: C4D9402457F74B8381C574A943C8A00E1AE81FB97A925C64F188A8A1E6D08082 | sha512: 6C178E6E8AB868C25F844AC59FD7CDD39DE94CF3D4C06036137E9586FE38B1E9FE8BD0BEFC6E92BCC7B8DCB701F65B33AAB55DDFCFCE0A5CB4191A2B74F3EF3C
tools\PresentationFramework.Aero.dll
md5: 2A8EAAA04C0F61C3A6DFEF73F4C05BD9 | sha1: B290335F094CB6EB4AB850B277E92F9DBA71B2FC | sha256: 24D1253B11796AA30CD77FE5F16F50C00C1DC29A526833A1BFE2BC0DBFE50C2D | sha512: 20EECF8D901C90588E8A03C18E03231E90AFA400F352AA739BA9E7470A4CD324BB8914BE281A26ADB82686962492C161A67FFB5959507DDE73A7F5FDAFD70F4D
tools\PresentationFramework.Aero2.dll
md5: 5D567365976F522A319516FE56BE2DD8 | sha1: 698A3FF756B0C09FAFFBEEAF9223F631436926AF | sha256: 67B3D885EBA60ADB2B811955AC78763E98909862D91E85B814FBE53B6ADA069D | sha512: 9894C217ED0F1DE745109942DA5C79E3B80A6AEDB90853051B552FE64B30740AFD0E706178426E1F230C32C1530ECE8AD0305092E81042E616FB6B4970B1C38B
tools\PresentationFramework.AeroLite.dll
md5: DDAD968E981D5279F996EF6D05408BA8 | sha1: 48120961DA50392BF620D5BD0E0E0C740B2B3A37 | sha256: A7DB3FBA5AC8839D0A0AC35D17E02AC77A5B3D49B183861321E28AEEEE41286E | sha512: 8CAC7538E45CA5FDB4C4D3FF4C47CC27D54C0DE9F6F402343E2BF2FF0B1C5E18903534B00E994A04D669EDDC46EA20A8CC8FDB945542C0F96B53A29C8B8780E5
tools\PresentationFramework.Classic.dll
md5: C49683592ABE3E654A6B2DDC83DF9899 | sha1: 66B07D276104AFDB057F78B7A78D236173F62A0C | sha256: 4026F2F47A5FED725213A035B69C16F1276DFE257BDEA11F65991DD301DBEB8F | sha512: 397015D1D2F11390645B12E4F24675B9754F1FB521A2224461716794B96134B6F0E34206B1AC18224F2F5DEE3368DA8864247418DF639FE16D2C7A87ED7F3E46
tools\PresentationFramework.dll
md5: 39F1324821D4AAEBA91CC091C52542D6 | sha1: 3E82017ED8CD04802153848A2C1C5CD3B72C0E18 | sha256: 83D3BBBBB042E7FD67C5ECEF4E25F506D136DAF93A58C36D1485E9ACA79015D4 | sha512: CB6A3F3232B2156643DE2D3CF4E77F2296E8A8EAEFF497EC7B7378A771C1DDFA526C2CECE3984EAAF208B4D76B0079253731A9D7BE6B6C00D6AB5D4D6D56F284
tools\PresentationFramework.Luna.dll
md5: 686F1F98561C072CF85D272C9445FF7B | sha1: 2B24AAA1EA2CE76A7A51CB690F1913F5A9D9E0CF | sha256: A96BA0EACE53355F23A2C211FB716AC67927F7D78C07C9032A359A1C6D786B9F | sha512: 5465D010ECFAE0CDB8290D83786A8EBF0E71A5AE87519075473E46EDB9BD6899E741565E4AA7F6BAB1228578CEE3AA5B9E0FDFEE70EC7BDEB5538C66DAFC9E0A
tools\PresentationFramework.Royale.dll
md5: 330C95A75C92B97D4F5DFBFB1CF07C9E | sha1: 1871AC4CA9AD7AF0CD1D2B257BB228B09D070EB3 | sha256: C94D5108FDA249F4238EA55E5CA1D7C8B89AA4D342F0763FB6FE513ADEF26EF9 | sha512: 58157837E31C8031A60E8CBD28623A1D63FAE22CC458029571187BA1C94846464961C395DF9F28ED125284FEF11796DD7A133DD2D214FA41B0E38DD1BB27D093
tools\PresentationNative_cor3.dll
md5: 75A0E2514821109A67DD9604F9639AFE | sha1: 051296BA728E0A92D260D075C7817771AE3690A4 | sha256: 9299EAD2FD0603FCAB6463F9221887B76A622CC25FBAFDA7AFBC2D3BBDCC8869 | sha512: 69A9FC085A38B06FA248443F7E8EE95343C6094F375551DCB973B0679795379425261526965E93A49E652863AC91E903103D293A97042A660B4BBB34A065B8A7
tools\PresentationUI.dll
md5: 893AC3A1D260C5C718CC60183BF207DE | sha1: E1680065A9336CE3EE79AAD88732F57C75BCD7DB | sha256: 4642E2BC643DD727FFBDE45D9CDF1B837C40C0298E2A1CD368781A179B52A0E6 | sha512: 979B13021EB68CB2C12174CB1D0E2AF6314DFC97930B71798C0BB38ED17B8C2844877CCE031A4134C8FFBFB59D2073277B31A31CD5B0F09214ED8E2A5EB43448
tools\PropertyChanged.dll
md5: 274FD7371C7E1725694CB829FEAA0CB2 | sha1: D7CE2EFC19EC6D50CD773604C6921D736631D273 | sha256: 1E5C409D54B5F030CD9583A506E96A9612572C68B016BAA1A618A58F14773BA3 | sha512: F44295BA52B3CF9F9FAE476C8217D2F2433B637C59CC52CB20438D8F6EC7647820C568388662C5D08C0558017BA08C578A3CA4217E85A8F11A7B57ED98ADA85D
tools\ReachFramework.dll
md5: 710FA67AEF9C2D1BE99A77A0BED7D6B1 | sha1: 71409A597D2770159F3EB98AAF9BED53F99394B0 | sha256: 221A7D099D7F52F0A03E9506D0291851710E6E7ECA3A0A6F12FD6A2FAE59A3CF | sha512: C4AB8A2ECDB417C0BA723693340E37207DEA0BACB4892B1DE87480A8800B526D171E68D7A4001714F3C9F1E11985CEC633162D4DA801DD0B0875BF06619DAE9C
tools\Serilog.dll
md5: 234566184B6371C96026FBE9E45C5248 | sha1: 7191C8079646A1626661AF0FBB11F6A260CE04E6 | sha256: D2DADE179BFE7DE685D9A0C7DDCD725897DD7FF100E6B46AE62432219B341254 | sha512: 386CBA98445A2B3991981C7775D7C01528E2D3C2CF1743CFB13308E4B65C930DF43F7584FE3A6D904C9F0B48B77BC90A7132925A5513E876AD243BD087045864
tools\Serilog.Sinks.Async.dll
md5: 883E4A377F9074BC5A135F95F85854CA | sha1: EE6BE4A700CF784FF7963C5B3429ABCD37AF41C8 | sha256: F8DDB82C7B4C125D152598C3B68EFEC5E390594967BB0ECD44DF883F00F45F89 | sha512: B4E48C4172C80FB3D6C1D16E140FFB3AED78AF9E631450252F542E9794DE1012315E5736097636BFF2F100E68EC985831F37AE6A687D6EA96094648DA96E1031
tools\Serilog.Sinks.File.dll
md5: 4B37311D81211053E72AA74E67E1DD98 | sha1: 47F7E51C2CD6F6B30866AC25E774C022708C09C5 | sha256: 7A89B833D7670F21D3FA7253BA7C34782C6A102F63679CE37EC94B86F98DD09A | sha512: 6007A77E520113CFDBBF8D996D634E1376077BB95ED897099458AD786035906ADC232A2DB388A82C0B2804C93E920469FEBDF2CA67338ABDA92D1CB9CDB0ED4F
tools\Serilog.Sinks.Trace.dll
md5: DE84E23D7E258E442822EA81AFEB7AE1 | sha1: 50535B48E3C3FBFD634D693743E07AB139FB7C45 | sha256: 63BD945560A936C4BDA46701FD86236F54CE6BD818865106D97B7ABD2F6873E8 | sha512: 277DB937F5B340EF2CF6CED488CA53CF0428BE1C76B9326497CE6D8F314D3B81132D7758780F535F4F2E3D11752F75533B79437A2B0FF3E09A749E93AE8CE8EF
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\SQLitePCLRaw.batteries_v2.dll
md5: E965DFA46A846A662D0270DD0B4F1D57 | sha1: 840BE2F5BD0154A9F301BAE7B4159C1F6345927A | sha256: 7DAC42FB641F4B58AD5113C6DFB58207A0F3DC71622C146C3FBB36B479265A14 | sha512: B35E4993E666870097857DAFDE05CD17560B4D93B3DA40B30BC1685504F2A887D00915DCA32F0CE859CADF7E53123F86D4AC4E5C270587864F5D8645AE6A5970
tools\SQLitePCLRaw.core.dll
md5: 6B0D9F0A5E6FE1F077D806B1846EBA46 | sha1: 81957BE106AAF73980B2747240F2A632C2A7524D | sha256: B35793A06CD113E39A4BC5E85CAD059B9E1960378C38AF8CDD18CBC03320969A | sha512: 6C0157FDE7ECB38DEF4F5A230DBC699D542F2326DBD775A78A22B92BC66645A728183103333289B0DF4362895CCC019086B2C39F4D774022018035A4FCF59250
tools\SQLitePCLRaw.nativelibrary.dll
md5: 85557BDEA9050C65FD9BDFFCB86FF982 | sha1: C48922C3C406D5D04E272533FB8A3B9BAE8BF9EF | sha256: 7F4081E8EA2B17553DE6A0149DD46DB8B2B189311C618260031EF0910F7219DA | sha512: D4200EF8A4AD68FAB0D9DD5D44253141FEEA9E180367CBF7489870C1ABDB8C8B8C08CEC46C4CB3EFB62B6D18BEFA471915EA05EB8C5C2A279B9A46F0D8AAB592
tools\SQLitePCLRaw.provider.dynamic_cdecl.dll
md5: B5D64F84B8E2DC4239705D9BF2A16DCA | sha1: BEE2AB972396FCE3E7425CC04B886E27DF2C4EF9 | sha256: 4732FA586CC5C37DCAFF5CCE097E100F0298485B1B160420633B1EA57105B8C6 | sha512: 8E6180461AFDEADD674BB945CCD5282764C8D801A06D9940F371E2F96EBEB59E0E17616F204274B005D5D2AB68F0E00D7F79BECEA8A7761C251655C0B3AEC9A0
tools\System.AppContext.dll
md5: E0B030829DC11BEF62D52C71057A9B65 | sha1: 1F9B5944CF32BDDA23903AC0A0C16961F0E8EE2D | sha256: 955DB4E3C6922A9187103881EFAD839662EA2DFD283273ADE1CBA3D706E43869 | sha512: BB40CC99551F653D2EF16203082888B9CBC16DDC081BE9777B3D35749CE2D768A50D36A2ABD33A124D3701A94C3E78F3B18B6B069AD5961729FEB108A4510B99
tools\System.Buffers.dll
md5: 4FDDA7E062B5DFF17B11FAE736B8E4C9 | sha1: FE9F8C946F2B8FA8A7ADE28BDB2E413DA6A32BBD | sha256: AA75A6FF36E829F0DA05FE22024648DD3E863C4046426C8E51A5B7F3DCD74C84 | sha512: 9D8830CCBA2B89353BC6FD90F065ED534B6C7BDD893DE1333C0EEFB622ED5A47B39F0C2BDAE8F1CF3A3B7C414F3E7D3A6023660F7C9457823B424D2A5856E5B3
tools\System.CodeDom.dll
md5: 4B07CA3824CB6A85FF3E635F443ADE2E | sha1: D706DF6D82F6B8B122E81D33730B5E32A41966E9 | sha256: 7FB90FBA42CBD5F1DED15C2AA048DB094EEF34A6D1F5C42FFA161712806885DE | sha512: 31D94A493B940786CD4456F4AE7A9248531AA934095C7E49472CF141CFB52F9A9C4F769EFD0425F37414FAD43B24CE0109313130BAEC6DEB23C09416A163E128
tools\System.Collections.Concurrent.dll
md5: 2BD727ECD35F74D849E5253AC298CE38 | sha1: 52258D45F652005A0C34AD6537A7BD27B1E282AC | sha256: D7BD306CF950A5CD46E70C2E7781118E565C8C40313F84FC911D4144C30EA683 | sha512: 5C7128EF1B9D9D6D352BC1A8FB136197A462B0B076034297AA94897FC0260773D1A8B63BCC2B9F8EE26DCF5CA3D470AF509D4B4512FBA02B21FF4E749E59E612
tools\System.Collections.dll
md5: AC2ECD45DBC6FEF9ADA8B362B8988807 | sha1: 282D72385498FE80C69895E057F3DD42E2675DE7 | sha256: 9FE786253CE34E91FEA09FB872B383DA8C8AEF974994493EF5A45F05E3749468 | sha512: 7D11CD6114484E2BB9B6742CA22E60339D0A5287A991A14B706E726791ED6EC060CB1EAFED6B694DF68907DABA71823C816243A1A5CB8BB20B3AC11F3E94B32B
tools\System.Collections.Immutable.dll
md5: 607F4F4242FBC364B54E339A0624BC7A | sha1: 2DD76E790FC4B47A16B2229016CD5EBAF3A1AEE2 | sha256: 66EE817874DCB4A7D49536CBEC2CCF5FC16C96C64F03E7E6F2C7B996B7373849 | sha512: D0F3B64362DF92FF0E48A4DE590D77ED63F0FF996F89E540348345C4B58D590E9F37177DEDE2F540195F36709942131BC65B51B6FB7F1C3F3C56D17E3EF4A656
tools\System.Collections.NonGeneric.dll
md5: 452C0181E7695605C62B1484A589A7B1 | sha1: 0C64FE49E445D15B98A28B46580EC7CD4F8FB9CD | sha256: C731282E267815E3CBC0CB950238A8942418D6EFCC9DC41C5B0DBCFA75662C09 | sha512: B58775197B715C9D2A8E0D24999902D53BF26043617AAC7E956E9090EA1703225FB22B5D84C17CAB7CC69583FF3F0A11A1F54832E157DF37AAFC1A40A6C35492
tools\System.Collections.Specialized.dll
md5: 3ED605FA6B948C22501F04B271867409 | sha1: 6096FF5051B4BA5FE18C98FE1449ED15994258D4 | sha256: D72C9EB2F9CB64F8A04100F3DB09C319497BDB7265A1EF5BA7D4925292943A3D | sha512: 216948A23BE61ABA927AAFFE0E99855C7A8663603BF4C737B06FD353487E13681BDE624EDD520A27128D8373C40524ED5610C887C4454B3A7435ADD54056DEE4
tools\System.ComponentModel.Annotations.dll
md5: 0EE624EF435A456939F1379E8884F18A | sha1: BB5899A6A39CFE375D1FB946F26F48C8E4D4EB6B | sha256: 40F5C99CD44BECCF6CF796654BF499DF7A28FBFC0FE66B6D6F74C063DB43177A | sha512: FE9B8F085940C15B714207423E294745AFD1B9F9E693B9268343ADD1D638A64DDF083062DC207315573FEE1B5CE1A652E42C5E2720AB6435180EEBB0FB833DD9
tools\System.ComponentModel.DataAnnotations.dll
md5: 5262A1B825A410DBD79BD2D13AA02CE8 | sha1: 51F3C5378BFF2B80DA16C4D1002B1A9625D3878B | sha256: A1AF7460006F3F25E99F11762D06BEFA6962ABE99AE07847057D91EECE8B705A | sha512: EE8FE4BA5EBE5A148ACB75F14ACF73E99113B279A749EC82899F056499C01E0DD5BAE3CAB4E41F931B22C0927CC486E33863609D19908433D7179641A7DD7ACE
tools\System.ComponentModel.dll
md5: 41A6D36E3F421AFFF6F35827CCC26999 | sha1: 487BAD9909256459E30A5A76B4FE809B43841B3B | sha256: A0275A9ADF18B309429D24567BA23C6F5C197B788D1FC41207EC5B9D980E43FF | sha512: E3C7FE18A35CDF226E93F394C0CA5050ED3E810E144E8C7586EA6FF5C0829FB826BF44036520E9E910328883B100A4E5297D83DE99B5B00A31F52C883C236CDA
tools\System.ComponentModel.EventBasedAsync.dll
md5: 98E22A1C7B409C94DA0A6A619D0CC65C | sha1: 7C1B56538469CC4F77CADA8AED9F2B868059D227 | sha256: 5545920F8FB8FC765B87635B386305150F6EBE19243934663E436ABCC971E9E6 | sha512: 31CE8BC068D8693ED2E8497B9BE2E5658444A25EE7E1D64EEDA8D62F204AF52121C9E27A2D38D45072F990A0A3916948033A1E8C9BBAAB96C598EBE2D75D49F6
tools\System.ComponentModel.Primitives.dll
md5: 91FDCDF765B86EAE33AFAC3C8A18CCCF | sha1: 3D93AB92A00AD8D66BDA16DA4724DA00C1AC6902 | sha256: 2FEFA2728354C2A89B77155C56167A13E83C4693095F300F9050CFF4D665B77E | sha512: 9304B9AA6FD05911A8EFEF14BDAA64D5AB321F1C0ADCD8D79C8647CFFA615B5B0798D6D08A98616F44023355570CFB6E7428D870EA3EC25270C90B4D97AD7F29
tools\System.ComponentModel.TypeConverter.dll
md5: AF8C360A1A4D99EAAB4C82F4C3A34A13 | sha1: A3DA8FD4BA30D480E9528070AFE13C759FFB0F0C | sha256: 4C3F5840DDE17A55E515E47F14B249FA971D5DD550B237830DF79074AFE630B0 | sha512: 0C82347F0553CCEDF1B494ED765205988C074AC178E48DF1946C26A4F5AB43F631C836D523226F58DCF8F02ADF917BAE4E590F40F6D944BF2B668DABE4009F65
tools\System.Configuration.ConfigurationManager.dll
 
tools\System.Configuration.dll
 
tools\System.Console.dll
 
tools\System.Core.dll
 
tools\System.Data.Common.dll
 
tools\System.Data.DataSetExtensions.dll
 
tools\System.Data.dll
 
tools\System.Design.dll
 
tools\System.Diagnostics.Contracts.dll
 
tools\System.Diagnostics.Debug.dll
 
tools\System.Diagnostics.DiagnosticSource.dll
 
tools\System.Diagnostics.EventLog.dll
 
tools\System.Diagnostics.FileVersionInfo.dll
 
tools\System.Diagnostics.PerformanceCounter.dll
 
tools\System.Diagnostics.Process.dll
 
tools\System.Diagnostics.StackTrace.dll
 
tools\System.Diagnostics.TextWriterTraceListener.dll
 
tools\System.Diagnostics.Tools.dll
 
tools\System.Diagnostics.TraceSource.dll
 
tools\System.Diagnostics.Tracing.dll
 
tools\System.DirectoryServices.dll
 
tools\System.dll
 
tools\System.Drawing.Common.dll
 
tools\System.Drawing.Design.dll
 
tools\System.Drawing.dll
 
tools\System.Drawing.Primitives.dll
 
tools\System.Dynamic.Runtime.dll
 
tools\System.Globalization.Calendars.dll
 
tools\System.Globalization.dll
 
tools\System.Globalization.Extensions.dll
 
tools\System.IO.Compression.Brotli.dll
 
tools\System.IO.Compression.dll
 
tools\System.IO.Compression.FileSystem.dll
 
tools\System.IO.Compression.ZipFile.dll
 
tools\System.IO.dll
 
tools\System.IO.FileSystem.AccessControl.dll
 
tools\System.IO.FileSystem.dll
 
tools\System.IO.FileSystem.DriveInfo.dll
 
tools\System.IO.FileSystem.Primitives.dll
 
tools\System.IO.FileSystem.Watcher.dll
 
tools\System.IO.IsolatedStorage.dll
 
tools\System.IO.MemoryMappedFiles.dll
 
tools\System.IO.Packaging.dll
 
tools\System.IO.Pipes.AccessControl.dll
 
tools\System.IO.Pipes.dll
 
tools\System.IO.UnmanagedMemoryStream.dll
 
tools\System.Linq.dll
 
tools\System.Linq.Expressions.dll
 
tools\System.Linq.Parallel.dll
 
tools\System.Linq.Queryable.dll
 
tools\System.Management.dll
 
tools\System.Memory.dll
 
tools\System.Net.dll
 
tools\System.Net.Http.dll
 
tools\System.Net.HttpListener.dll
 
tools\System.Net.Mail.dll
 
tools\System.Net.NameResolution.dll
 
tools\System.Net.NetworkInformation.dll
 
tools\System.Net.Ping.dll
 
tools\System.Net.Primitives.dll
 
tools\System.Net.Requests.dll
 
tools\System.Net.Security.dll
 
tools\System.Net.ServicePoint.dll
 
tools\System.Net.Sockets.dll
 
tools\System.Net.WebClient.dll
 
tools\System.Net.WebHeaderCollection.dll
 
tools\System.Net.WebProxy.dll
 
tools\System.Net.WebSockets.Client.dll
 
tools\System.Net.WebSockets.dll
 
tools\System.Numerics.dll
 
tools\System.Numerics.Vectors.dll
 
tools\System.ObjectModel.dll
 
tools\System.Printing.dll
 
tools\System.Private.CoreLib.dll
 
tools\System.Private.DataContractSerialization.dll
 
tools\System.Private.Uri.dll
 
tools\System.Private.Xml.dll
 
tools\System.Private.Xml.Linq.dll
 
tools\System.Reflection.DispatchProxy.dll
 
tools\System.Reflection.dll
 
tools\System.Reflection.Emit.dll
 
tools\System.Reflection.Emit.ILGeneration.dll
 
tools\System.Reflection.Emit.Lightweight.dll
 
tools\System.Reflection.Extensions.dll
 
tools\System.Reflection.Metadata.dll
tools\System.Reflection.Primitives.dll
 
tools\System.Reflection.TypeExtensions.dll
 
tools\System.Resources.Extensions.dll
 
tools\System.Resources.Reader.dll
 
tools\System.Resources.ResourceManager.dll
 
tools\System.Resources.Writer.dll
 
tools\System.Runtime.CompilerServices.Unsafe.dll
 
tools\System.Runtime.CompilerServices.VisualC.dll
 
tools\System.Runtime.dll
 
tools\System.Runtime.Extensions.dll
 
tools\System.Runtime.Handles.dll
 
tools\System.Runtime.InteropServices.dll
 
tools\System.Runtime.InteropServices.RuntimeInformation.dll
 
tools\System.Runtime.InteropServices.WindowsRuntime.dll
 
tools\System.Runtime.Intrinsics.dll
 
tools\System.Runtime.Loader.dll
 
tools\System.Runtime.Numerics.dll
 
tools\System.Runtime.Serialization.dll
 
tools\System.Runtime.Serialization.Formatters.dll
 
tools\System.Runtime.Serialization.Json.dll
 
tools\System.Runtime.Serialization.Primitives.dll
 
tools\System.Runtime.Serialization.Xml.dll
 
tools\System.Runtime.WindowsRuntime.dll
 
tools\System.Runtime.WindowsRuntime.UI.Xaml.dll
 
tools\System.Security.AccessControl.dll
 
tools\System.Security.Claims.dll
 
tools\System.Security.Cryptography.Algorithms.dll
 
tools\System.Security.Cryptography.Cng.dll
 
tools\System.Security.Cryptography.Csp.dll
 
tools\System.Security.Cryptography.Encoding.dll
 
tools\System.Security.Cryptography.OpenSsl.dll
 
tools\System.Security.Cryptography.Pkcs.dll
 
tools\System.Security.Cryptography.Primitives.dll
 
tools\System.Security.Cryptography.ProtectedData.dll
 
tools\System.Security.Cryptography.X509Certificates.dll
 
tools\System.Security.Cryptography.Xml.dll
 
tools\System.Security.dll
 
tools\System.Security.Permissions.dll
 
tools\System.Security.Principal.dll
 
tools\System.Security.Principal.Windows.dll
 
tools\System.Security.SecureString.dll
 
tools\System.ServiceModel.Web.dll
 
tools\System.ServiceProcess.dll
 
tools\System.Text.Encoding.CodePages.dll
 
tools\System.Text.Encoding.dll
 
tools\System.Text.Encoding.Extensions.dll
 
tools\System.Text.Encodings.Web.dll
 
tools\System.Text.Json.dll
 
tools\System.Text.RegularExpressions.dll
 
tools\System.Threading.AccessControl.dll
 
tools\System.Threading.Channels.dll
 
tools\System.Threading.dll
 
tools\System.Threading.Overlapped.dll
 
tools\System.Threading.Tasks.Dataflow.dll
 
tools\System.Threading.Tasks.dll
 
tools\System.Threading.Tasks.Extensions.dll
 
tools\System.Threading.Tasks.Parallel.dll
 
tools\System.Threading.Thread.dll
 
tools\System.Threading.ThreadPool.dll
 
tools\System.Threading.Timer.dll
 
tools\System.Transactions.dll
 
tools\System.Transactions.Local.dll
 
tools\System.ValueTuple.dll
 
tools\System.Web.dll
 
tools\System.Web.HttpUtility.dll
 
tools\System.Windows.Controls.Ribbon.dll
 
tools\System.Windows.dll
 
tools\System.Windows.Extensions.dll
 
tools\System.Windows.Forms.Design.dll
 
tools\System.Windows.Forms.Design.Editors.dll
 
tools\System.Windows.Forms.dll
 
tools\System.Windows.Input.Manipulations.dll
 
tools\System.Windows.Presentation.dll
 
tools\System.Xaml.dll
 
tools\System.Xml.dll
 
tools\System.Xml.Linq.dll
 
tools\System.Xml.ReaderWriter.dll
 
tools\System.Xml.Serialization.dll
 
tools\System.Xml.XDocument.dll
 
tools\System.Xml.XmlDocument.dll
 
tools\System.Xml.XmlSerializer.dll
 
tools\System.Xml.XPath.dll
 
tools\System.Xml.XPath.XDocument.dll
 
tools\ThirdPartyComponents.json
 
tools\ucrtbase.dll
 
tools\Ude.dll
 
tools\UIAutomationClient.dll
 
tools\UIAutomationClientSideProviders.dll
 
tools\UIAutomationProvider.dll
 
tools\UIAutomationTypes.dll
 
tools\vcruntime140_cor3.dll
 
tools\VERIFICATION.txt
 
tools\WindowsBase.dll
 
tools\WindowsFormsIntegration.dll
 
tools\wpfgfx_cor3.dll
 

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
Batzendev.Tools 6.0.0 48 Sunday, October 15, 2023 Approved
Batzendev.Tools 5.2.2 229 Friday, January 20, 2023 Approved
Batzendev.Tools 5.2.1 41 Saturday, January 14, 2023 Approved
Batzendev.Tools 5.2.0 38 Thursday, January 12, 2023 Approved
Batzendev.Tools 5.1.0 55 Saturday, January 7, 2023 Approved
Batzendev.Tools 5.0.1 50 Wednesday, December 14, 2022 Approved
Batzendev.Tools 5.0.0 62 Wednesday, November 30, 2022 Approved
Batzendev.Tools 4.1.1 149 Saturday, February 19, 2022 Approved
Batzendev.Tools 4.1.0 70 Sunday, February 13, 2022 Approved
Batzendev.Tools 4.0.0 277 Saturday, October 24, 2020 Approved
Batzendev.Tools 4.0.0-rc0185 227 Wednesday, July 8, 2020 Approved
Batzendev.Tools 4.0.0-rc0184 152 Wednesday, June 17, 2020 Approved
Batzendev.Tools 4.0.0-rc0181 134 Tuesday, June 16, 2020 Approved
Batzendev.Tools 4.0.0-rc0159 187 Sunday, May 17, 2020 Approved
Batzendev.Tools 3.0.3 513 Tuesday, January 8, 2019 Approved
Batzendev.Tools 3.0.2 274 Monday, January 7, 2019 Approved
Batzendev.Tools 3.0.1 267 Saturday, December 15, 2018 Approved
Batzendev.Tools 3.0.0 235 Saturday, December 15, 2018 Approved
Batzendev.Tools 2.4.0 404 Sunday, February 25, 2018 Approved
Batzendev.Tools 2.3.1 362 Sunday, February 18, 2018 Approved
Batzendev.Tools 2.3.0 349 Monday, February 12, 2018 Approved
Batzendev.Tools 2.2.0.0 562 Tuesday, January 17, 2017 Approved
Batzendev.Tools 2.1.0.0 489 Sunday, December 11, 2016 Approved
Batzendev.Tools 2.0.1.0 482 Tuesday, November 8, 2016 Approved
Batzendev.Tools 2.0.0.0 500 Sunday, November 6, 2016 Approved
Batzendev.Tools 1.0.1.1 860 Sunday, March 23, 2014 Approved
Batzendev.Tools 1.0.1.0 509 Friday, March 14, 2014 Approved
Batzendev.Tools 1.0.0.0 468 Friday, March 14, 2014 Approved

v4.0.0:
- Fixed an issue that caused the current tab to be closed instead of the one the close button was clicked on
- Fixed a crash that occured when grouping results
- Sort order of results is preserved during tab changes
- Added copy options to the context menu of search results
- Increased performance
- Replaced HockeyApp with AppCenter
- Switched to .NET core and made app self contained (that's why the download size is now larger)

v3.0.3:
- Fixed focus issues

v3.0.2:
- Fixed default value for base color
- Some small performance improvements
- Some layout fixes
- Fixed focus issues
- Fixed crash when cancelling search
- Fixed issues with unsaved settings
- Added more file extensions for ignored binary files

v3.0.1:
- Fixed default value for base color

v3.0.0:
- Replaced MaterialDesignInXaml with MahApps.Metro
By this change your current theme settings will be reset. Sorry for that.
- Fixed issues with histories (search pattern etc.)
- Some performance improvements
- Extended list of binary extensions
- Added key binding (ALT + R) for replace
- Forwarding key bindings from the current view to the window (like CTRL + L)
- Fixed issues when saving settings
- Enabling per monitor DPI
- Fixed rendering issues in results view
- Updated icon

v2.4.0:
- Added notifications for things that went wrong while searching or replacing
- Fixed various issues with encoding detection
- Some performance improvements

v2.3.1:
- Fixed install-script to create a correct desktop shortcut

v2.3.0:
- Added visual hints for search
- Added more logging
- Added editor commandline template for Visual Studio Code

v2.2.1.1:
- Fixed a massive memory leak by updating third party components
- Added long path support

v2.2.0:
- Added proper handling and reporting for errors
- Added a feedback button, so you can make suggestions or report errors manually
- Fixed issues while closing tabs
- Fixed crash because notepad.exe could not be found

v2.1.0:
- Added "Open with" to contextmenu so you can choose the editor to open selected occurences with
- Added "Reset all settings and restart application" to options
- Fixed file content duplication during replace
- Fixed issue with empty history entries
- Fixed history list editor not saving changes
- Some performance improvements

v2.0.1:
- Fixed native memory leak while looking files

v2.0.0:
- Modernized UI

- Improved performance when finding and replacing
- Fixed encoding detection for file operations by using Ude

- No self update anymore, just showing notifications about new versions. Update/Upgrades should be done through chocolatey.


This package has no dependencies.

Discussion for the Batzendev.Tools Package

Ground Rules:

  • This discussion is only about Batzendev.Tools and the Batzendev.Tools 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 Batzendev.Tools, 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