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:

2,117

Downloads of v 0.1.0-unstable0001:

319

Last Update:

04 Jul 2017

Package Maintainer(s):

Software Author(s):

  • Alistair Chapman

Tags:

git profile manager script

Git Profile Manager (Install)

This is a prerelease version of Git Profile Manager (Install).

  • 1
  • 2
  • 3

0.1.0-unstable0001 | Updated: 04 Jul 2017

Downloads:

2,117

Downloads of v 0.1.0-unstable0001:

319

Maintainer(s):

Software Author(s):

  • Alistair Chapman

Git Profile Manager (Install) 0.1.0-unstable0001

This is a prerelease version of Git Profile Manager (Install).

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Git Profile Manager (Install), run the following command from the command line or from PowerShell:

>

To upgrade Git Profile Manager (Install), run the following command from the command line or from PowerShell:

>

To uninstall Git Profile Manager (Install), 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 git-profile-manager.install -y --source="'INTERNAL REPO URL'" --version="'0.1.0-unstable0001'" --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 git-profile-manager.install -y --source="'INTERNAL REPO URL'" --version="'0.1.0-unstable0001'" --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 git-profile-manager.install
  win_chocolatey:
    name: git-profile-manager.install
    version: '0.1.0-unstable0001'
    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 'git-profile-manager.install' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.1.0-unstable0001'
  options  '--prerelease'
end

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


cChocoPackageInstaller git-profile-manager.install
{
    Name        = "git-profile-manager.install"
    Version     = "0.1.0-unstable0001"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'git-profile-manager.install':
  ensure          => '0.1.0-unstable0001',
  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.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

WARNING

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

Description

Git Profile Manager

Work on a lot of projects? Constantly needing to update git configs for different projects or teams?

Now, you can quickly create and manage a collection of Git profiles with unique config and easily activate them in one easy command, making repo config simple!


tools\clrcompression.dll
md5: A49E6064B001E60210EC935440E60CC0 | sha1: D44DB34A8201FA1088540F190EA1D1C5D70E8D46 | sha256: 39E51B7338A3544C0852EC84519CACE6AC2A43E32FB1AA82CB6F739C56381896 | sha512: D6F9286285D66B957036E163153B440DA445CB3E6A98154D613DE1A86B74B1A699AFB482911D51BA18492DF54DF4C519DCCBE6F5D739F381B835242262C80280
tools\Microsoft.Win32.Registry.dll
md5: 48C3BF141DCDB679CF35AE2C240A86D2 | sha1: 80A1832619E771EDCCC2EAB3FA13D3F657D0EAB4 | sha256: AEC1B56DD9088473A5511E13B2CA88101C88D90BCA5743AA0F73FD2FBC38D92A | sha512: 59C2AD507431573FC69F87323795312C1E12F60BFB0FB065F87E9472045BFE545D074AC9ECA64727BE4FF63EA7A50EA39C01EB00E7214DA19B3AC3927CF0FE78
tools\mscordaccore.dll
md5: 835F994C4106102E02158383DA250D22 | sha1: E897CB5F43365C0E116330D1EA064374E8AD86F5 | sha256: E9678224776DC0C711081AF570FDE6CD995457B2B4B449A263FE17CF136546B7 | sha512: 07787B0E7F20620073554858AF7F06A6642C0AC9875C9F4EB499D6703C8ED451F969991E8D2E5D16FC57087BA72D7E05A33C49EB13DED7783919E19A8F68B512
tools\mscordbi.dll
md5: 4BF0B8C2293604DE7091DE0C0CD13513 | sha1: FD874F12518B4974749B393D105B3EE534ADB29A | sha256: 664060B81FF5E0C964827BF5458C38BB7D155B3451FF56E4DE49074C544193D9 | sha512: FE5FED5BA0ACA4B0828B66A37AAB09FEB586921D7495C9AAE5D684966FA68C4FEDE60F6177D56B39D693DF86C974B99F20B251923BCE323F80469FFC27C5E66F
tools\mscorlib.dll
md5: B3093274684AE140734B1702C0442C0B | sha1: 27FD011F7F9144AA266DB2BA60A76FB8A67BC487 | sha256: 3BBC43A55550324505B4CABCFFABC04F7B6A46E9E793EF54777078660CB2A343 | sha512: 551684003CEC379A4BB732BDB8DAFE01697259E5C7DF082CF3FEA5B4B40938910012C2DC586FFBF4EAB1C341E636A71DF1BD1CF445AE0C5E5AE97EFA3E68B91E
tools\mscorlib.ni.dll
md5: C977734013476D70F883F1ED2A0ACECE | sha1: B9034269C852184A914EBF911F074092F99BF2BD | sha256: 360A6F39DF8643F9326BE297CD5BADE607A903C671E6EF0E7ECBD094A863D2BC | sha512: BC3572416AAD7B63B77877EEC8B4B2739A5147A4543D6D7D3ADE7392369055C091232624FE1603633D9B4EC87AFE2C59572DDE32FEF4AC4A15C410C26335E2FB
tools\mscorrc.debug.dll
md5: E248027C4C150656889F70E270F8484C | sha1: D8E2BFC6FCA717609AC401236D9429F9AA91DA16 | sha256: 6BBCC758D248B900B70EFB6951A55F68CDB077C71C6C0851D430AC00130B0AC3 | sha512: B50D84DF26847137F14433E37213D2B8B92C686A0EC738F6A7D77F9F7F10FA0C04586768003B4AF22F76606E2B0AC9E91A43F657DD21D871D2FC3B029744AD2C
tools\mscorrc.dll
md5: 7A884ED340DDF69EC08E09A6A7F1DFA7 | sha1: 8AC424EAC9DE4816FA07188D253E41A6F23966D5 | sha256: 8913A955FCBF14F8B58BE3805F630FC6094BAAEDE8F8D18DB8BBFB836B190BF4 | sha512: 8CB5C73400308607851BFFB20485F7A412E840DD3886D0D5EA1462978FA463309732FF6AB0DE9E73A77FFC616FB242C8A411D439CF05BA3BD3A383C080E79FA7
tools\post-install.sh
chmod +x /usr/lib/git-profile-manager/git-profile-manager
ln -s /usr/lib/git-profile-manager/git-profile-manager /usr/local/bin/gpm
tools\pre-remove.sh
if [ -f /usr/local/bin/gpm ]; then
    rm /usr/local/bin/gpm
fi
tools\Scrutor.dll
md5: BAF5D112B5F85B81DF574F2E5AAC5477 | sha1: 44F9002A23F480DDB825C91117099B5CDFBC6355 | sha256: 338B00296DE964950A6B919A6DB332762C37674861125B35CD49A6A21C185532 | sha512: FB1F09FBCC3D6DEA3909F98A9BFAF6D340E9B5FF521CB7C62EDA49DBAC659D95F854DF54064F16FC65ACE9C5A336FB584F76ADF83201B8F58C135846230728E1
tools\sos.dll
md5: 07CBF846B48CACD469F633C856EFEA98 | sha1: DA742F788B9026AF824F34C4F5D09490DA336993 | sha256: 965B678B25D5EBE7D3E3F8FC901F5030230FC3E42DA7CD01C9B0AAD6E83E0219 | sha512: 866E2BBD13DD911DC0C5A6ADD8525A91D8544C8318BAD4D83CD62B9D4F6F94C3DF0DE21E253AD9EB8EB3F6DF42A2FA2CB728AF34284E315C64A57439096F72CC
tools\SOS.NETCore.dll
md5: 753EF16CB26C19D9254A3E9BCCE4A777 | sha1: 815E8A8578E183A162364DB3CD9153ED25DE6FD1 | sha256: CB81D8E42CB82F04527DF9B6C4B828BD4039234D5670E6E25731E613EC6717B4 | sha512: 9C4EFAEFB4D753117C9B31E8808A853EC7A1CBCF6896C4DE87B30C52FAE6CCE6D17E6D861B92E68F771D7638A41365227D9916A9D3283B68F5B5000E797DF8F7
tools\Spectre.CommandLine.dll
md5: 9F8E04B4CAEA12870B3D694B889D67A9 | sha1: EB711E479A5FB4B0A155EA59C67021CAB051ED7E | sha256: 1DD30FF4B2F35EAC3B7F88762111516EC30BAD5A1137CAB9A7A306B1CECF850E | sha512: 53940790C9487BD96D99C38789EF43A29AFAD3C218F217736E3BF866F7588B2789459F49CC127AB3F5E4902A6ABA74455270F81A231BB9DBCC612F1A2B807C9E
tools\System.AppContext.dll
md5: 8F1F6F1AA9D5E965EA91B1F3EAB38764 | sha1: 72B741CFA682B317BDCD6FF6530898393FDF15EC | sha256: 2E62EAE79B7F3E23E3458FD7F4229F2EB80FC594A641A6DAFB50F83A5336695E | sha512: 5979CE683756CD5929A41C8072311FCFEE8321D956E999DCECB7BCA2EC7F49B4C2E085D597C492C3C433216CCBCA12C37D9F96CFAD34FF38413BFC58E81529F4
tools\Microsoft.Win32.Primitives.dll
md5: B442F0EF6208D29834632762A92DEFCA | sha1: 74A6D5F0760875BE6B763CAA0C1234FA131A39C3 | sha256: FA6E3CD0F94506CA32A41E3BA7A7A2DADF8445BD091123DCD69E4AEAFB4637C6 | sha512: 365A1F0181D963BF120676791728EC0C9C333629CBE3D84DDCE2C830B4DB44A1CFE98C5C428B5D121A4E19BB8C66CBD0F9A1133C831C9C11B496C86FA93B741E
tools\Microsoft.VisualBasic.dll
md5: 6C7102AFFF4E53B2618D6393B88C7F74 | sha1: FC1025220D38B3DEB5AD90BD114D2EB48ECC5B37 | sha256: 2AFEB65652720342A1A976CD340BDF38860682183585C349C07D35B9D0ACD413 | sha512: 86303C89BD5C8DCA31397A0656AC280AB994AFC2959B3F11EBE6548AFFECAA4C5335CC5B1EE2253DE57FB56BF3BB53EC623E4D670EF7DE25DB07360C673B2740
tools\Microsoft.Extensions.DependencyInjection.dll
md5: 6CD63F93003D0D1D50FA8B343DBB6ACC | sha1: 458B44DF69D513AB9C24B07F4288E26E9C602DF2 | sha256: 080E4D42DB861B9B2391E1F4AC03B91A5253AD71B2FFB86618765F22CC7BA0CF | sha512: 16CDFACC1971266C067628EC2C8BD14A8AC42A7F84FA1441A0A8D52D80F4B535FA211AC2560C9E1D0729512F5D3319AA968C23B953D1047B594440E308C5664B
tools\Microsoft.Extensions.DependencyInjection.Abstractions.dll
md5: C39C3BBBEC31D1FC672AB063C4A42C64 | sha1: 5C211169DE589593E5C8EA2FA05D0C7CF88CF4EC | sha256: F2663EE082EE928CE9BCD16F08C64D12BFB72CC6D53E55B566C33997159AD2AD | sha512: DF4117120ED9D805258A516265227F48466BDC07CF6586FE197E8081715A6793486DFD5225BF55C524278D6517520D69F31EA6E6625D9BED4415A0AC90D3BA13
tools\Microsoft.Extensions.CommandLineUtils.dll
md5: 33C1F8481C02013D7717E12F497288C8 | sha1: 8BF1B19CDCB4E3A29483967844FC4C2A1A585461 | sha256: 22859B83CA7C70A71C5EB842C6685BEC0E7BB1D4C37423601FD750899446AEF6 | sha512: 50DFA46EB1A68096D165C1926F99DD5517015F9122388AF1A4F6C8EC7F9EE72B6F901A96087B091673F600932CB30E9ABF231A45DA29B953AC4A6E5A22E5A6E2
tools\Microsoft.DiaSymReader.Native.amd64.dll
md5: 65800398273F3DED3C264A6388A61381 | sha1: 8F3331D93A45BEB42DD51A2E8DE7A989413EB4CE | sha256: 10ED235221E1962DF83A5895E7AE1E157F12DADA11E679E3632961E9FB5C46D9 | sha512: 66B600AD66E8211AEAA9BCEBC8855DCDAC2DC9C63FCE92CDE3A08DFB00261D28D37D1E9CBBB9AE911972B64A1739D6D187597AA630A80045D7E22A8C7FDA90F0
tools\Microsoft.CSharp.dll
md5: AA9022B9FE1B393A83BC504B463BEA61 | sha1: BC806D6884453BFAE47001E44522EDD7BAB7814C | sha256: 07874811F11BACE15D1B9F29FA6A7F5FC30ACB208B551DFAD45A2295D5E758ED | sha512: 13D16EF303307C59D4411877B259ADA307EC2C3EBADC968379230AE4E66C1B2F86DAAA846FD8F85AAC7814D0E695F8F2821C0DFCCDFAB2FA62B995A7B23B3A01
tools\Microsoft.CodeAnalysis.VisualBasic.dll
md5: FFC36D237C95A5BF77AB3A2006C36BCE | sha1: 20561A7F14D722EAB330ECFBC1757EEA6B7351E6 | sha256: AA96736A56BEE915EE54A955DAE0A573D71AECC335F87A0DC75B6EE919DC85DE | sha512: 32025BF0C40BB00DFE2ED796BA5059832AF76F109C6D85461E97CF8676FBB9ECDF5FC5DD4664D96EAA3562049B41C03B2981090170EF42001D9AB7DB06A381F8
tools\Microsoft.CodeAnalysis.dll
md5: FD2D04EBE27E52A7BEE6712DB26155FF | sha1: 84397DBEE16CD89F9ED7714659648B9EE13798C3 | sha256: 71CEBEC5C2EA4F9E5908E0BC285299C6ECFEE97FE52C50F9930E57A3F3714D50 | sha512: 2B41902FF31961E137780D8418C95984280888D39AEA73A8483BACCFFFEB03965F27BB3741D85F0C5C5BEB5E0E49EA6FC8DA4C1CC2A6A7D381366ACE09818F91
tools\Microsoft.CodeAnalysis.CSharp.dll
md5: B1E32B1AEA309821D9ED807251F50BFE | sha1: B912303D04CC09DF33CE00136D41ECBAD34BB2D5 | sha256: 210BC789E71A4621DFF77660178686661325FCB7EA69379A542D12571FFAB8EB | sha512: 9722DF47F70D5BC7188988C07657228203B87E5C6885533234B4510BA3D6A93C2642D49CC0170ACD515155B794CE7EFAD4FAF57ADAA6C9CBDA3C6C30135BBF2E
tools\System.Buffers.dll
md5: 2A1996016129B3B0D696988002C738FA | sha1: 58D20D9961DB8A0D14A926DB2BB04C1C9C89627D | sha256: AFFE0828823B22A30833723F4743517AED3062094906C1C6A1EBFFA87CFA8042 | sha512: 97672CAF45FB6B50D9A250F9B68E6A1255AA389F3D658560EBFE32AD12D30D88F75CAEC0553BB33598B60E0550D6BB27A2307CD1E1AC5D7938262F4D0E832805
tools\System.Collections.Concurrent.dll
md5: 8EE4C9897B58BF93CB2A77AFDF861B2D | sha1: 5C9974C132931C857C5200143C9DFE9EFEE5DBBF | sha256: 3423F79A2226B9969D93EC7A7EE7A64F0F64F89EC39A3F78A401829CB3ED427A | sha512: A2256EF55670ECFD577F53A1F950C2E9D3F88C07CB511E5B188DF884ED47224AABA6912298196DC6A3565329A7DA29202218DC9FBC85EC19C72F1450DD34A420
tools\System.Collections.dll
md5: E1ED1404FB80D9080231A03BCF6789AC | sha1: DE23D63EE5C48B58BE86F1D34778C0299E4A3BB5 | sha256: E6A4F5BB1D3B9B63FEA41EE9A62C802989F03D7756D9AE7AF9A3F0B7294555A6 | sha512: D930BA391BFB07C88E8BC06DBD2926869686A98BB477039FC2AF28F1C0D1B2D1FF856E7D5E993CCE527F3E3D637001323F3D1C087E2D0F5D9C30B8A7ED9EFCC8
tools\System.Collections.Immutable.dll
md5: B949912DD4C1869E69B780C2049F25BC | sha1: C87461B26FE1EECC7C3CDE0B6C87E38B3408DB1A | sha256: 34F95499EC194A7F82BFA1E1D4962048705204BD226ECF6ACCE044D39B1D6CEF | sha512: 82974F38793050718EFF4406E70F36301E6C2B9ABD93AB3242D39905D7682BB61AF2ECB7344BBC871BA81ADD8D94E2CF17B4AFC865C97EC2E2E4D2CE9C602204
tools\System.Collections.NonGeneric.dll
md5: 79E96884FC5D02553DFD73E5FD4109D8 | sha1: 8C9C267961DA40C9ADCBDA78050D4D92F16A7627 | sha256: 5FE69BE0FE4264F8A710B600DF60FAEEC2B8513A299F8E7B6FA7305B0465455C | sha512: 535F1428206D975128DDF2AD1427ACCCDF917F4BFC9EE5755ED55425C62EF8C1A125228941EF1B1AFBAD6B347F3C60EF758F30A7CD7F83C560BA781B10438F86
tools\System.Collections.Specialized.dll
md5: 7C02BAAA1BB238FF60F3BAC5D1E14944 | sha1: D1DA47B9D85A97F6779E3B679D81CC458BD65EFB | sha256: F4BB09047E67199AF8E009DED12F8277F4A789C0842D9748A375785FA46EB579 | sha512: AC1BCA3BA5144131B34CCEE58464A3EE55F32274089E35B0DD15038223E7EBB37D38E796619D303EC981BDECFC677E1E43FF4F052F5BDE18B15C04A71E830CCB
tools\System.ComponentModel.Annotations.dll
md5: F644B3523CFF233D01FCC9FD68C5D825 | sha1: 6387A976AFB16C9F1127EE79E6ACED11A5C11798 | sha256: 9E6A35CD690D6D7A3EEDD2E6E03420EC3ABE540EC5EEC1C2028C63EFF119E4BC | sha512: A46F4BCA712B0C6DF93E99543120115B04A1ABDDF362B29ADAFED7F45F2086A7456CFC29B07B03AFA4B3776277D59245F188D54F744B4C3E0BA5FDDA000EA8F4
tools\System.ComponentModel.dll
md5: 31C8ACA250C8E48D4001006A0513C272 | sha1: 282143B10945470D29F6B64EC731B43E3332F67F | sha256: 8E3D2283842471630AEB477E9CABFE38887C4AE9FE6898251C7B282661F1F562 | sha512: EC4099655F18A6B08B45A57A3A31E172A5E6C588E9F3B5005DC99C96A1A2B5863E0DA90DC3706E1D25BBA4B5468B55460B7F2B435E8DD5396414A4D3C7C02E7D
tools\System.ComponentModel.Primitives.dll
md5: A9014A5C8BC1A70942C26DE0EB79604E | sha1: D2DE8DAFBED204B11FBB36C49A4473D7927D65C7 | sha256: 957001AE3D4D27582B88AF66E05E893107282A45E99A4937D932A1EFD62E00BB | sha512: DD4E741D0B7F073A50EEB482DD8686C8CBD2D3A07D052678F85ADA397EEC498C2F37203FA28AEB37D8CC081C4614A1D904C256BBFC3AE7BE676F9CC9F6A13334
tools\System.ComponentModel.TypeConverter.dll
md5: 3DC918FE0E091696E8D8C33048040650 | sha1: E6AF378FBB21DFF0BF3C621C5FCF3935E4816847 | sha256: FA0635911834DB46EAEA3C654D6921B18240071E2242D466756210C63828F21F | sha512: 8F25F0A7F2BA4A1959D1140B291000B212C4DEAB5A6A6B4CA3A9D5C6C2B132896FA166FB9678326E2F0A581A8C1E78DE7D14F30388365E3D3D1375A3DD05869E
tools\System.Console.dll
md5: 50C6B3C449BE982F08077DB868EBB549 | sha1: 0D6EA853F3E44DFB3944F5E391462DE80134D16E | sha256: 90D43E4F6433C8D4BFD9D0A33EFE649DA364240FEF080BBA593C06BCF6831421 | sha512: B6C81BAADE985C0A3DD4AF99E802A1B26ECE4C2EBC92E5E3283F8A8FDD28D1385EE3017C896AAF49E016379804106997128D762A298234D1C922573CE31529CE
tools\LightInject.Microsoft.DependencyInjection.dll
md5: 57291141B3F2DC391DAF589ED47A57C7 | sha1: 295499EB4100423D707CD6224B3CDB76BD48EE49 | sha256: 11F73845DC8A99364EFCD0E1644F9E7241D9B32774B6F2197BF95F22620D9F44 | sha512: 6432D32524B1BBAF81E7D1A8FFEC8F915CD7FFE43985410A46934A68A45B78AD84C2601A4E77046CAB7AF51ABDA10FA1E7043F94E1FB40934543D77B1E7547B9
tools\LightInject.dll
md5: A30C5C7A71127F3184A4CD83EFB626B9 | sha1: 21B28730609E55FEB97783E377AFDCCA44DF583A | sha256: 76FBDBD2CA0139B76C10C86ECAD53AE99D531A99FA64959632802E8662833DA4 | sha512: 42CA03EDE645D8C480126EEDEBA8D816995E12BEF813AD510EEDBF7D2AC2C945648850403C83465440E4A6D56D20577127F827A9450AE7BE0CDE5BDB96251CEF
tools\libuv.dll
md5: 5C8800C4E0778BA3FE7CBCC89C27C4C2 | sha1: 8EECA6A92367091AA60D9B42FCAB2CA7187BAF5B | sha256: 2ED233B0F9D24CDB53F7688FBF1C4297BD6EA11B221A5795905B39CBCF012555 | sha512: 804E7E78DC5D24206F345801263300D75003C24D4BE0A1ED01FDF4C2534A019BE0055A44B0E95B53B8E607A8F4DF42B8043533E98BF89B8A6417CB57402E108D
tools\hostpolicy.dll
md5: 19C9B531A2EE08BD516C9287D201A175 | sha1: F6610AEC0BA1695D505536E55E70441F1A373E30 | sha256: C98CA706EF1ADC05D7C58D61D908FA4F73F2394FF39BB83B2CA709AB2B53377D | sha512: A8EEE4D97C52394C00D2067A06FC7372B18BF9B9151B156EEBDCD3A8E88346B77694F82CB92E68FBE41749EF65454707CE4AC8D754EDBA04A9833D16645791AB
tools\hostfxr.dll
md5: FD2C523748DCBF439AAC981512B10700 | sha1: 03D8AA4371E52A966328F16581430B917B83B241 | sha256: 16FEDA1E342ECC4223E41E85C0861C5D95B3D9D3033E36E71631989503A445E1 | sha512: 7095FF73B2C5E1E2022F328B80D22039131BE582B99A3F34C9E393F9A891753DEA2A192CC4410FDA3375EB3EF5C166E16B40632441ABF024FDC34280D97ED048
tools\git-profile-manager.runtimeconfig.json
{
  "runtimeOptions": {}
}
tools\git-profile-manager.pdb
 
tools\git-profile-manager.exe
md5: 969B405F7B3E650C5D0B0355CB6D0E5F | sha1: 484488D053CB2F41102DBEEA38BAAB32D53AADC8 | sha256: 3406983809626D218FB854A87E266620795FC5636B38A06E6CC0BAA764D7BB6A | sha512: C412652D05C4B92C02C3FFD6EB05757FA5AC3A9AC96FA66E1D73FDC5E97BC54106C4B662EC8F6AF0F6C27E574D6E2C3C295C0D8DE91F2DB6D0664CB915D146CE
tools\git-profile-manager.dll
md5: 5F24EFAFF5C8D6AE3CF1B07F4822C5EE | sha1: DF0484B5464ADF48DFE83D52D065BC1A6587DB55 | sha256: 11F1C851263228F8884A62E98E65BEE5F034ABF9BDB29CE4A54C83CA02E13D0C | sha512: 0CEE64EAB68318FAF61210706D387FFF439E2269E14E764FDCBF01E581178D1A7C4E84717B05BD862B9A18A5242747C4753EBAE048DCCF8C60B7FFFB4799E5C9
tools\git-profile-manager.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v1.1/win10-x64",
    "signature": "b1f2bb1dd14d2c46c08f3f6fe055c7f16fbd446a"
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v1.1": {},
    ".NETCoreApp,Version=v1.1/win10-x64": {
      "git-profile-manager/1.0.0": {
        "dependencies": {
          "LightInject.Microsoft.DependencyInjection": "2.0.2",
          "Microsoft.Extensions.DependencyInjection": "1.1.1",
          "Microsoft.NETCore.App": "1.1.2",
          "Scrutor": "1.12.0",
          "Spectre.CommandLine": "0.0.4",
          "System.ValueTuple": "4.3.1",
          "YamlDotNet": "4.2.1"
        },
        "runtime": {
          "git-profile-manager.dll": {}
        }
      },
      "libuv/1.9.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0"
        },
        "native": {
          "runtimes/win7-x64/native/libuv.dll": {}
        }
      },
      "lightinject/5.0.3": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/LightInject.dll": {}
        }
      },
      "lightinject.microsoft.dependencyinjection/2.0.2": {
        "dependencies": {
          "LightInject": "5.0.3",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.1",
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.1/LightInject.Microsoft.DependencyInjection.dll": {}
        }
      },
      "microsoft.codeanalysis.analyzers/1.1.0": {},
      "microsoft.codeanalysis.common/1.3.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Collections.Immutable": "1.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.FileVersionInfo": "4.0.0",
          "System.Diagnostics.StackTrace": "4.0.1",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization": "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.Reflection": "4.3.0",
          "System.Reflection.Metadata": "1.4.1",
          "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.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.CodePages": "4.0.1",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Parallel": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XPath.XDocument": "4.0.1",
          "System.Xml.XmlDocument": "4.0.1"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
        }
      },
      "microsoft.codeanalysis.csharp/1.3.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "1.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
        }
      },
      "microsoft.codeanalysis.visualbasic/1.3.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "1.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
        }
      },
      "microsoft.csharp/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "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.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.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.CSharp.dll": {}
        }
      },
      "microsoft.diasymreader.native/1.4.1": {
        "native": {
          "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {}
        }
      },
      "microsoft.extensions.commandlineutils/1.1.0": {
        "dependencies": {
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {}
        }
      },
      "microsoft.extensions.dependencyinjection/1.1.1": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.1",
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
        }
      },
      "microsoft.extensions.dependencyinjection.abstractions/1.1.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
        }
      },
      "microsoft.netcore.app/1.1.2": {
        "dependencies": {
          "Libuv": "1.9.1",
          "Microsoft.CSharp": "4.3.0",
          "Microsoft.CodeAnalysis.CSharp": "1.3.0",
          "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
          "Microsoft.DiaSymReader.Native": "1.4.1",
          "Microsoft.NETCore.DotNetHostPolicy": "1.1.2",
          "Microsoft.NETCore.Runtime.CoreCLR": "1.1.2",
          "Microsoft.VisualBasic": "10.1.0",
          "NETStandard.Library": "1.6.1",
          "System.Buffers": "4.3.0",
          "System.Collections.Immutable": "1.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Annotations": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.1",
          "System.Diagnostics.Process": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO.FileSystem.Watcher": "4.3.0",
          "System.IO.MemoryMappedFiles": "4.3.0",
          "System.IO.UnmanagedMemoryStream": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Linq.Parallel": "4.3.0",
          "System.Linq.Queryable": "4.3.0",
          "System.Net.Http": "4.3.2",
          "System.Net.NameResolution": "4.3.0",
          "System.Net.Requests": "4.3.0",
          "System.Net.Security": "4.3.1",
          "System.Net.WebHeaderCollection": "4.3.0",
          "System.Numerics.Vectors": "4.3.0",
          "System.Reflection.DispatchProxy": "4.3.0",
          "System.Reflection.Metadata": "1.4.1",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.Reader": "4.3.0",
          "System.Runtime.Loader": "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.Threading.Tasks.Dataflow": "4.7.0",
          "System.Threading.Tasks.Extensions": "4.3.0",
          "System.Threading.Tasks.Parallel": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        }
      },
      "microsoft.netcore.dotnethost/1.1.0": {
        "dependencies": {
          "runtime.win7-x64.Microsoft.NETCore.DotNetHost": "1.1.0"
        }
      },
      "microsoft.netcore.dotnethostpolicy/1.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "1.1.0",
          "runtime.win7-x64.Microsoft.NETCore.DotNetHostPolicy": "1.1.2"
        }
      },
      "microsoft.netcore.dotnethostresolver/1.1.0": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHost": "1.1.0",
          "runtime.win7-x64.Microsoft.NETCore.DotNetHostResolver": "1.1.0"
        }
      },
      "microsoft.netcore.jit/1.1.2": {
        "dependencies": {
          "runtime.win7-x64.Microsoft.NETCore.Jit": "1.1.2"
        }
      },
      "microsoft.netcore.platforms/1.1.0": {},
      "microsoft.netcore.runtime.coreclr/1.1.2": {
        "dependencies": {
          "Microsoft.NETCore.Jit": "1.1.2",
          "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
          "runtime.win7-x64.Microsoft.NETCore.Runtime.CoreCLR": "1.1.2"
        }
      },
      "microsoft.netcore.targets/1.1.0": {},
      "microsoft.netcore.windows.apisets/1.0.1": {},
      "microsoft.visualbasic/10.1.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "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.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.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
        }
      },
      "microsoft.win32.primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
        }
      },
      "microsoft.win32.registry/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "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"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {}
        }
      },
      "netstandard.library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.2",
          "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"
        }
      },
      "runtime.any.system.collections/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Collections.dll": {}
        }
      },
      "runtime.any.system.diagnostics.tools/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Diagnostics.Tools.dll": {}
        }
      },
      "runtime.any.system.diagnostics.tracing/4.3.0": {
        "runtime": {
          "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {}
        }
      },
      "runtime.any.system.globalization/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Globalization.dll": {}
        }
      },
      "runtime.any.system.globalization.calendars/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Globalization.Calendars.dll": {}
        }
      },
      "runtime.any.system.io/4.3.0": {
        "runtime": {
          "lib/netstandard1.5/System.IO.dll": {}
        }
      },
      "runtime.any.system.reflection/4.3.0": {
        "runtime": {
          "lib/netstandard1.5/System.Reflection.dll": {}
        }
      },
      "runtime.any.system.reflection.extensions/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Extensions.dll": {}
        }
      },
      "runtime.any.system.reflection.primitives/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Primitives.dll": {}
        }
      },
      "runtime.any.system.resources.resourcemanager/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Resources.ResourceManager.dll": {}
        }
      },
      "runtime.any.system.runtime/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.5/System.Runtime.dll": {}
        }
      },
      "runtime.any.system.runtime.handles/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Runtime.Handles.dll": {}
        }
      },
      "runtime.any.system.runtime.interopservices/4.3.0": {
        "runtime": {
          "lib/netstandard1.6/System.Runtime.InteropServices.dll": {}
        }
      },
      "runtime.any.system.text.encoding/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Text.Encoding.dll": {}
        }
      },
      "runtime.any.system.text.encoding.extensions/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
        }
      },
      "runtime.any.system.threading.tasks/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Threading.Tasks.dll": {}
        }
      },
      "runtime.any.system.threading.timer/4.3.0": {
        "runtime": {
          "lib/netstandard1.3/System.Threading.Timer.dll": {}
        }
      },
      "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.native.system/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.system.io.compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.win7-x64.runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "runtime.native.system.net.http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.system.net.security/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.system.security.cryptography.apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.system.security.cryptography.openssl/4.3.1": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "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.1": {},
      "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {},
      "runtime.win.microsoft.win32.primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
        }
      },
      "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": {
          "runtimes/win/lib/netstandard1.3/System.Console.dll": {}
        }
      },
      "runtime.win.system.diagnostics.debug/4.3.0": {
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {}
        }
      },
      "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": {
          "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {}
        }
      },
      "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": {
          "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {}
        }
      },
      "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.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {}
        }
      },
      "runtime.win.system.runtime.extensions/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {}
        }
      },
      "runtime.win7-x64.microsoft.netcore.dotnethost/1.1.0": {
        "native": {
          "runtimes/win7-x64/native/dotnet.exe": {}
        }
      },
      "runtime.win7-x64.microsoft.netcore.dotnethostpolicy/1.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
        },
        "native": {
          "runtimes/win7-x64/native/hostpolicy.dll": {}
        }
      },
      "runtime.win7-x64.microsoft.netcore.dotnethostresolver/1.1.0": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHost": "1.1.0"
        },
        "native": {
          "runtimes/win7-x64/native/hostfxr.dll": {}
        }
      },
      "runtime.win7-x64.microsoft.netcore.jit/1.1.2": {
        "native": {
          "runtimes/win7-x64/native/clrjit.dll": {}
        }
      },
      "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.1.2": {
        "runtime": {
          "runtimes/win7-x64/lib/netstandard1.0/SOS.NETCore.dll": {},
          "runtimes/win7-x64/lib/netstandard1.0/System.Private.CoreLib.dll": {},
          "runtimes/win7-x64/lib/netstandard1.0/mscorlib.dll": {}
        },
        "native": {
          "runtimes/win7-x64/native/System.Private.CoreLib.ni.dll": {},
          "runtimes/win7-x64/native/clretwrc.dll": {},
          "runtimes/win7-x64/native/coreclr.dll": {},
          "runtimes/win7-x64/native/dbgshim.dll": {},
          "runtimes/win7-x64/native/mscordaccore.dll": {},
          "runtimes/win7-x64/native/mscordbi.dll": {},
          "runtimes/win7-x64/native/mscorlib.ni.dll": {},
          "runtimes/win7-x64/native/mscorrc.debug.dll": {},
          "runtimes/win7-x64/native/mscorrc.dll": {},
          "runtimes/win7-x64/native/sos.dll": {}
        }
      },
      "runtime.win7-x64.runtime.native.system.io.compression/4.3.0": {
        "native": {
          "runtimes/win7-x64/native/clrcompression.dll": {}
        }
      },
      "runtime.win7.system.private.uri/4.3.0": {
        "runtime": {
          "runtimes/win/lib/netstandard1.0/System.Private.Uri.dll": {}
        }
      },
      "scrutor/1.12.0": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.1",
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.0/Scrutor.dll": {}
        }
      },
      "spectre.commandline/0.0.4": {
        "dependencies": {
          "Microsoft.Extensions.CommandLineUtils": "1.1.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Annotations": "4.3.0",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.5/Spectre.CommandLine.dll": {}
        }
      },
      "system.appcontext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/System.AppContext.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.1/System.Buffers.dll": {}
        }
      },
      "system.collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Collections": "4.3.0"
        }
      },
      "system.collections.concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
        }
      },
      "system.collections.immutable/1.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "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.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.Collections.Immutable.dll": {}
        }
      },
      "system.collections.nongeneric/4.3.0": {
        "dependencies": {
          "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": {
          "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
        }
      },
      "system.collections.specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "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": {
          "lib/netstandard1.3/System.Collections.Specialized.dll": {}
        }
      },
      "system.componentmodel/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.ComponentModel.dll": {}
        }
      },
      "system.componentmodel.annotations/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
        }
      },
      "system.componentmodel.primitives/4.3.0": {
        "dependencies": {
          "System.ComponentModel": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
        }
      },
      "system.componentmodel.typeconverter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "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"
        },
        "runtime": {
          "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
        }
      },
      "system.console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.win.System.Console": "4.3.0"
        }
      },
      "system.diagnostics.debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Diagnostics.Debug": "4.3.0"
        }
      },
      "system.diagnostics.diagnosticsource/4.3.1": {
        "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
        }
      },
      "system.diagnostics.fileversioninfo/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.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.Reflection.Metadata": "1.4.1",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {}
        }
      },
      "system.diagnostics.process/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.3.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.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {}
        }
      },
      "system.diagnostics.stacktrace/4.0.1": {
        "dependencies": {
          "System.Collections.Immutable": "1.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Metadata": "1.4.1",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
        }
      },
      "system.diagnostics.tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tools": "4.3.0"
        }
      },
      "system.diagnostics.tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tracing": "4.3.0"
        }
      },
      "system.dynamic.runtime/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
        }
      },
      "system.globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization": "4.3.0"
        }
      },
      "system.globalization.calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization.Calendars": "4.3.0"
        }
      },
      "system.globalization.extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
        }
      },
      "system.io/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.any.System.IO": "4.3.0"
        }
      },
      "system.io.compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
        }
      },
      "system.io.filesystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.IO.FileSystem": "4.3.0"
        }
      },
      "system.io.filesystem.primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
        }
      },
      "system.io.filesystem.watcher/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.Collections": "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.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
        }
      },
      "system.io.memorymappedfiles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.IO.UnmanagedMemoryStream": "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",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
        }
      },
      "system.io.unmanagedmemorystream/4.3.0": {
        "dependencies": {
          "System.Buffers": "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.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.6/System.Linq.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.6/System.Linq.Expressions.dll": {}
        }
      },
      "system.linq.parallel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "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.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Linq.Parallel.dll": {}
        }
      },
      "system.linq.queryable/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Linq.Queryable.dll": {}
        }
      },
      "system.net.http/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.1",
          "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.1"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
        }
      },
      "system.net.nameresolution/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Principal.Windows": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
        }
      },
      "system.net.primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.win.System.Net.Primitives": "4.3.0"
        }
      },
      "system.net.requests/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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.Net.Http": "4.3.2",
          "System.Net.Primitives": "4.3.0",
          "System.Net.WebHeaderCollection": "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"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {}
        }
      },
      "system.net.security/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "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.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.Claims": "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.Security.Principal": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Security": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {}
        }
      },
      "system.net.sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.Net.Sockets": "4.3.0"
        }
      },
      "system.net.webheadercollection/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
        }
      },
      "system.numerics.vectors/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"
        },
        "runtime": {
          "lib/netstandard1.0/System.Numerics.Vectors.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.ObjectModel.dll": {}
        }
      },
      "system.private.uri/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.win7.System.Private.Uri": "4.3.0"
        }
      },
      "system.reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection": "4.3.0"
        }
      },
      "system.reflection.dispatchproxy/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "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.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Emit.dll": {}
        }
      },
      "system.reflection.emit.ilgeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
        }
      },
      "system.reflection.extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Extensions": "4.3.0"
        }
      },
      "system.reflection.metadata/1.4.1": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.Linq": "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.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
        }
      },
      "system.reflection.primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Primitives": "4.3.0"
        }
      },
      "system.reflection.typeextensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
        }
      },
      "system.resources.reader/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.Resources.Reader.dll": {}
        }
      },
      "system.resources.resourcemanager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Resources.ResourceManager": "4.3.0"
        }
      },
      "system.runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "runtime.any.System.Runtime": "4.3.0"
        }
      },
      "system.runtime.extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Runtime.Extensions": "4.3.0"
        }
      },
      "system.runtime.handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Runtime.Handles": "4.3.0"
        }
      },
      "system.runtime.interopservices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.any.System.Runtime.InteropServices": "4.3.0"
        }
      },
      "system.runtime.interopservices.runtimeinformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
        }
      },
      "system.runtime.loader/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.5/System.Runtime.Loader.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
        }
      },
      "system.security.claims/4.3.0": {
        "dependencies": {
          "System.Collections": "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.Runtime.Extensions": "4.3.0",
          "System.Security.Principal": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Security.Claims.dll": {}
        }
      },
      "system.security.cryptography.algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
        }
      },
      "system.security.cryptography.cng/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {}
        }
      },
      "system.security.cryptography.csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
        }
      },
      "system.security.cryptography.encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
        }
      },
      "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.1"
        },
        "runtime": {
          "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
        }
      },
      "system.security.cryptography.x509certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.3.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.1"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
        }
      },
      "system.security.principal/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.Security.Principal.dll": {}
        }
      },
      "system.security.principal.windows/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "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.Claims": "4.3.0",
          "System.Security.Principal": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {}
        }
      },
      "system.text.encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Text.Encoding": "4.3.0"
        }
      },
      "system.text.encoding.codepages/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "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.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
        }
      },
      "system.text.encoding.extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
        }
      },
      "system.text.regularexpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
        }
      },
      "system.threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Threading.dll": {}
        }
      },
      "system.threading.overlapped/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {}
        }
      },
      "system.threading.tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Tasks": "4.3.0"
        }
      },
      "system.threading.tasks.dataflow/4.7.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Dynamic.Runtime": "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.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
        }
      },
      "system.threading.tasks.extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
        }
      },
      "system.threading.tasks.parallel/4.3.0": {
        "dependencies": {
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
        }
      },
      "system.threading.thread/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Threading.Thread.dll": {}
        }
      },
      "system.threading.threadpool/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
        }
      },
      "system.threading.timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Timer": "4.3.0"
        }
      },
      "system.valuetuple/4.3.1": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.0/System.ValueTuple.dll": {}
        }
      },
      "system.xml.readerwriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
        }
      },
      "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"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XDocument.dll": {}
        }
      },
      "system.xml.xmldocument/4.0.1": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "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.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
        }
      },
      "system.xml.xpath/4.0.1": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "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.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.dll": {}
        }
      },
      "system.xml.xpath.xdocument/4.0.1": {
        "dependencies": {
          "System.Diagnostics.Debug": "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.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XPath": "4.0.1"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
        }
      },
      "yamldotnet/4.2.1": {
        "runtime": {
          "lib/netstandard1.3/YamlDotNet.dll": {}
        }
      }
    }
  },
  "libraries": {
    "git-profile-manager/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "libuv/1.9.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fPUErlLVSh7CUGEVEX5yALoSRq4RKh04ubVH1+cL5fA81PcvbACtf/GRnTZ7JXZHpIcP6a/K6OiCfTpL6xpdDg==",
      "path": "libuv/1.9.1",
      "hashPath": "libuv.1.9.1.nupkg.sha512"
    },
    "lightinject/5.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pjS3sReezuga7FeUq+2pqZHKaVSC/7/Bwsk5/y2hpga8ed46D/1MpQ4+/eOy9ivJDGfqZb+/fdYS2SsuWBW7tg==",
      "path": "lightinject/5.0.3",
      "hashPath": "lightinject.5.0.3.nupkg.sha512"
    },
    "lightinject.microsoft.dependencyinjection/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ghymGvWaRe8eXVcplPtsO8UkAziSoT3SBpHHMuszEE393jPRq9LyFqhbuVKoHeNzJ+u5IiHEY2pgHU1lmGhOiQ==",
      "path": "lightinject.microsoft.dependencyinjection/2.0.2",
      "hashPath": "lightinject.microsoft.dependencyinjection.2.0.2.nupkg.sha512"
    },
    "microsoft.codeanalysis.analyzers/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TUCYc5rlWSlXDN3rcYcS1sA2o5N9qJUwcxkc4wVb48wi8Wz3L9s3lsdjbw22Zku18UGEQLGzKC0EvDNPEn++mQ==",
      "path": "microsoft.codeanalysis.analyzers/1.1.0",
      "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512"
    },
    "microsoft.codeanalysis.common/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0fcXFwQCodWGH+0CRotrHHn3L2TZpJ8y9W1yZGjfG1e6c5Q1KXwKO370kKfuyrrDRVSJUx/qQu32jDBCHY9lsQ==",
      "path": "microsoft.codeanalysis.common/1.3.0",
      "hashPath": "microsoft.codeanalysis.common.1.3.0.nupkg.sha512"
    },
    "microsoft.codeanalysis.csharp/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Azq3dv2kzlfwHdADsdbvr/PVL9Dp1fLXwJEcWUmUOo6o6a6U4qni85qB2mOHPmjBFalBQfhU5NnVhgz7O1sTMg==",
      "path": "microsoft.codeanalysis.csharp/1.3.0",
      "hashPath": "microsoft.codeanalysis.csharp.1.3.0.nupkg.sha512"
    },
    "microsoft.codeanalysis.visualbasic/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+tVX7+RNdMWqD/uSTieRncoqq6YCFZGH7Ie7+CoQ8uYCzXbd1hBqcKlEnINrjvnDy2FFsHNXiUFvaEY4VuuR2A==",
      "path": "microsoft.codeanalysis.visualbasic/1.3.0",
      "hashPath": "microsoft.codeanalysis.visualbasic.1.3.0.nupkg.sha512"
    },
    "microsoft.csharp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v8r2enZ7GlzPctAhUhyJW0Y1NQEKaXpsPD+VhmltyTfxG+T1pbcJL5YWvzwO5DgGZ+qqGAOfvqwGp6GgULLOSg==",
      "path": "microsoft.csharp/4.3.0",
      "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
    },
    "microsoft.diasymreader.native/1.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ym8RcgRV1CWokKnO4N8wLAxQYKujOSGmai1jKDcgtsRUvVQZ27Sz67PYPEdUyy+lVCEY4ATDPq0qAPQvCGEQ0w==",
      "path": "microsoft.diasymreader.native/1.4.1",
      "hashPath": "microsoft.diasymreader.native.1.4.1.nupkg.sha512"
    },
    "microsoft.extensions.commandlineutils/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZBmdRx6aj7RsJmT8KWZnr0dP/O5C/aChLQ1fD4TC4QBDcnh7/yjucIsZc1o3bLtutkqIqJ4ODPaVEhkEaPJZDQ==",
      "path": "microsoft.extensions.commandlineutils/1.1.0",
      "hashPath": "microsoft.extensions.commandlineutils.1.1.0.nupkg.sha512"
    },
    "microsoft.extensions.dependencyinjection/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8WQyjEYcD+v+sy3WU/opgXGbZPxZ6lxCo+apbvDt4zH/7+0jY1rzBTKzJFwBGT2+VNFjaHNLI7b4l5KTr5DaTg==",
      "path": "microsoft.extensions.dependencyinjection/1.1.1",
      "hashPath": "microsoft.extensions.dependencyinjection.1.1.1.nupkg.sha512"
    },
    "microsoft.extensions.dependencyinjection.abstractions/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iFMDC/I20vEfNc7EqPKprnAC3H1nYC4NDE0dWC8BNAe5JHy4IvHd0B0piVBds68XdnW/CngxKIRETcfQDz1SAg==",
      "path": "microsoft.extensions.dependencyinjection.abstractions/1.1.1",
      "hashPath": "microsoft.extensions.dependencyinjection.abstractions.1.1.1.nupkg.sha512"
    },
    "microsoft.netcore.app/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zjtFsN+cvYJrkJpIYl0BvTUR9cUSyK/lp04ku09c6tpQpeABPCsdYhiK0VIE3K8q14Vpe3wVPqaB1A7oASnE/A==",
      "path": "microsoft.netcore.app/1.1.2",
      "hashPath": "microsoft.netcore.app.1.1.2.nupkg.sha512"
    },
    "microsoft.netcore.dotnethost/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CfS5dOEefMwa/fuWfyfewX+Oe/c20P4AVfo2nRWXyo1JSNRVHKlCQePn6LyZdRuHQ3I3IVDwXnx4V4849c6mXg==",
      "path": "microsoft.netcore.dotnethost/1.1.0",
      "hashPath": "microsoft.netcore.dotnethost.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.dotnethostpolicy/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6MyWnuwilPrjA8NHBLCpPfZ7nUmCOPavzAxogwYlZUKCLCp8U8R5HYXlUdWPcIzRrtuUQCUs4VbX6uc/0L5mYA==",
      "path": "microsoft.netcore.dotnethostpolicy/1.1.2",
      "hashPath": "microsoft.netcore.dotnethostpolicy.1.1.2.nupkg.sha512"
    },
    "microsoft.netcore.dotnethostresolver/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XPnga0ffaBnBGyBUoD1JOakY07XZ7Qnlrh7qrui2IjlcsZFOMW89RMqfEFD9W4Mm7faoScR0epamQAGYqwquTQ==",
      "path": "microsoft.netcore.dotnethostresolver/1.1.0",
      "hashPath": "microsoft.netcore.dotnethostresolver.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.jit/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0n/Z/4iJ3hugQij1N0DigyawDltO11sZqkcPBX5ciUYQT8nKdMWxSCwTeaqY4rKdhWyYlW97P9ccby4b3/cvyA==",
      "path": "microsoft.netcore.jit/1.1.2",
      "hashPath": "microsoft.netcore.jit.1.1.2.nupkg.sha512"
    },
    "microsoft.netcore.platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VQPOQGD1my55lL7FXtRBRE2LgDV0JOjd/P+JvF4rtmkxGDL9WYlUisWYvTKT7cVphUP/hD8dMB5Whnvsx5g7vA==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.runtime.coreclr/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jGolcAJSMz8IxvCYyeazJcjMhxgLfa6wVXzxUye0GTMDGBL8hbtbZ5hf+/jLAP8ZPnWVhXeQb1odLDG70kwIfQ==",
      "path": "microsoft.netcore.runtime.coreclr/1.1.2",
      "hashPath": "microsoft.netcore.runtime.coreclr.1.1.2.nupkg.sha512"
    },
    "microsoft.netcore.targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JeOhipjuaaLZz5xw6nBjoaCL2x+rzwcZ2xYdPaA0+dSpcEDr5ZClEsColWquIBx3I3cHx87r4zxjedWVuH3tDg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.windows.apisets/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WxRvWBXN2QJxiYYrPixgg7l3Xr/4//LR1Q3IHmDlLuK2Nku9ENjSMaxpdZPamUFtpU6dE3mH5buqNtjiHRImWQ==",
      "path": "microsoft.netcore.windows.apisets/1.0.1",
      "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512"
    },
    "microsoft.visualbasic/10.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WI5+uwwmKsb4PpQBHxYl6uLysN1LcnZavp6E28FvkJYug9RLsr932AnMgpb9u7lZ6WjuXSW+1DafGxcsbMubEg==",
      "path": "microsoft.visualbasic/10.1.0",
      "hashPath": "microsoft.visualbasic.10.1.0.nupkg.sha512"
    },
    "microsoft.win32.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xakBUEmUCDltPjlUDc8OQsK/lnuVgcmVV8qdigj0nO8NSFsXx3Qk+vpjctDZ5TEOuy5aI19U4HELGXQQM8njMg==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "microsoft.win32.registry/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YtHbp8AJcxg530hTaaissDyluE+qPWq8HK+dRQTiBzDoz5ccoZaJu11+mZQA9enWRScItO/s1eL2jWPC2Sqqkg==",
      "path": "microsoft.win32.registry/4.3.0",
      "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512"
    },
    "netstandard.library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BqiHlxRuz5//Qm+A+8dYklcjiQBa6+5nLizCEuEj/fjQN4kCu92ZjrB9s+tz/kLNGCtDB2ZFpOQedusgjegq9w==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.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.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QBD+2xTmJXqjbjfMUYJNEAYU5mT84ox6YtZu3kJPdRipHigsWc8s1nR37quMuLOoy97kFWF5Csxf87OxxuY1eQ==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WbmvSkYVrNZXxzwJ1IODtO7pQ0iK+mE9zCwO4Sdvh9PI9YpUBgDb0wloAkgPuh4gOiLLpFffoWky9K8iiORosA==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JsfDVjGIpOddIIt6BJVZjoueOEvnTiJnEQARZaD/UqwODiw+Yvoktb1fYhpCHcVRhhtOKId9YT1NvxPeN9c3Qw==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.native.system/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4t4TeBwrGrCofTFq7JrIB10da+fgjyxuvfrfW0tPsKD+2XoI7KOT21JM1y8hqzmq7go55UGyUZ1/nCMiRhRSxQ==",
      "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-Y3ahrw4lQuopyiKq1+FCEr6jH1GHzsJToMDuwXdxh2R8Na0/AjOfxEGOJSVo+4Ezqrk0U14RYFJPO7wjMdpvxA==",
      "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-X8HXalHOa8x74A6A6Ia0pdRuPLr/kHhn7Pq6e0sAUF+Wg1b/k37Sk29z1vkEYGAHSMm+9qPvEeWZbgtBnHSrcQ==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.net.security/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zGPGkjpyzhyk7PNE4+CyLxjXNgt9qPkUwOH4OElcaWcaHzhbfvue6tz9l+097D8avsI1rXU0+8ehzwA2y3O8Uw==",
      "path": "runtime.native.system.net.security/4.3.0",
      "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.security.cryptography.apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-djiWLA77SZnSNiaE7kFCu61XfhPXDinHlnWaVtJLn1pBSC3bPejtmnDnjv8X0ubJW+Nf37W60eN3j4Vk9Vb/0A==",
      "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.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Y3wz+s3AxBgOS3A47XGRjmdnQomrWGgZjOXB2xFLJInsOR7SYAdpaLy7TF7QmYiNtMLixe7w3GEpUCegX5EDdw==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9VFJowKdVHMo3BDn6iurDvCum7Kj5jUqlt0MUueya59m/lAbcX+X+l9jJQeCluQ426I7soUbhW8Znh7HXv/Tzw==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MQ3WW636GznqizkJuFsss/zO2Z7XA7HCXkjjvDVoZ+lXZik+t3stNQf0GkBWw58fDRHh17H4hDj4Vgu4tVVHpQ==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BMq3Jj+e9C3UCxRvTN6SRKN3646qm0e6oJ3EGtTz9biOTAmYQpWyZlj6SuIEjxi3NePRg+Hlu2DswwYXDkSF6w==",
      "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.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5raM3GGAPuHDaf99XmfxrfvE1MDc5y9iUwLGJtmPIx6hBfHltzAscAAXEEXl2ZjNBR0JqdAUHE3sqREE4sM62g==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SjB1MggBKS1ZiMVyNvYy/MRMZ9Yy1B1J3vFq9uLgqGpvWEVCMOYoV+Xw9PDjs+3VvhkiEhePwWsbF5hFX6t0Mw==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8ECNt8mRIueuVJbU17fi4lPD7XJnYATi8hKweyRKhFjy0bQ/+9QDFrZr3vXMi/8s0uMV2Grfs2EFU0cMyHB7xw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fjgChDz6nkDlTzdJbjcxEGMS0nBmgbjUmnm7A4M8xRLXZE3hTMvHknDQ8lxwPG2xQv2t4pDBVXt7Qq7FKarmMQ==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.1.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zZLp3Z9vtk91bF1SZGdGR4dmZM9iNFkBT2YTCi673Fr4OVikXwOOsjgU4wpPNMAs7SKOrlOgaDFl7mHbstTPvg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.1",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.1.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"
    },
    "runtime.win7-x64.microsoft.netcore.dotnethost/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-eR+tTds8jFOj5ehz4BzWjUtCOWlH1xzvC4RL9THoD6ng/9IW5nwsZODh2zxa86b7GgmiPN0zTxMGX7N6VRFhiQ==",
      "path": "runtime.win7-x64.microsoft.netcore.dotnethost/1.1.0",
      "hashPath": "runtime.win7-x64.microsoft.netcore.dotnethost.1.1.0.nupkg.sha512"
    },
    "runtime.win7-x64.microsoft.netcore.dotnethostpolicy/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XJ3COF8X66mVtFdt+kv/3WdhIQCXGmtlvt2doe9ucQSrhHy+AlqMQ2aTeLwLlzNuCcIMH7q6xa2nY0l+X9LZQA==",
      "path": "runtime.win7-x64.microsoft.netcore.dotnethostpolicy/1.1.2",
      "hashPath": "runtime.win7-x64.microsoft.netcore.dotnethostpolicy.1.1.2.nupkg.sha512"
    },
    "runtime.win7-x64.microsoft.netcore.dotnethostresolver/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iuQFSycErw7XPzmoT+dK19fb6RuAqvJajzmkRjC2x8ZdMQsRqD92G+KknZ2+2G9kI4heCChomWn/RUz7uNW4oQ==",
      "path": "runtime.win7-x64.microsoft.netcore.dotnethostresolver/1.1.0",
      "hashPath": "runtime.win7-x64.microsoft.netcore.dotnethostresolver.1.1.0.nupkg.sha512"
    },
    "runtime.win7-x64.microsoft.netcore.jit/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3uza85j718Ua9hPs2u40W1wZQhF5zUt8y1Ik1wr683lL9nMJQwWeAuMuqGa8AbGodSTq9QX7vjMxFB98yEmG8w==",
      "path": "runtime.win7-x64.microsoft.netcore.jit/1.1.2",
      "hashPath": "runtime.win7-x64.microsoft.netcore.jit.1.1.2.nupkg.sha512"
    },
    "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8A2oEq2CZwt5bVubq3fisw34zSLmNkQpT/6FVZLPee1opXAWsIo7Ea6gPTgg1uz0nZuN9BbxEw+V3TwiygcnMA==",
      "path": "runtime.win7-x64.microsoft.netcore.runtime.coreclr/1.1.2",
      "hashPath": "runtime.win7-x64.microsoft.netcore.runtime.coreclr.1.1.2.nupkg.sha512"
    },
    "runtime.win7-x64.runtime.native.system.io.compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UamDlgSO/nIzc96M+g3wbvAGbAuXjvRYR5Ttm/FVJgt2iva8ouOqSJ0j6eGI7pZDLvD/ZISl9XRZOajE/Xvizg==",
      "path": "runtime.win7-x64.runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.win7-x64.runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.win7.system.private.uri/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
      "path": "runtime.win7.system.private.uri/4.3.0",
      "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
    },
    "scrutor/1.12.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PDipE6zfe1LwIwDj5iJ+bz3Q/tbR4rWscoFmLj7Vf1HCiimDJ/lsHYvhAqFqonbmb+MF9QqE218EZsYc/Q8nWQ==",
      "path": "scrutor/1.12.0",
      "hashPath": "scrutor.1.12.0.nupkg.sha512"
    },
    "spectre.commandline/0.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MrtaUdf0KAk+s/AVByEC6VdzpPg1DJtlSkU1l2skDwfUu5R0jUAMi/v9i78twv/us7raYoJ7Kg7Yx5Y9jUbrCw==",
      "path": "spectre.commandline/0.0.4",
      "hashPath": "spectre.commandline.0.0.4.nupkg.sha512"
    },
    "system.appcontext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oMoBL9l5HxheHQMOMXCS+cf0Hmm9nnlQ2O+/vrP1WlvzimC22Ew0LAU+TMluuoY/AcY9LOLRjMGmcu4NKuCYyg==",
      "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-Gxh6wZ6dc0M9mR0QazdaIJwcA4abdIVgaYHDMD9ok/j/0QDFdkr4ihYwKpuD+uLlqp50VxHP/kPnQVgHi+mtSg==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "system.collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4pk6irnO9LCbvTEL/CMEYWf0ibOLsZxzym49zWMjX0MCWC686UnKDuZYhcs3gOFW9si6bmKmqex3fhoELiBowA==",
      "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-NrBAjGgGEzgfBEyiYWwwVAn79ptJFj4ctizd7/PM+2UYBrjPfla3of+bQ7rw+1uE4RHYGlGWDblWxwBm/yzNyw==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "system.collections.immutable/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-liHcxKosJez4IfQQJ2lnFjgtLe0zciTy1pM027VCuBrTMvecQxAj/giwOuT5LiwnbOINccOYkvpyOOul+PsSsw==",
      "path": "system.collections.immutable/1.3.0",
      "hashPath": "system.collections.immutable.1.3.0.nupkg.sha512"
    },
    "system.collections.nongeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-M4WF6TLFNXUaGYFs/X1f8VagBA5QY1Uy9/ov9hb/RCWJ27h6PpTsdni4wOPmMGoA/kWBOv6CCy1kl+GHRo6FBA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "system.collections.specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UMOiB1XFCBd0KWWlabxya+83UL+TXiy3Zhb4WB3xPtHyQI8+K3DipXC+XFdu4HWpoCqoD1/KCIMjqccDrfjrAQ==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "system.componentmodel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qDYFr+56qWiRkMz4/yC4E3JsUwK0jICUfUfsS0CWJ88z50aoWVV78QRoM+hMbvISz9pwYBnWTDGhSxo+e5yxaA==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "system.componentmodel.annotations/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Kq9Sq5CRbLeD6EywSCLJGQivYvmhF7LpknPQDPozd3S+8YV7laAQKNYf5bydG4ixCnVXYfGdizUKCtFeW1TSQQ==",
      "path": "system.componentmodel.annotations/4.3.0",
      "hashPath": "system.componentmodel.annotations.4.3.0.nupkg.sha512"
    },
    "system.componentmodel.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kqiBLr2/PhvErlE7Uht/uobU0IOY1TUC946knaRg2/rJPOb8YUGcVTqCCK9E0EmZX3A9ub2GkrhI4orYtxNFUA==",
      "path": "system.componentmodel.primitives/4.3.0",
      "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
    },
    "system.componentmodel.typeconverter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XJi3w49N1p1ex57a9+BAFaxEvgVZ1lq3woZrnTtg/+0Rbqj4eqD6vSMXsemspFfjelUeUgd69nwuhbJUXRTyPA==",
      "path": "system.componentmodel.typeconverter/4.3.0",
      "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
    },
    "system.console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dvuoCJFktgDHYt0mvpfUdkMYcJLqpN0MyJ+zkLsDOj3RwAuFSaoaJfdG2bK6ZOTQ8BFBAo0R1qH5CVQSbzYTgQ==",
      "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-6tBTJTTRd4UXBEFFjonHd+lh6iGZVqlqAyHEG6EBeK61fUxt5aKGGqRbsEP5dSwvsYOPuVNuoTeElqVqTgGDNQ==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.diagnosticsource/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8VRNTDSQGjGLbq04a9gy3zHgk/oeDtlPsIAxr1xnYEBaPw+VkRatzBj0K44e5LojE8G6mQUJkff3pQt+CUkQIw==",
      "path": "system.diagnostics.diagnosticsource/4.3.1",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.1.nupkg.sha512"
    },
    "system.diagnostics.fileversioninfo/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Msz+DJJyv1vehbJgiLVOMX7DILqVc2/gfbzUZlvxi2JWFiktTGLhNqq6MUT0drf4MYc6UO+VxtOCnDbA4Y+k9g==",
      "path": "system.diagnostics.fileversioninfo/4.0.0",
      "hashPath": "system.diagnostics.fileversioninfo.4.0.0.nupkg.sha512"
    },
    "system.diagnostics.process/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8PFd+9kSZapxy5/rkM28Al9Gnl+q8M0hRH1BLwyVzfcn5xeEapXeN7C2E2NxWvpWbGuwBlgGlBKvykuCerfrvg==",
      "path": "system.diagnostics.process/4.3.0",
      "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.stacktrace/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oCh/vWNLyT5XUDjPmw/itul5Znh1paAw5YNPgG+18t+ut0AZA1y45jp61MUIWfsc8Od5y1p1MMC2X4F0zrHafg==",
      "path": "system.diagnostics.stacktrace/4.0.1",
      "hashPath": "system.diagnostics.stacktrace.4.0.1.nupkg.sha512"
    },
    "system.diagnostics.tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6P144ePp6ay654xGWk9dW/9uIHwIHSXuWh/yIffze+TU5Y6XigfshufaBpqsi9RVrXCgd5ZbuPTJqmz2Ak+ZTA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZMWVxvTESEG6hcrVRFhB22YGTLGIEe2FICvnuOj4TvrjvZyYnz1eWCov5AnVgdfITkGsHOMCxiey50uUh2sQZQ==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "system.dynamic.runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-28j8VNLE2CLfafFExHjAZb94hugEcG9Wt0+3RzoNDMyXMoc52UiaL1+1M5rnCvYFpRbICdvpRIlyjLu7P+03bA==",
      "path": "system.dynamic.runtime/4.3.0",
      "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
    },
    "system.globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ShOzSlS55DeZM3G8Jl+2yOABb/75qcTvaZhmQW47uPcar+j9LuyMs3iI7enB9VA9A2hY5sciVjBeeWescPy2gw==",
      "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-TOygzky4q/QjL8+ROofHT0Zbo53geTaGPN/Eyql/g3B8ftJfxudcwBLsXfr/Y6cdLJNJwvwqfjDXr+x5PxXNSw==",
      "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-4Oa/+AHGAr1v7I9H+Gf/3isSHzONhvRNw2uYvWf1gIEHFQfKonPZYyMvJiqSw57UBKTxIW8L40xhxI1nbp7j4Q==",
      "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-eJlmW1vdHjpkUFM2cxR4kyBLPHV2/SD/W0Fh6b6G5OGGw6QuMd00r7ZXz6hvc1CnxDVRZX8JxvCffTn9Brpnng==",
      "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-TDYwIhjcxPxj8oTl+3HvUk1qykFgT+uGmHn4Aurf82YIPlr4fWR7amxchyWLXTu1Nm41EdCBhDsYXwiMfQ8VkA==",
      "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-2pDRCrqPAeUHK0j3cCNv9p5vB+efjvkOrejyQTuQzDHEcC03C+8iSTYzRDXeTM6LGgnBFLz+L7SyuHJ08txjmA==",
      "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-hvi83WpJCmQyTIrpt4LMd8s04+bVUv06nbZX4KR4x7i6xWa527bX3C85b9RoTAqS/gWgvRsEw6kgnnmUdJ7GYA==",
      "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-WU1ge1CzBhiUxqF/+oE6cRH3PuVvl6yjEmW5DLudkCHu46jWaiDs9zijTNi6GFHRRvh/00U5c/MNPGstTT1Ihw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "system.io.filesystem.watcher/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1nM6ogh5Qlfcu+Nzf8F7oUPdfPXwzFVXeB90M1FmqPw/TVPtSfD48s8Vz2CZvkQFLQ/5gSByN65qkTkHryRmvA==",
      "path": "system.io.filesystem.watcher/4.3.0",
      "hashPath": "system.io.filesystem.watcher.4.3.0.nupkg.sha512"
    },
    "system.io.memorymappedfiles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Xz4E5U/TyiV6ZAC0QdYj/IYZhFWceIQ6AcFEuGRquEtkMHkG+36Smf+SVHk9kA2HSxaEtAUKvhkAMICiXPfJpw==",
      "path": "system.io.memorymappedfiles/4.3.0",
      "hashPath": "system.io.memorymappedfiles.4.3.0.nupkg.sha512"
    },
    "system.io.unmanagedmemorystream/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gbQ3K3TQLyXvHvoEhky6rBWXA3kGNE8oijjWnoVKcTn2v4AiDJR7rR3CbzHNbGT4ISIp60xlQ6vZknT/f2TVjQ==",
      "path": "system.io.unmanagedmemorystream/4.3.0",
      "hashPath": "system.io.unmanagedmemorystream.4.3.0.nupkg.sha512"
    },
    "system.linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cLegt3AMGKr0hw1QNBMUTTH8/wOWQmkHWnKp6GzUiPEZXGqASxtTt1osvhxyv3GRmbvwc3fT19fRrWjLhJIo1A==",
      "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-Fa+exbaT3cEXPc0Ybv/gAhYK3MRW0iLtepgWBCjw+AtxCW6XCortInctJyfUtCKL7NR81PG8O/TAJ+dwFpGTjQ==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "system.linq.parallel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+IzZzkJDyZw7IkQVKjAS3aexFbxI4ZKSh8iYljEszJRDNI0zHmltXqPtV/B/Q9L7d1AvrjB/4T/BAv+r1Wodxw==",
      "path": "system.linq.parallel/4.3.0",
      "hashPath": "system.linq.parallel.4.3.0.nupkg.sha512"
    },
    "system.linq.queryable/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bVO3ZrKDpcJ1/HLYUpF8UgMNGf6WQfEVYT2wOgVzN80bbmJXf+4hmbQgw7bMCX1zMhO54SRH7vYwBh4TPwFabw==",
      "path": "system.linq.queryable/4.3.0",
      "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
    },
    "system.net.http/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zTaAaN3zROnctEYPaUmvam/Sn8ENYPKByMRm+Bq9u3Q6HyXtZdLg8QptdAis/rk5g+i2XdCG3be8Rwy3bg4TAg==",
      "path": "system.net.http/4.3.2",
      "hashPath": "system.net.http.4.3.2.nupkg.sha512"
    },
    "system.net.nameresolution/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ACRCnEywJ9z+5jlCsMhDwSK0XtLirLHVTL4pJA2lgpUax3G6mDGhyMkiIM2H3HPLd1on+zaSR2iIsqbAWAQjHw==",
      "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-TZuiu50+xOQ7IdjSfDHleOlbN3pfo+gAwtL4ZMF8Uw8+cOzLtcLaQ7N9ugModkeZkBllCNBDwydyhLsFH/L0tw==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "system.net.requests/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1SMWg39DKW3OjsD2E2aaCaiwrE4v3BB1pb9YQeXH5OyPSUiKeYHazkuHl/3ozrS8bwAHc+fdiRNtP0Ad4r9VIw==",
      "path": "system.net.requests/4.3.0",
      "hashPath": "system.net.requests.4.3.0.nupkg.sha512"
    },
    "system.net.security/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-USpHolD20S6/upm42x7id9xPolxTDvtDuvmww+2QQBYat47gGUMK5PcCHzKjLT1jUUEGRPlLOMLM/wthfrBlPw==",
      "path": "system.net.security/4.3.1",
      "hashPath": "system.net.security.4.3.1.nupkg.sha512"
    },
    "system.net.sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JcH0zH4AD+nWvWBhNJXWvk8lLWuxPUeLJBs60InDUKLGPqxM4Sc8DDjVqE70feVEFMfEJQ0sQ/NjmM0ymzCthg==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "system.net.webheadercollection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZPmtWfIpPoTHDqBF7xcrmYxkm/3efU/hj0doBtH+U6FhhsR7WXKwYMoBR5GqCqTI2J4kFSg9JFmHy74GkNPmmQ==",
      "path": "system.net.webheadercollection/4.3.0",
      "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512"
    },
    "system.numerics.vectors/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UtByr24EJF6TGvWiVbPqX7rVBgadr3H7a3C8PadExvqkI562+vg0i4fvJbdWfmNIWS8OMLLoQJPK0ZDflIXqYQ==",
      "path": "system.numerics.vectors/4.3.0",
      "hashPath": "system.numerics.vectors.4.3.0.nupkg.sha512"
    },
    "system.objectmodel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8qhDevmKwL/9obI3l2ecawPZsFUq7FHXD8vZQOqpo7IQAE8qZBufaKJcvNYmDC9HnS9DBwar1iqNPbOEXMsX2g==",
      "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-NpKBva7bRkPNchiHb4D4sYYZpCl9D0X7K3I8ptHBW1KLbXwzktqDZbLhlxtQjXf8z/FlJsZ6+DfmueDJMgqvzQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "system.reflection.dispatchproxy/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C25wCYx7+OlA3z9KwF2PTT9xn/64JgyTlQbxls8liediA1AnHjYFsxSmUNjt8VgxKbqPTKz+H4b5Tux1BxTjEg==",
      "path": "system.reflection.dispatchproxy/4.3.0",
      "hashPath": "system.reflection.dispatchproxy.4.3.0.nupkg.sha512"
    },
    "system.reflection.emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kfrhiPpJasZq0tMBmjkSvovXJLMiAgP33Lp7q5C0H27PPFxm8G183v4QusIjJ4hzeR0z5w6ZWkwqvdCoyuaC0w==",
      "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-akKG04JMlV8M2cCRCNnBcJcY3iuB1IiKXKbOrbd2HFpNleDa7zEZ2nZKD7fZkMXzdHGO08tiP8ffVz3f78/i8g==",
      "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-8Ep8ilAoHWLmRe8rzEwzEhKqhNTacs5cEK5FgWWqk+NIOK9p7y94MgSpI3m5qE7ijEPRCX7bv3D4yAbj0TjlcA==",
      "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-eVMUsH6/I80Sf/pE7y7vBOYg/nGOUiUjjzP9uQFITJkx8mRbb0ocwMtJyQUYmiu98el8l7fu/UPf87X6hmO6RQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "system.reflection.metadata/1.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vR9Y45a0nZyKWFEP4uvB7SuZG5KPgtE3+JbmHVngUu9ZEdvzJixgtSjR/OKGA8rCJ6dcIk7NDtImxyg1YEqHcA==",
      "path": "system.reflection.metadata/1.4.1",
      "hashPath": "system.reflection.metadata.1.4.1.nupkg.sha512"
    },
    "system.reflection.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bzacp41sQHceoW19RMgO8YKsE1ZVrhbRmVIcyzWRj87XB4MLaHuGTkHg8mNCC0fgTuGKs5t4TQC5aku0ZyD8yg==",
      "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-CPwm6SHGDb0sQ1tiSgdXzt/qpztMl08GPKS5u7ZPb71v+PDMFgmdn2t6sx4kjXR86wAjImA0tNaqc7tImmq58Q==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "system.resources.reader/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Y27fZgrkGmd25Fl3v653lS7KnpGUV53LkhhNrFIIxf2dMB3t5+nvswEMM1n0j+TE2qnDQai4nCNqc1A2LxmuiA==",
      "path": "system.resources.reader/4.3.0",
      "hashPath": "system.resources.reader.4.3.0.nupkg.sha512"
    },
    "system.resources.resourcemanager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-V4noCwM5A/KUbauFqdKeZ9Ql7U9zsejzkNRICk1TgsZnV+HbaRWA30Hnk/sDSihY0bOELdRZ6EX9+vEjY7Euqg==",
      "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-5obWyYKH1dKJqLQquo0TrL06DXMbGm/+goerJHsYOa4617sn8lLyCIwPu5onGN00oMh4X8mIL5WANk6ZKD12hw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "system.runtime.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-eCuPaem/fsSYaog+pZddWa/dCiM5r1Gq37ZUo4vXZdVNWHFm9ZttC8JChz9ac350kcjdt9S/UuE5mATzsrgFGw==",
      "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-StWtmHYTuPEFG8eNvhftPeTl2Slrxy5xH1DDDsQH9IijoFRRl8zXb5E8wnKmcVJPnDrohw3kazMVXZNe+bCV5A==",
      "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-IYiPTR6WVCzxZInl0KKJxLLs08CwSYzM5dNftaUYlkKLje9fOz9I5Ad0MzuGrx+cHW54Qi4SxWhrk4OtRgGp7w==",
      "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-D60a3gliYpcF5qf25aFt2vVALStdcm+oJi44jnjApq5HNpk7brKExHikiIRRNrUc7JZzJHAkFd63GmrLH7dL5w==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "system.runtime.loader/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-++LigteVR81hc5S36dVyShTuKsrGVmNnX1JtkGdoCHDxWW1HOd8Pyg+O7Pa+vN9ZkW6JClBFQ7Kl+bKnMtdIow==",
      "path": "system.runtime.loader/4.3.0",
      "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
    },
    "system.runtime.numerics/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RZK8AAia01yEzG8viIpbr/k07gi+7pRWgU6kQDJC6UfUZkZECmotlqeymMdr5O8tv/DoSYoJf89WsUdy9lhZkg==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "system.security.claims/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Q79I5Rjr2ZO9sxVEIu+7grUFsqGkvIANasS/TtXvbbGarw8dH0ljJlmMAcsaZ7rQgyUg8hO/cvT/LvNSPVHTCg==",
      "path": "system.security.claims/4.3.0",
      "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-N9wTtzaPf1qABNurCr4PF/CIL5QqRbK4BCBoigaYWDq7XeljfyPr+/h8vqpQFUUsdilME+Z6JyjsuV2UkBFcpw==",
      "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-egiIhwnSmmratGKsItMmgch+mMtxs32IN1cwK7ofeepMJHGN9Lr2TxNpavT0sRki74qwLEYhpSU9CK6oLgtVaA==",
      "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-vx2Sa+EwgSl4YeAxgrdHL/uGtHjGUglK88HvpnGpLICQfhQr/59wI9MegCPmWRN802fTiDkD3fwwICdekuVQaA==",
      "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-KWHIG6EhYnaBJYTWxT9SzpWkRtKT7fL+cz+lcLNHgg8sTJNnSfFafQEJOOB9fI6ASG5z1btKhZzUXhKIcxKEyw==",
      "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-X3l28dmlr5J8GMjMFR/GtlwL65YAwP1VOuKWPyTiBx2ihrMc0GbIwPvl6uF5VzElA2vObj3IPCFL19gaw2vtkQ==",
      "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-tAoq3EqBtsJRm9qd9IQOCwra+WZGR698FTkqV9+V1NepMPMkVynAly9/BytyRP5cs+yL4D6pI5KuWZTQEEJrEg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.x509certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aXl8E43Of3QE4ELaAG3Dizd6zyhaYDRGbTB3/iVPmfhCuLzY993xLgm6bU26ao+dTrs3hOUsocGcTDjYSYMgLQ==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "system.security.principal/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QtrC71gJ6CVLr39t14heKuDd5uJkG4bAGL/D4kb/Ev0MW3kkA99UNcnUFyMJ9SYA9gaQIk+D/C4iF3FU2o+X0w==",
      "path": "system.security.principal/4.3.0",
      "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
    },
    "system.security.principal.windows/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VGaGUkkieLGOzr9BuFAHwDGFJ1FlFwgDfaLLr6cUgyPcy8CsQv5D26hqlomzraxt8IOw25PuEO/waYyqeJUaFw==",
      "path": "system.security.principal.windows/4.3.0",
      "hashPath": "system.security.principal.windows.4.3.0.nupkg.sha512"
    },
    "system.text.encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1YxRIEiydIeKzjvSZ58bBNHTEDHlZEOUQ7490qzrfS2bw3PoN1wsxC19++MWAjFUwYaXjUykAmBLd9qdLIXr5w==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "system.text.encoding.codepages/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1U0XRVN8NlJ7rVAXcF7jv9QG/IQJRWpiDVZaCIrZ3l+lgnR2dj8FkhPtHwmObPXUSC3hp/Lc/01V6ULL0kw+Hg==",
      "path": "system.text.encoding.codepages/4.0.1",
      "hashPath": "system.text.encoding.codepages.4.0.1.nupkg.sha512"
    },
    "system.text.encoding.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ckaMJeTqglx92mXBPZKpZvJvcGRgls8UiQ17kasIwMmUMRZAX866zL9sBGSMBpEEJG0MpqxZ/S3VHP9jHswRng==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "system.text.regularexpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-l6blWJ4iHlPFHzEDU0UZbDg1suHi+hVe4Svb8HoKUIlRKiHmVxxOe6NUj0vcW9ugokcUsUaiCbI8zzdioc9N6A==",
      "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-3LpeiIOl0eHso7ot8aeHvmuwVs6kAru7h01EBlfaAZurIuoqJa0+dK19JZ37WIisdbEo8zUghrPYcY58hrnR1w==",
      "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-BsCLKWbV59kEi5obZatOc2gvo2yDWn3IarSNIOEk+Jeq74+kRuUiaiBIbio/c1yZEqo9q1OZYa67aK7IwueTUA==",
      "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-bKuHKA4cNCrFzfMC2rIWCimGwJ16C2SIdCp/MAvlQ/6zXOO1wm0YyNUVjPBwjOgC/0zXcVsqyUK1GMshSEK9QA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "system.threading.tasks.dataflow/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vbyx3BlQBWF9sv40mM/nJatHgkkDJOFXRZfotbOq/YCM5MPUT2ztVFOo9A14dyfBGMtSE75mmHBWmoaWaNqwvQ==",
      "path": "system.threading.tasks.dataflow/4.7.0",
      "hashPath": "system.threading.tasks.dataflow.4.7.0.nupkg.sha512"
    },
    "system.threading.tasks.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-shCZae7HlInCuY/tr5ulzgoAJjvU8f2ZV7NHd0gAw532FVlmhdext/WQEiu6ZaifHex+zduJD9iQPhu9tL5sdA==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "system.threading.tasks.parallel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gbaOOyLxWeTJB25HJYxpUmYPolHqisM8tvqBHYpie3jUodlm1KeNDnqifXA9ZXcbiHn28DUnE0SoZ3jq6Gi52A==",
      "path": "system.threading.tasks.parallel/4.3.0",
      "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
    },
    "system.threading.thread/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c3srEhAz7juN/RiUoquYQMWGLpSIaDmJYs7d7/ZR9RxacRdaYNrJNdjXBSQdaRoVDf3b4ZfWRRXhFj8OZjHlGg==",
      "path": "system.threading.thread/4.3.0",
      "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
    },
    "system.threading.threadpool/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5iL6zbmxNYEzBTQigC5EJa9LVudbSmL6uLYn9TWu0WhEfJysShgZaMlj0+7n/TOSPS9pchTPV7APcIU51lJwsg==",
      "path": "system.threading.threadpool/4.3.0",
      "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
    },
    "system.threading.timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DZxIhA8ZN1v1k8j9rkMxqy6Q+l8239/LbGChtUR5GX3/BKdAYWR18VJSuYSunNgtNc+ZqKSG7bjIiQepD9R+Nw==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "system.valuetuple/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xzDmg26Wb2x2rFDjwziaMYQJqxhrK+b4OUC008o7CnZhUMb2p5XfwgOgAQ/WlKhqxMUSDWRUm5/lNTKdh27pJA==",
      "path": "system.valuetuple/4.3.1",
      "hashPath": "system.valuetuple.4.3.1.nupkg.sha512"
    },
    "system.xml.readerwriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8dzeVWBlYFqtUiA+yZ8w3ZUKhzvRd7ShWszMmd4+om0Ty7Z9BZLfp0a75HdRYIaPv0yQejmURmO3R0mMs5DiQA==",
      "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-ZDF7qGYlv6Vlon6qFpCPaKTAwAoeJGv+vxssmyvhPGnOr/RQHyyvYS96MjXBDzgEsbsqmUmVbzlR6X9cK9vqxA==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "system.xml.xmldocument/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-a5UiB0YIEexA+vF3ZtpsO9glQrOFnKnbckL4iyUsG1n6TqyfERFY9HpU4xTETKZIcOGq0UDcF9RuLPfn4scGGw==",
      "path": "system.xml.xmldocument/4.0.1",
      "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
    },
    "system.xml.xpath/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiP5GPvETs4pDhvKKLc7xhgyTcMqsZKWdr243KXBVc9RmR/oeghTYcs/l+ArTjNIHSmBu5ZfpYWKOcPOhgJgqA==",
      "path": "system.xml.xpath/4.0.1",
      "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
    },
    "system.xml.xpath.xdocument/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U1WSdT5JWfVe6/HzEjMOzP3ybEoS1u7NI9TPAvHcEWnxkSap03vB4ZCDRpgDvtr3TLLBfrfY2uKeeaZTqNgeYg==",
      "path": "system.xml.xpath.xdocument/4.0.1",
      "hashPath": "system.xml.xpath.xdocument.4.0.1.nupkg.sha512"
    },
    "yamldotnet/4.2.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z0QLgu/ngx+yKHhqUGEmwisBzUU9z+wWaTTROUMHYKqa3swokw7adsprYhwB/+YoO+E8PXwjLmT1uOXhLFD7WQ==",
      "path": "yamldotnet/4.2.1",
      "hashPath": "yamldotnet.4.2.1.nupkg.sha512"
    }
  }
}
tools\System.Linq.Expressions.dll
md5: 56150AE40391C7B257FE84C5CD7B11E1 | sha1: DA360225BFC5B432C89190987EE4FFF09D458D01 | sha256: ADBC4A80E5AB49ED799A7F08EF8575649A038733D7DF941D2A4873C7A0063EE9 | sha512: 49F471B62CCA9AEE26CB16D25558777715037056A803120B42CFF3816D1EE0E66943AC1548D1F35B8C867A7C9635F05FBD4BF1D6BAFB3B41310A5C4AB9D3E97F
tools\System.Linq.Parallel.dll
md5: 4A70B7DD6C7DAE0F5C86E947C86495DF | sha1: FFE3713948E131372533DC2036232BBD2705C0B4 | sha256: 6E068564A7063CA03EB97B78E452070D37C424F573499E5137240A96470F6A3E | sha512: 10AA574DD6BFB30F3C80B4D334DE8D76C3DF861DFCC88E419F2D79F94AFD08965306E23A83D283731AF24FE3189F230B3971207D1AF0A3034930A0311D29D6A0
tools\dbgshim.dll
md5: FA39489DC4156138E51755975609DBA9 | sha1: 7F29ECF480CA7D7FF19B98994FA4A62DDF05ED10 | sha256: C7AB4AB8AE8EF6F2A185A9D6CC8A5A21167627FDA053BDC6DF836A1F034C1F1E | sha512: F8D010E8A009A9B1A5AE8740A54A1019FB106C49EB76EF6D6CE6E3EDE5492D63D474FE06DCB8B5182F414658428A6A4D6900E4EDBC37A983C38D4E2AC4B6819E
tools\coreclr.dll
md5: 9A9B2203877CC5D57EE7BB64AFB8CFB0 | sha1: 0829B2172F9C5F8C33A8BF2439AB73997E438175 | sha256: 212318A492045EFE8838FAB5934A6FDC51D8E7B84F5282CC0E0C53CD06B649D2 | sha512: 8EA10AC0BCFB2F43D88361C9D511FFDD86717E8A6D656C24EBFC95F8BF314F66C33128451556587E1D069287E89F6144750982F65420872796B664F795860363
tools\clrjit.dll
md5: D407418A1A159C706BC17F6D0ACA14D3 | sha1: 707874FDB249ED86C0853E627F3C7C2D0FA826A2 | sha256: F72FDF34FDBA0B96675BFB8C7D373A494B9B8A7F7421DEDED9649401B31B5822 | sha512: 58A342FA431B6C910886DAB127B28602B2C20044BB7C5F2B7EFF932FE6B93BB152072CFA3832C7CD621F5D6DC24DC87A784A59CE4EE51521B54B5B114A486813
tools\clretwrc.dll
md5: 1F852A1EBD2DDE2E2A2672789E3A87C3 | sha1: 284F93B168C7B41B8F857D587D7EF0E5A352620C | sha256: 4F9B0856B3B2966ED81357D4CDDA583FC37814F8C42B5002CC5886E8A3C4E9D1 | sha512: 7045C13E5BB5A05FE7403519E2AA5461B69DAD290C64364990EC648951CC649836739FCFA4C403771437B3FB7C132A6FC2967BE698FA8A3C13D261C97AE259D0
tools\System.Diagnostics.Debug.dll
md5: 0D9615B11350C122AA35B2A11EC8466A | sha1: 78AC49A883F725C72468C669F437A8F417273A25 | sha256: F94909A2D7EF04ABB82309A2F34FAA3280E3BC8E492C5EB4693CD706A816EABC | sha512: 8D1753D1DEE0A8D64367C9EFFADB0516FE463A7F8252A8454F64ABD8D03883815C8400B4CEE95814F5732959EEFCA58299856B6FFAE1D87C5E80E26E1F9483A7
tools\System.Diagnostics.DiagnosticSource.dll
md5: 03E8E0292825EE9B6F6325F8A69BD8F9 | sha1: 2A5070AC552531CFF44B8C6E7D70A75739236719 | sha256: 99A4644F4FE147F3D8BDE7DFB42C3EDD8F28371926F079D8DF1865D75930A040 | sha512: 691ACB7CB996B59F9211A72C2BCE260F94D4540B10D389CA34C1561B21B1751B783223AD79C6091D489B1390EC72F028A372F5696C959712433484FCFBC9AE7B
tools\System.Diagnostics.FileVersionInfo.dll
md5: 6E1F5E5C14F2F932EBBD21FFC8639B13 | sha1: 8D9F2999E92E121AE3B0E24370AF45A4F8A016AE | sha256: CA6EA0217F5071937B7AB98EC240BD11C94BDE199F8417AD306A36C15B485692 | sha512: 41DDA84F4B52632A46D761243906A860C62FCCD02A736A2287B3E3FCC6CFF8064650E175F89F9DCB6C167AF4A67081F0A509FF32756F2A94A773080D2E81D7B5
tools\System.Diagnostics.Process.dll
md5: A5AA89A0D99A2795D4D80084577419EE | sha1: 0AA5B9F7809FCF2C2F04F818B6C4DC56326A1CAA | sha256: 9ED012A9E7655D1CC7E384080C7543F99636C1EFD9350D500971E7A45B4DB113 | sha512: F2CE690100FAA5B7D20E115F01DA3857EBD665FB6B5DE349E0470E1CC1389209CC4C3C9CE0A12B9C4902C5525013C57FA615828E5E2BA6CC8ABFB2C2DC6DA794
tools\System.Diagnostics.StackTrace.dll
md5: 2107B0BD93D55FB50925BF4C6A65DDD7 | sha1: 953C3B420CDD40DA15F09E7CB3F2707B8E77FB64 | sha256: ADBDB247614B30E2C87FD392964EABF400389CC212BA3502063C007E1D42128E | sha512: 2437C0B2DF0745D457B04022B34BAE91FEEF667F14E87A63B4F9DD01DDF2AE805F2DBBEE50BEBEFD5404AD14ED7091AA86500C4F4B7106A05342B6D0F9831E3B
tools\System.Diagnostics.Tools.dll
md5: 4398D295154313A559B79D9652350EE0 | sha1: AF3DB3DE234C3F5660F2F5D91B748D6771068FD5 | sha256: 5152516C6D9C146BA8D6118DDE4B99FF5D10023FC52323748360858CF93D3DDC | sha512: 06F28ECF5940098D843663BA7F04383574597362F3DF9E8334448D95A092E9A71BAC09299CD6F79E91D20C0A6B960EC7403BF73106562C5E626542E552AC53AC
tools\System.Diagnostics.Tracing.dll
md5: 0F8D393631C9D6EA99FF8EDFCEA53C48 | sha1: 4F0CE78C79CB75EBA9A5B1661B6878A75DE8D78D | sha256: 66B2C2A7D23596A76239384A170DA5856CE2569DFAB6379A901FF21766E8E8A9 | sha512: BB3EEE1DBA10DA5AC331544114D0F773544B8C67BF25FBDC30F93C1632A9E9E87A1AAD9EFB6AF5A93AEEA67A59D33B14E2B767A0EEF6B20D98FF56F847997CC4
tools\System.Dynamic.Runtime.dll
md5: 0A8C2ABB7FD793CFB9A39227F944FCC9 | sha1: 72A623B97AB5CFAFC2547D4071DB3FE3B3AA1C53 | sha256: AC18D422D83496656756C92C7F2D23517269B44582A81CCF99DF94AA192970B8 | sha512: 5C45B39B69D2442BCF571AC9082DF4677616AFEEEA5FB17C655A1658EA5A6FA500EA3D9664534B984BA7DF2EAA518240D1883F7238A939D77BDB98DB4B7A1C89
tools\System.Globalization.Calendars.dll
md5: E6A1D851DB770A212FF8A6197F1FADC2 | sha1: 42522470C136E6734D66AF487BEAD30A96440F33 | sha256: A88AE6184C0A9F3C0DB4ED804414F872366B1B6EEA036C1D293C22740EB6C785 | sha512: 896EFACA608B5480A485DF070293E93A725B5C44A5779A99655366E5387860E5DF689E34A608BFD72A51C9B8CE8C81A4842CFB780EB60F57CE12718918C78EAD
tools\System.Globalization.dll
md5: 7EF875026736E3A17E35D57F1B433DF4 | sha1: C40ED1F7FCF19004DF287255995251ADE13C427E | sha256: D9C926C3099DCD916BEAC7EA37F497B5B8EBED836FEDFA73FD59BE3F756BE482 | sha512: B8B2E69F8F4B2B28CBD0F4999C17CF0E2835837C94B195AD301ADA2CE71BDE933A1F65313EE8481B0471DC472FAE0821D0220EAF76F61930BB029514284A2A59
tools\System.Globalization.Extensions.dll
md5: F5B653A70E4FD522473CDD223C9CF833 | sha1: DAFF73458F5A680D5631317C3F880B1700811BB9 | sha256: FC647109FA746C3FB5A93C933E938D010B49568BA080C356489918EEE6EC2656 | sha512: 5A2A9068B62F5711CB1A9C2678D58B3FBD97ED2B8E536706A9C73E546C92A0E285FB55284FE3910B7CE7568C30C18A59CC10FF4DF5476F7F3D643A665BB9279B
tools\System.IO.Compression.dll
md5: FBD52C78647072E17FDB2996325DB6E4 | sha1: 2CDFC93EA967D0725F1A9F371F00B950FE1DBC13 | sha256: 4EA09E6D194BCCB2BB424E75DC8D125AE8637E9EB4B4A09FB395104887CF1A7D | sha512: C4FF5C8B7DB196A0C1C30720DFEDA9CE4D062A7212AE613B32F56FD6EA8A080B0400A842D7488A58FB1EDFB46593D48F880937E68EC3A9979C921663E95AC78A
tools\System.IO.Compression.ZipFile.dll
md5: 65306815825EA8652D0EE2163D123D14 | sha1: E8EAEE6E9AE5FCDBD19B056856BA0D8424243E28 | sha256: DB7CB3CF25D563E85A287A77D0C9ADDF6DBC1907475330A173F4CCCC1CA0E6ED | sha512: CD649101439099CE741D4C1A1334CE8BD9283D6531585047B64138B533E742808D1097E9419A3936E4939E1D4193488E0451291F4D56D70931E2D87A04239646
tools\System.IO.dll
md5: 986352D53478689FD0B7880FD9E94DEA | sha1: FB95CABB73D84AC1464971CA64CD263319671D26 | sha256: 86EBC72E381CF2C8E7D733722B625AD2DBAB68D6D9FD724B4D819D276378B200 | sha512: 47A031C0F67E3CDA92CA9B780AAC122D8C04734B4FCBABBED858F9CE1E945E939C3E0DAE47C9C8403CE462A49EC0B1BE849A46955ED0B7EAAF5260929B3A0C17
tools\System.IO.FileSystem.dll
md5: 555D094E2AAE1933663771190D4F435E | sha1: C0E92DB91F25B6E88381EB1623289101C0321FEC | sha256: 7143DBC43909ACA21E469CF2522EADF8E1553CEAC81D8D9AB494C4C36E46385F | sha512: 6BD46D94E08BEFFF3391F7D61CFE2C2ACC36C33F7F63F39901E107D52BC551327CE859BF693ED515D2433C18A33793FCD3456C1294D2F81D5870E2DD4A553C30
tools\System.IO.FileSystem.Primitives.dll
md5: D92A01D06B829F1E115E47E89960E8E6 | sha1: F94E16C907915350C9A7FBC49CEBE7CA046E50B7 | sha256: 41827A243276042FF86263CE8A186B53F284A5660684BAB98BBB0D1204DE5C4A | sha512: C90ECD13A4985DCEA7EFEE7F339FDDC06CF434A723AC5708FC1E8A2383C2C98E846C47A60569279362303C63108E59362057C93C325CC791E97A7F34BBF7B7AA
tools\System.IO.FileSystem.Watcher.dll
md5: 5444CACCAAC307E4FE309DBE3FE7D87E | sha1: 22D8464D7CEEC5CD4755B1FF0653A0F9A314A75B | sha256: A16F339C2AE300C307F27254310F6426BDA4BC377274F30E726D2FA22DD1FAE3 | sha512: AD4F9E7CE3C83538252BDE016BE74ECC9B29973F867467FC98F86E1DC115EB092CA809A154C645DAF632DCCEFA18B8B8C65560BC1271FE055B1B7C90E8CF3B7D
tools\System.IO.MemoryMappedFiles.dll
md5: D71AB624DC3126813160550C9FCDF023 | sha1: 03C04DCC66E400CC649C8493FDFD5772FD051308 | sha256: ECAF74DB61E152F9551632097F92241B0A35A839A150ADF371D383CC10121D76 | sha512: 45CA4D32E5C70E1A67B58063526B7DB3D3E6995D22041D53DAA304C5D071A45A11084B45A407DA9264F61A1D10D46D3CF921102DE32F3C84602BA748E0CABDA9
tools\System.IO.UnmanagedMemoryStream.dll
md5: A69B3AAA3847AC323BB925E9D7530253 | sha1: 83D6FBDF7A82B614B3828A14B02A6BA87E86A850 | sha256: 0544B53095BEC3989C02F6DD2BE1F26698AA1D55E84C4C86BBD6A83D119C2CB6 | sha512: 4F183730F154E485FC7865E9E9A9BE7D62CCBAD24E204B37B2A5D1AEB765EF6569CAE11B1F34AA07E6FD30083CEB5C88BBF5503E756F9BF4794B45F7B8EA69C8
tools\System.Linq.dll
md5: E5067294DBB673C1E49E5288C49999CF | sha1: 866B9A8A7DCB00A90990B6CEF915E48464CE2FD7 | sha256: A0884CF5DF50922DA66E5E62D0823DF4802B2982A93B92E0C4D96AC4745A79EF | sha512: 7C664C505DF878442E94D289EC38FDC0E6E2A8BF572514C378090647372A0B9B93466B3075360BF85497F446C6AE26166F79A99132CF039F6E0E58719FF71651
tools\System.Net.Security.dll
md5: 49FDFBAD55541624E32F9DD835A3E71A | sha1: C3168F18EF0FCE508EC6C408A489FA0417AB4906 | sha256: 790031042ECAA78300BEE53838B6919F5510141587B01923732A3BB8AD70DE80 | sha512: B819E5B0E7FB0CA10C2057496B57E6B1A79CB49803804AF6D0132BB2AC9F64EF6BEF4F95DA57409C237BC417978DB34B821230E2C1BB8307AF4AF654FA27649B
tools\System.Runtime.Extensions.dll
md5: 9C421295767D99B178F325D10FA84031 | sha1: B0AE1A5E9E6D493DB5004D1016245D614AA08138 | sha256: 8DF063925AA2C5305C685C2BBC27D7F4A916F36569D85DFA1C68563EF9FCBA75 | sha512: 1464041885E3B1427488E0C446E182D928AF6D9096E5EBAA75FF54EC41838276DD3FE7BE060C337C2FF7EE746252DC7D987349984B27AC0E28311FE3E059FFB1
tools\System.Runtime.Handles.dll
md5: DDA25ED105DA733D53D615810549DB73 | sha1: 3ADFCA45E7792D6D30A21B1AAD547CFB8F27C05E | sha256: F27C1D97E63362338E026D8C917F1FB41230D64F2DD48B47F17A767BED6EA0CB | sha512: AECA3877CBDD290D02DF91CFF2B1943B539AA8AC56ABBF2C0899B80E3C08B0346AAB50118C253F3FD3857EF532250F027D582B0252C2E9F4D3F3C04B9E5F6B2D
tools\System.Runtime.InteropServices.dll
md5: FDD4B253E4FB1B6AEF3074FDFF46201E | sha1: 6A725A9EEE492CDCE6632AAD52BEA3669BA8A9A7 | sha256: E6016B607AAF2CB5A02F12111DBD04360A2E4019FD6876F7A766BB22426C1B03 | sha512: AE1D884FCE02A87AB7D9BDA1A4C145428625FB464338D42418A000E5294802E937EFED4F91370210B567900BFCCCBD9CA01FC1AFBA40170770CA1CFF8C508EF5
tools\System.Runtime.InteropServices.RuntimeInformation.dll
md5: 01A644FDD56032867719B9696D4320C3 | sha1: F2431310BA290CA7361EA90E3782FE19551940A3 | sha256: CE7E6779A430AE44ACB0763C7B3D15B53394FD23BD00ADE11EC625B18726D4DE | sha512: BE5731E19F5057215C6D6B518AC3AFAFC912DD8A4C92D7E6220180B27A2B4F8C4A93E39AAD1C520F3F361A74BE71C5BBA55AA25D6282F086ED9AE6AC98EAB1E6
tools\System.Runtime.Loader.dll
md5: 11D93580889C4F2E94656924908F7D5A | sha1: 9DB0E905C6B466DFD06461E492B9B3F5F272F051 | sha256: 3FE3FC7B9101A2410477F52C68BD17D15DEAA2E0A78B1C242809506131AC8783 | sha512: D45773A036C566826D389D75BA16BFF3DCC6B5F1B588643B34F7F2EF64A11E5A6DD6911A96BAC511FBA2F2A5B16613789E231055DAE27EA45B25CD75931C43C9
tools\System.Runtime.Numerics.dll
md5: AAD35C6F931CCC5D9B94A395F51A1439 | sha1: 923593908A599C2017418B80BAD8BD1783CB6935 | sha256: 1FAB9BF69645ECD20E98D7221EFD5C9A2562C405D5C77024BBD826AF09C521C5 | sha512: 5DD7BAC2E5451E7C8E39890806CF6B95E593957ABA888C5A93FD8B4B5C82B018B850C02154C789210633080BD05919B5EE2BDBCF64908DC1CA21E513C7BABCC7
tools\System.Security.Claims.dll
md5: 5483337F7AD08AC92BA59E33FBD2F6CF | sha1: 412B36B07529337990CEEC9FBD0555300D4FC500 | sha256: A62FD92BB9DCADFEAD2F08040984A3CB891698ADBDCED492DC781CB814787E3F | sha512: A9B9E85635921144C5682AE5C36E87761BD726D972A0381E0397F55E1536A8002AE93CC1315C967F333AE53241C90641F5A3C094BE64CC532C8D975F54891A2A
tools\System.Security.Cryptography.Algorithms.dll
md5: 1763FC471753A4561BEAB3B2649CE5F7 | sha1: BF73406FF90F6CC0BC1EE58C82A79952EBCEEA1F | sha256: 2B1066896D2F1C40B467DED4A786902F3A592DCBF8DFEC742ACFCC2DEA87C6CA | sha512: A472422F70F0888EB22C5B3D1AAFBB7169228C1416048314BFC6D9A1EF68B96A4533B965BF10FFCD736A5F02674C6B65E1F843C381F5B5640E611657BC78CB55
tools\System.Net.Sockets.dll
md5: 71504E95A199414FB5F3A3881AB1CCDA | sha1: 1513F9E2301FB42D08E9786D454C1C11B38D5D91 | sha256: E1DDE237658A764AF4303D092325DB9C0407B9E30013B227D2AC36FD6CD9F6D6 | sha512: 3A8560F2FF69BB0952C97F54E8BA0E70D1CC9E3E660E5B032B8958A46D8DB50057A1201B8C99301E94834B942F37DE6BF58B64B59EA85442D3E4619DF9EEC20E
tools\System.Net.WebHeaderCollection.dll
md5: BD01C26B6E417774DE35699553281816 | sha1: 9D976DE592A740313E25718697BBA5D92B446C13 | sha256: CEEF98C2B5B07680A5BC5887C5D894C8F4D16DE0669FD26844ECFEC1028558E4 | sha512: 8E7DC96FD304A8A0F5769A6DDD74854C327C9F70E83061EFB86E798D185ED8AF2A24ED8E62D1D4248529FEBA8C7F69CAA0453D41A272275D497BF8953261A821
tools\System.Numerics.Vectors.dll
md5: 79E6CB0212FA54880CB626064857B300 | sha1: 4E342F41BD3D919F1206FF8EC71E24B0C0649731 | sha256: F73A0D219CD27551848F9FA4A1F63E11D7AF32AFB532D7E67E88EA29D6699218 | sha512: D7DE8D7F1B78B81E03C683FB7F5BCD0B7244C78AD55B12D8CB8916DC9DF565E0C7CC298A35C7FA30B90788DFFD0073F4EC43CFBF0A5A515738BFC001A6D96EAC
tools\System.ObjectModel.dll
md5: 108A3CC22494EC15CBFA6C582D214790 | sha1: 10CD21D42B2BCB10AFF918FFFAD00662B547FF97 | sha256: 44793EE824928F252284723EFD769E292DBB5BDC1F7DE8D58F372B8B2F3CFA30 | sha512: 38801128514EE2F60B3BF9179213D17218BE200DC861B6D28679CFE895CFB13F6F4DBE1BA09186C584350E41D55324917FEC628C92792D7F7A63BA7D26DBC699
tools\System.Private.CoreLib.dll
md5: 683A72A35658A291DD18BAE664DE3458 | sha1: F0852787DCCECE9635F29A72A2330B52E0A34D21 | sha256: 4009636892EFB74CA1297360F7FF45D5F8968CB24BD97DA20152AEC2AF1C22FA | sha512: 50E96F1972EC5210C1457CF3CAE0A9D7E68E421FD60FAA71C52857CDE8A21CCAD58EB84260EF8531D55F85EED534094727E74F8495BCFF45A98C7832392E9A4D
tools\System.Private.CoreLib.ni.dll
md5: 21F256F7666D75805096558CCA15B0FC | sha1: CBC3A6674A62A43787EC89752ED9E7EA75842BE1 | sha256: 1A97DF77B453F41B47102D7C011166F98D99081359B92AC6BE365988E40BFBAF | sha512: C18F356E87FEA7CA6E84969DC4B65EFB01D09474851298536CA26A78D8BA195937E9A5FCED52E8BE183B7CCAE5ECCE3CBF09992DE1CB7B4D0BC7BD717B6B7FC6
tools\System.Private.Uri.dll
md5: 687991E59DEB7C9A72BB458BD6E6BA14 | sha1: 151C94C894B65F16D923B170CC0F352C5943786B | sha256: 250962AF9AAE8A21E3BAE2044FB6310B55BBEB825E130A8F54468EA05B44CCD8 | sha512: EBA8CAACCCCC0686AEF79D5626F3C64870A1255230BCB98B8D0840060E6D94A56635C05A3B175BE3A91807711EA16971FEE7636D1F370459CFFDE4E6B3C592BF
tools\System.Reflection.DispatchProxy.dll
md5: 22EE7F4F6E7B951856C2244230F98EC1 | sha1: 46F49EE802FC53DA9F4DF5D81397BD705A2BD3D3 | sha256: 34D56E679E4B3289DA29A99CA6668E5807E26FDA6BD96DB4DF93EA8D51C2D623 | sha512: B2FDFC19423CB0677DB8705EE3BEF3FB6551B093BDFA4CD6493D48D4C0BE46B3A1D81B351895DA2391F64B71E80A6E18F239075B0EF3CEE05634AC39008F0083
tools\System.Reflection.dll
md5: 415281C87D7F8AE0E3F9892BFD4B68AB | sha1: C3DF659DECD5685FB8ABCF86E55CA1DBA80E549D | sha256: C33C4B9C2C40926AA012593A7A932CA3F908D20BE47F4247D98921AF14BC815D | sha512: 1CACFEB090643E8E322F2780E4E3F4E0786804997FEB3BCAC53E8EBA2EF51C22A5C6441663617A2C09FDE239A3D7163E4241BAB2C2D1C5C28F00E787EB849724
tools\System.Reflection.Emit.dll
md5: 4A7381ADF146CE21DB14DE98B8152454 | sha1: 6FC22390312B7EFE8CC7377D078B9F6BC06273CE | sha256: F55E0F86F33EA29B83428713553F571B27710DC0DA8B9E3627A037E125174E50 | sha512: C41351C7F1D2B109BF397815969CF99D7F3EEF5048386C951D642E31818BDAC4EFD11EBCFBB38EF0A9770B7BFAEFDE7B06377F77902C48FAF63C4B889142F058
tools\System.Reflection.Emit.ILGeneration.dll
md5: D39F0663060BDC7729365F9FC026E0DA | sha1: 64530C5F312B3555410BC43C9DCA7B0602B3BCD8 | sha256: A398A1D9CAFC7BF60710558DA7AF9DE10BC4A88904F5746DC87F681E763F7B5D | sha512: C36FE901AAFA0FDB4720FF89F506AC78E076EC28F6FBFBAE16C6C7C49DE4EC4CC987F50E784454BED860F4E612648236F946C777D2C084F1034FEB9B86903118
tools\System.Reflection.Emit.Lightweight.dll
md5: 9D68ED74CDB8B568F0C22C75FFF200A4 | sha1: 09D63B53BBC11D737151B98F098E98C6F84FB1E8 | sha256: F52A52C97465429E496DE71F892CCA9E02E45BAF86891352F79864DFB623E06D | sha512: 949E09011793A70E06C1854F75C67980940431216DF297B3A40E8737D0B72B13BF5DC588A985EE9DA90C1AF1909DA9C436C844311709D6166159FE66C8EF7C8A
tools\System.Reflection.Extensions.dll
md5: 1614E32AC59972DE380729CCC6343831 | sha1: 66AAEFF2FA9B9051371D9EA89D282FE974CF9C53 | sha256: 5E98148EFD134A8CEE1382B4C94247FE207ADB7EF473A9C1CF8F57F4A538212A | sha512: C7544B8CCD3940375893E39CD8FF4D46075FFA2A83B5FA05A7D4727BCA62B6060039E12ED0E1ED121C58E39FE1C801BA3D8412B79F1F1F81C724538727574221
tools\System.Reflection.Metadata.dll
tools\System.Reflection.Primitives.dll
md5: B53A491AF5187E2104C19FD36EF67986 | sha1: 7226B0BAE615CF44F89FAD0B8A851DD61EC784CC | sha256: 2905BC33231D608124ABF02CE821A021BB6994C72673937C82392B086A67F59F | sha512: 53F3D606C3CF0624D80C500DCF8A74C625FC0253AF11CFAFD72ECCBAD6FA42D3E1E0F476F5ECA1CA4B4560D888B10D208CBDCEF0CD4090D70B3921D45311FA9A
tools\System.Reflection.TypeExtensions.dll
md5: F74B2269BD4DBCBBAF2C3C0C1AEE7D06 | sha1: A2F6546BC28CE3367007555FB5077953C2C9ADE9 | sha256: 6F7146CC6D8A1D6B4E7D9B2C50274C85557408843740AA337F0CA1559AB9AC8C | sha512: 8538E962B48892E4B884C2BE86246DBA047B33C5BB17E27DC7C531A0BE27D35D6D33EC2FC6FF58122BEDE78B1E683E1F685C052DC43265FBA4FF944BB31454FA
tools\System.Resources.Reader.dll
md5: CA37A2E8018E114C33E1FE2B7BD128CE | sha1: 0E72CB75B9F41EE81956CCD6DA7B70A1A1094F25 | sha256: B60EDABA7789F0473C0B4C14879F2296D06E15382C60473A1069C4DBEA1DCDC4 | sha512: 40C5CFB568C2990361CF8868CD1E6AE5012957D8A286576D62834664B3A6AB954B1826AD701E432A3D43D415BCBD3177B8EC1A4506ED4879E1D7FDD336CBB86D
tools\System.Resources.ResourceManager.dll
md5: 578260BE9C608ADC606A3805CBDF994B | sha1: F71DF6AA37A83D619CC74D51A0ECBCCBA13A0C2A | sha256: 5B91F3592680CBDF6B03DAEB17894AAB0A8F4DC0D16D3BF7EB4640DD8D32D3D5 | sha512: 55D250D8DEBE627755E08F5411D344DA80C5F6D57FCC3202636447BF1ADD56D912926C0B73EA7F4CAC5528FE1029255E9FD443A2B1827EE95557BFFA05C1A229
tools\System.Runtime.dll
md5: 8C71E0F24A51947EB033119147EF8F1B | sha1: 6AB10477BAC85C6ACBF7774E65EC66C4C930D398 | sha256: 5ACB6A5BE601DDEFAA5CC3E9062CB7A17B538AFD0FCD396B4CF553288C1B4596 | sha512: 733B01C0E7B62344F7C05C275F21571D99DB706706286DDC987F1313626E454A3651238B198760B5095696FB55013AB47BAC243845B91E195DEEBC1E78CEEB08
tools\System.Linq.Queryable.dll
md5: 08BD1EBCD83DF8B679016E3D5A3DEB4A | sha1: 405E73014C6D3F1738D19FCB21DB0E7F69DB2E9B | sha256: 7CDF00AEB5BB50B4FB9E3EED26DB41CBC38A5FAFC1D7819597CCB9BED1A2ACA7 | sha512: 1DCCC4A8B114D652DCAA6316DC8DD9D236B0B1B353A0D1F9AB8ED4BE68391E19497FDCFF0AFD1EF6D981641AB2A8FD5E69C60F0EE6369D33CB2A8DF61EC00EE2
tools\System.Net.Http.dll
md5: 2EF1BD96E0A82D5F0B23C3D0377269EA | sha1: 6041F398BA5CEF02C07F58A9E8378FEF082BCDB1 | sha256: 3C3EA61A1D415161ECEF45EFA90C9B7C85444911874ECF22F1612C52680205F2 | sha512: D0B3ADA65DFBCCF6E79105D6CCA385A5A502585B56EDC9D307E24CC7922BF619BD4CFD8B43D2207A0234E93F5403333A695E9780B5F26A6AA9A664B1D45266A7
tools\System.Net.NameResolution.dll
md5: 9FC2BC2C492C0F9AFBEE4968B1CAF4F3 | sha1: 2C01D0E374079F2894C5338F70EBC25E28E93299 | sha256: 0B1E2A2F4D984B44182D42944C8780294F33B2674C0753F186BB0A55DA880BCC | sha512: 71EA6B6F080CF50CFAB284FA94D6FC57B5E855777350D5FA4B0CFE2F6C088FD88BD5414A45C4AEB8DDE8D224A7068D283623CBA092F354E2D68652C18C215012
tools\System.Xml.ReaderWriter.dll
md5: 03BF696171700A561629859043BBAD1B | sha1: 1E048B8BE4D11868EC302328825B824F475E719C | sha256: 99A4ABFE96751C5EDC45DCA6EDFFB4A53BA15C1B7CB69A40BD64AF56C0C01C39 | sha512: 23B7993095B0CD924B61289BE9117BFCB7157FF6246D3CF3284460D7A1FED9BF1E9FA54D750923656C4C78EA6A44AB9BA7F082AD4CD2777E65537EA102A914DC
tools\System.Xml.XDocument.dll
md5: 72F4BC1CE871844E8713018FB20BA1D0 | sha1: 1D1D5E112388FA451D7FDFF78958243713429467 | sha256: 7010C482A9695D7E17AB5A78BC133C860F0313F100A18CD978C9769E5650B8E9 | sha512: 9D6E99988DD26CFE7CAF44018F3D4D28099572C4E1B36272B6A2557F3115D798F67B93DF6259EC7D2A3DF36124006B05B02E740C7AD80613060FBF9FFA391C27
tools\System.Xml.XmlDocument.dll
md5: EDAA7D298F16DDAD23551113D037188C | sha1: BE0BC198A3A81ED77AE412145B497239B5CB76E9 | sha256: 58376B46BD63D294ECDA63684F31FB0951641F4C856CA5CD5BCE0BF5DF433325 | sha512: 0FA1B07F4BB7E53801F5B95A7B8943C89B711B4783EFB0E7A266FC75ED1E44D34B422C17BD03C8FAE69796F66F315048466A1201FAE39F8F0A089592F7DB0624
tools\System.Xml.XPath.dll
md5: 8694403639465BAA15472B8D1D95FE7E | sha1: 557B03C042804F6A4BDA70E9169AD33A584C790D | sha256: D9DCCDA9FDE1740313DD9A0279A373947A62EC45AFFEEA57D9AE6661B774D379 | sha512: DDCC03DB51E254F10B3B2F96C4ADC7201B53CE2EC2B42E6A38DEEBD803D6CC8F3DF30019A2AB602E363A6781DD5F70A2E0264913FF9739DF1A64F2C2C1C75645
tools\System.Xml.XPath.XDocument.dll
md5: BCFC6503D69997003365272CC6254060 | sha1: D89016BE1D38A776A7D76C7F3902C4273FC35348 | sha256: 2C0C0FD027F911AF0C47DD405262B25432A08E529E8C27095A77273EBDEFEAB0 | sha512: 14B4FE91C407095AE461CC1F43D828A8F21B269D106D15CB9B2A97345B44002217F3948D5D2CA111B3D59B7FD2C712B7231A7037FEF4AA5DCFAE404CA1FA306A
tools\YamlDotNet.dll
md5: D58F30F3940774C4C193BBF786D0FCF7 | sha1: 07E8D17FC364697C7D8CDD476F29A182DFB70F23 | sha256: 0B751021545A1FAA67792CD7C3C6A551880BC89592173E3B15D8695833E8848E | sha512: D1D76DE343E2B6325F08DA52A8D7840554E841F539E4E146A098E65B3C23924F3467A5D5F5111CB7147E3866AD497BE95AE0BBA7E30EA5B75C8524828C309496
tools\System.Net.Primitives.dll
md5: 2E9E3EC8ABFF6F55EB44565298D8636A | sha1: CA9E49E2D3F0A73B7AF252C36E1D6AC7BA5CE24F | sha256: 0B1BB224C1444213687475E7D36B70408D0E44529EA79287169B0E4F34936E0E | sha512: E00545CBFE0B941FD6808606DDF9091D08039B95750D067EA42D0332FAD2BA5DBF09A1EBAF5141636E24F5ABDE5B465D942884685B9617A55ED21B1D5163805F
tools\System.Net.Requests.dll
md5: FCC0E048D8178D0D021115BE66F4C985 | sha1: 5C5016F2603D672CAC969CF5E75F3216AAA90E1F | sha256: 95438D8F4DFBB40D94FFDAA1CF2A3E33F0E28E3AB56EFE0782F37A4168213344 | sha512: 6A160FC015E117467276A40F7ED07CC861CD73FE523475741760BC8B2CAE9EABB49DB31A24FAB07914085C96F8AFB4248CDA56BF7073440014498659AEF62F36
tools\System.Security.Cryptography.Cng.dll
md5: D5A51B88B360E549FA54A7156D850E34 | sha1: D674C84532E24FA85FCAE4F22F08BE9573057BE4 | sha256: 90F44A095185A9D31DA5BC924D10A2CF952F61C88F2D2D860F1C0E9B8E801B64 | sha512: ACF2B9D8FFBD9CB43CDC39BAC0A62104DF95E1C1C8469C3B4A7AFB216FDA65082E578ACC12866FFAAB74F6B34F62222CFCAF3B56DE4ECA62C2603A36FFFAA139
tools\System.Security.Cryptography.Csp.dll
md5: AEC463E517993B5AB4D7E37FB5AF5A99 | sha1: F72495103B8869E842A01D959B09AF2DF3A230E6 | sha256: 0491E9EE2C0A74AF5CC0CBF606F0D78104DB3717A7AA3956AB05E93DCAFAE990 | sha512: BDA37B68EAD179B5E83EE4C850ED0017AE7862C70D61BD9708785E5A14DB44C54F9A44BD19191C1714D2C2FDEF15049A63F2243C96DE5064C779B56458FAADAF
tools\System.Security.Cryptography.Encoding.dll
md5: 4E594B8C49659EC7D93AF482D180F495 | sha1: ABFBC4C5B5D2B4AA6F4B8529B244463BDF1994C5 | sha256: 8B0FEDC24845794CCF36E9CFE579F70D4FE4FF48E07B0589098FECE7839A6C04 | sha512: CB4F9A50F0E4EA6FD84506839A48B307BF83A857F735608F75F3D2E44861AAE5D8F2E0AE4658F92F79AD772DE3ED2F827EF8DF995066046F28849831FA155391
tools\System.Security.Cryptography.OpenSsl.dll
md5: 1B57E014F290884D6AC7DB68A352440E | sha1: 0DBE1D43E2C0E557F651590EC751FBCEA5FC5406 | sha256: 033CCC9C5106ABF196427E5BB3EBCEF13DD97A9DBC9548AF2B708FB9C492DE35 | sha512: 52E5DFDE23FD237481D09A6A530D9925D34C28AC5198AD35459B7109F706D4EF8640D662C1ADDB1756FECD9B176E6DC8CACD43C365C84F69AF644D33DCA6FC29
tools\System.Security.Cryptography.Primitives.dll
md5: 012ACE0A093C0249A601C9F877F6146C | sha1: 056F2DDBCC1F0BFFE7D53C1E70258F62FB459F7D | sha256: F9152D6C04771662BB10A2CCED1F9DA7DA4CE948A89EC4EB40C5C5CF78506E7E | sha512: 2AE63DD8C6F6618556AC17B0359158E6892E9FEE76C980DA0227759468F59256045A99AE49D67DF088DBEC5850BBA0366DCBA031CA3BB561731A12C89212E4CA
tools\System.Security.Cryptography.X509Certificates.dll
md5: A1191C01DAE20ECA9AEFE22B9E85F568 | sha1: B172E5802818ED96421273A74F0F36EC7EAF6422 | sha256: 3D839F68526D3573261E397C6536F398A0C6C6CFF12064E9AC67FDF5729D79C8 | sha512: 4FF42D6AA42E9AC4D2E4E1FCC3DD146741B6117C94D6F853B843EA96DB51AAEF5B18B6CADA24BB4A8F21679F5107184D3F55273C6D39310EBECECD368F4D8A35
tools\System.Security.Principal.dll
md5: 05577F445DD48E814058B459160F1EAC | sha1: 63CDAF1F5E9D9D16F956CDEA6502F1BC80FFBEC9 | sha256: F42E10B651127869B31A12FFCC6ABF8DF550E292B14047B3D1B5C6FF63F80D71 | sha512: FB02D3A1052DDD92456A36B3B1012BF9F87245289FBBA77881503C5C42DC19B454A6FB97132B5C5C25D68AEDF7E0C961DFDE2A195BEF842870DC671B6CF949C6
tools\System.Security.Principal.Windows.dll
md5: E1DE6A69FE6F444102B04733E190127E | sha1: A1E526C25521DC14F800447DF387EA0E2E227ED2 | sha256: A1F5C7E2D4D22042514AD5F31007C875021A494C7D606A15DEFA67000C40944E | sha512: 01088A25A9F32E8A4ECE851FDE3566DEB49C72FF2B23E5519D85C92893FC04C4830114B55E7F901830B8A3299751FCCD8903F8AD7D890891468AA6E12F836CCA
tools\System.Text.Encoding.CodePages.dll
md5: 7E864D924DF671C075BA30F8E1930D00 | sha1: A41F100A20C52953C486B37BBE95D0F56B3E597D | sha256: 44D99AA44D84BBEA9219216C02C9CF5ED52599ED2969E3BB17128E4EEDD7434F | sha512: 5D67F5A3154606646DACADB7A81583435987039DFEB5E2982C3EA553357764C13AD6D662AC3033B6C4340B341CBDA56E3A304B48BA31696747D930E8976C59B1
tools\System.Text.Encoding.dll
md5: E9E41B6ADD2CEBCF5FD3E16F6C64972E | sha1: 3586AC433500DA1CA45E0198DFD1D33D3BB6EF05 | sha256: 11D3388D804DD9A515743093A1B648747ACF385977CD436BB4598C462AB8B876 | sha512: A04A11BE8528EA15F8FDAA3EFC5F7B04ED6269E6C6E132C3B6EFE9E178C3BA2C094C55031585CE10E8C21DB6CE4D3808FF4304B874A87A536F76BFE3E56CC98E
tools\System.Text.Encoding.Extensions.dll
md5: 8A3A8999271E0B9CC8F0E5BEE1FF9B0F | sha1: CCB7111DC5A3D3EDAF7B929B6CEF3A38292A4C88 | sha256: 8BDD9EA80B9B68B59EC47655855C69AFCEC3AE31EF6E7AE528A1CA2A273207F4 | sha512: B4D3620F0BFC4357B9178A43E1F5157B46EBE8559729E181ED477A4BE11D73AE7616AED5536E7B18FFAF0F9EE60408698306E07340BB2CAA8356E7E860628183
tools\System.Text.RegularExpressions.dll
md5: 92CA300EC22CEE0B5213C006D5166B88 | sha1: 0D5569664C2C25A1FC8D9EA2D582E5D299E5AB1C | sha256: 59D507B0F9CF620C29114E46E58BACEEFF980E319CC3E2A47AA97081A86C9D3B | sha512: 6B53340AB078F92721DF7391B0E1C5ED665751AEA2F1BE56E9CF8A5EC000995CEE132F4A99FC0A68C6FCAE0A5862C59BD25504854322AA8ADB6A8E37CB52AFEF
tools\System.Threading.dll
md5: A920E8891B75253F4A81A275191A29AA | sha1: E706450038F0FBD62BDCDAE9543E9C1A6618CD97 | sha256: D43446514536B456AE15EC2A772C3E7BE776FE38B4E31DB0BD1A5916BBF884A5 | sha512: 4D87620B4659C1006F4480D0C9581EEFFE1EB93B42810136CBBD59C15124AC8DFDA0BC188D8F478186E1CBFA0CE746C72AE0CC62CD9EF58FADD8B138D9A295FA
tools\System.Threading.Overlapped.dll
md5: 2C33344C78C8969B88CC93E4E4CA8A85 | sha1: E12F55DA7AA6AE225368A0EFB09DC8DB0FE5C9BD | sha256: FCE54E04DB945D8C79EDECD1674DC483516D48D91DB8BF0DEDE852DE15565BC4 | sha512: E14A493DE7C966D561ED03A679E1239AAE89F33D1A8A20AD740B49A28181A7105CE5028422DA95D85B628BD572BEB08B0ECE9A242CA53C6A15EC3DA924AE9274
tools\System.Threading.Tasks.Dataflow.dll
md5: 1565867D689871DF30E805E69E53E8BD | sha1: 58482968C82250DDB3543549C187E77D6FDB5D3E | sha256: 5426F479AD098C385019235A9C6A11EDEE3227BA17D57ABB3F494655E30ED0B6 | sha512: 9B698198E29C15380FF97315912D750565282B84F242CAA7199CDFB46AF2B77CD7F48CB0438CC41D1028BACE78604E3E6F0BB4EA8743B1A5804925FAF5373619
tools\System.Threading.Tasks.dll
md5: 07A23282AB6F9D06DDF10C089F57C975 | sha1: D0C093AA63DDF3DBE459F82D9FDFE1CE51AD7C04 | sha256: 883804C1DB2B6F55BF63A820B6107B84B9C16D48722BC8FBD61959D1254DC019 | sha512: BCD77CBD2E293CD026E6E87C5EC5E4A7A20AFA53B23FD9D4EAAB3CE89F2A7CD3A386F3770BCA7E5A70C06534BD6F2E40353E678C82EEF128E15F9C6443196C29
tools\System.Threading.Tasks.Extensions.dll
md5: 6CF8512A754523F74EC59169A3E52FF7 | sha1: 9C75559FADD5062664CB04EC20DBA37FFEFD2E4E | sha256: 2804E53913A5F6B8663F27A902EE8E939559C0991CE02399FF10595392F2340A | sha512: C4A978C1EE4557A7DB9BDA6F172D2ED066832375A1B49585ED275D21664C09A4613CB5FA8BEA3E6C9922EC1D8BD8B04802BAA4B77394A3D7CD06F5414073E3B9
tools\System.Threading.Tasks.Parallel.dll
md5: 2420B1C1E79F8468B186A950B51EC203 | sha1: E2EA2A13D5599E33E488FEA6AE094216AA24266E | sha256: D359B91B6A6F0D76CCAFA255E769EC89D653B248D82B583858E7EBF522BF6A2D | sha512: 617DC3DA4977B70E211F27762DCD682276869D11CE860883C7A47DE9A313EA0083C0DCF32A99DD7417432C30B8747F16440E11779CB2C4531CF3E864E6499E70
tools\System.Threading.Thread.dll
md5: F4F20F249A6DAB196C08961ABD2A994C | sha1: D519E6433F4AEA90B478A13BFB49194D5E7CF3D5 | sha256: 983F72AADC6114FB149E7A3147D7D74DB41F974F8419EC52A79F96F6F6288A89 | sha512: 355313E2457E32737668351BF0DE1113C85AD4162C3B006E4F5B6A4376E217B0533D631CE7AE29374120C5FBE6544AEEF832F05ED29CB98BF2F1BA5FAFCDEA68
tools\System.Threading.ThreadPool.dll
md5: B725F258458ABCAB9201B1493E234975 | sha1: 27840DEE81C83040B86D96609EFDEAA0CB1CB2A2 | sha256: 08637E2B5263239B6156A4FA54D00810DF0594379ACE246436212E4CB4F973D8 | sha512: AB9428E41E355E3463CA6DBBF8C08C207DA8AE33C402774C4A98B6C65C70035C97268DF91D5424F0FEEA3248321D72755EBD8C97FDCECAFE72EDAFD03E778C06
tools\System.Threading.Timer.dll
md5: 67BFB7C21EDC7C931B5A197D792F4A30 | sha1: 04056FA30979B22A01E0CCF567EE125E15D7D0BC | sha256: E4F75BA61BA6CA07DAB5DF8CC5A65503187B6F9BC631A99D690A7BC8AE612E83 | sha512: EAA495ED966C1A952C4B3C83EF19643E79E5E15564F471B78C7D880FDE697B6A81190FFAF4198BFB9A56F586771322DB47C3712337A8AE6F858D3068280D3CFA
tools\System.ValueTuple.dll
md5: BA57733192CC4D15E9BF5C8EC1477847 | sha1: 03C83150DEBC466DC3DD4643CD9DAE31937C1576 | sha256: 516A9BB9300E1D1F4FA5B8F269E0AB1816963CBE11C8E9511FF5500B282235E2 | sha512: 550A9B5D6C7F03B5A744F37E7E41298CA2521DA56E9F9A4FDA0C062C710D5FC951B56C91401B9ECEB83288461466F2C32C3B5A1E2BDC8CA61F926623F86F4E2B

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
Git Profile Manager (Install) 0.1.0-unstable0024 308 Friday, May 4, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0022 265 Thursday, January 25, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0020 279 Wednesday, January 24, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0018 269 Friday, January 19, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0016 238 Friday, January 19, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0015 298 Thursday, January 18, 2018 Exempted
Git Profile Manager (Install) 0.1.0-unstable0001 319 Tuesday, July 4, 2017 Exempted
Git Profile Manager (Install) 0.1.0-alpha0031 141 Wednesday, July 17, 2019 Exempted

This package has no dependencies.

Discussion for the Git Profile Manager (Install) Package

Ground Rules:

  • This discussion is only about Git Profile Manager (Install) and the Git Profile Manager (Install) 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 Git Profile Manager (Install), 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