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:

57,340

Downloads of v 5.0.0-alpha003:

492

Last Update:

21 Apr 2017

Package Maintainer(s):

Software Author(s):

  • fsprojects

Tags:

fake make dotnet csharp fsharp foss cross-platform

FAKE - F# Make

This is a prerelease version of FAKE - F# Make.

  • 1
  • 2
  • 3

5.0.0-alpha003 | Updated: 21 Apr 2017

Downloads:

57,340

Downloads of v 5.0.0-alpha003:

492

Software Author(s):

  • fsprojects

FAKE - F# Make 5.0.0-alpha003

This is a prerelease version of FAKE - F# Make.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

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

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

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install FAKE - F# Make, run the following command from the command line or from PowerShell:

>

To upgrade FAKE - F# Make, run the following command from the command line or from PowerShell:

>

To uninstall FAKE - F# Make, 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 fake -y --source="'INTERNAL REPO URL'" --version="'5.0.0-alpha003'" --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 fake -y --source="'INTERNAL REPO URL'" --version="'5.0.0-alpha003'" --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 fake
  win_chocolatey:
    name: fake
    version: '5.0.0-alpha003'
    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 'fake' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.0.0-alpha003'
  options  '--prerelease'
end

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


cChocoPackageInstaller fake
{
    Name        = "fake"
    Version     = "5.0.0-alpha003"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'fake':
  ensure          => '5.0.0-alpha003',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

There are versions of this package awaiting moderation . See the Version History section below.

WARNING

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

Description

"FAKE - F# Make" is a build automation system with capabilities which are similar to make and rake.
It is using an easy domain-specific language (DSL) so that you can start using it without learning F#.
If you need more than the default functionality you can either write F# or simply reference .NET assemblies.


bin\api-ms-win-core-io-l1-1-0.dll
md5: 360C987A3F68D498FEACC8CE86F6BAD7 | sha1: 9D77BD1B53570D46D7339B452323F44E5D43457B | sha256: 12C0FD7D3C66938C5838DB85BE6F15A3DF70D01449B6F5FE506DC6316DA7E00A | sha512: CBFB61E93B0E31FD3608BB1808AB2D849648B0618ACCA2B2E871CCF997CB28C7A291569F52000DF24E192AF890CF2E8644BA42F8C31BF38DD3023ED7F34CC340
bin\api-ms-win-core-io-l1-1-1.dll
md5: B2321268B4DF66B57FF6E64B6F7A5810 | sha1: E5B891631742832E7E6662662A576E3A6FB4A91A | sha256: 6514143B78DE4AF80FE663D3D3388961EB99202C0ED6748C6B7E4671F91F378F | sha512: D506B405BBBF5EA8EE6848630370D1CD84ADE90D4406D32AE5D02E9303E3B0441D9929AB6D9C76AE247471ECDA187848F08A0667B48B09D4DD3FBF6B37245D2F
bin\api-ms-win-core-kernel32-legacy-l1-1-0.dll
md5: 68CCA556C11BBA91A83640EA7D761DCD | sha1: 682EFCA432B552EF6EE423C87CC455592B9B28A7 | sha256: 8EA8401B844846D1B184DE0E46269574F5032072004AEC3BF8C799FAA9D9AA91 | sha512: 5DBB9D4C3C563D8BF73B68F27853FB90D17E6A2E59D7F7448F59A9DBB522CCA43090EC5A5131C164F47DF4F77BB77494447772AAD3057D373ED54A1A68E2F911
bin\api-ms-win-core-kernel32-legacy-l1-1-1.dll
md5: 37B2CC894C9405B6B926F91F24546CA7 | sha1: 9A0E58B393C83C9BA6C7AE49380C020F56B5DD2F | sha256: FF757341F271848FDB20D8CDF490F5F5DA526A7ED14DCC228288294E3E16B4E3 | sha512: 759E3D54B730DEDDF4BAF43CE43630A130D79EE7FA3509564B14ED3A892144DB64090CD3A93F7868BA47163823221A8B39B796D108288A75ADFF3E18664CACB5
bin\api-ms-win-core-kernel32-legacy-l1-1-2.dll
md5: B0B347815D2C1032D3FA677FACF8DEEB | sha1: 22BA0C98ABB300735631C4A009DAA7DAE76A0D26 | sha256: 622862ED1043CE1DBC46AD5F90B2CD6482A881256E330ACB2BE3286351DE6502 | sha512: B5F25B76A32F3ABF16D5646B76C34D04CFD53F004750A6C8E4FA2694F09362FD24D4B49453C8F4A7510AA3627A845323C99BEBF8ACA00556A2E804773EBF3A45
bin\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
md5: DE70C16F613289898E945962524D9109 | sha1: 010F05A749DD4434BE8812797CA78B0C510C50E4 | sha256: E4B2B7F0C5830452C88881A6CD091DA9CDEF191FED167BE03B8D0276B59F5D2C | sha512: 0715A1B5EDCB9D89987B2F3CD191BF740BA3D97501464143754CA1E1E9DD7AC9E8650ACFF4D44DEE65B36EF71597C4677CAC35B349CD7EB546B6E57D1A64591E
bin\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
md5: A975A4F299D9243B8E3498A2914D4A99 | sha1: F1A0A1A33E5E2436473FAFCF4CB90FA9E950B6BA | sha256: 8005D6DBFCC8A9C59A7B65B05475DE91CC2DBA6B26916D9C07431B2E36983EEF | sha512: 7281BCD09C9C9BE2E9663C4FA0641A02BD972F23E29A978A6E246A28DA8074A80C32DA3B7B6710AD017B47E8F90F1603643B5840AF40CBE41DF485282B2A5339
bin\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
md5: 35188243CEBC180E2BE6740C0F7A4EBE | sha1: 6504DB54F5EFD33A77B106BD771095D7E292DD88 | sha256: 106B7AAEDE4DFC680CDDC663A8D528AAFFFF305BC4BAF77A3D49111D6C69A080 | sha512: A30EFECAD07A938E81E0CFE5356849AFF30334333F44A1EC97A613E83E37A96C09572D23414D1CCEBF9261F2123572880DF7F242E47A8CB96786E8F75ECD41B5
bin\api-ms-win-core-libraryloader-l1-1-0.dll
md5: EC7BB4E6B47808D7FDDE7D745B13A4E2 | sha1: 288B7205A7A75E2B18274E6F8B9549F9D1668E4C | sha256: EEC9318F5041D647D3F222529E5D55598FFD8B0A7BB058F60B7052AEDAA5E7A2 | sha512: A2B82BE4A4EFF005CF1ABD2DF760A9109E932B6ACB2D7F7248F9F6F53306BBD2A655D8F129D50BA727571468BEA0E7DCC0ADD348663144A40381F2D96C51378B
bin\api-ms-win-core-libraryloader-l1-1-1.dll
md5: CE216D83A911B39443E8DDD44B920649 | sha1: 8E7469766B69E0535C7DF26D7678F94028D62F7E | sha256: 11FD66BAAF246498833D795D73A35FE63F06AC37F26A5A5BB226E74097EF3753 | sha512: 5C7642C22808326C25C59098B71886F0BC10C88779DE0DB9A558D658392DF7C6ACC3A7077D722EA1241DA4B0BC1ECADB681BD4A09B2B1B6AD527DD615B92F796
bin\api-ms-win-core-interlocked-l1-1-0.dll
md5: F6664DD204196BF31E78CADE5D2AF8F3 | sha1: 0DC178028E242A5C95D89D2DA85332861C7C627C | sha256: 0E3CB37E5D2DABE87F7A37A02B9A37F7B56A323D87F7C3E1F6452366D0CFE89C | sha512: A75AFDEA362B1C5FC83127F1E683913D8C1DBAB07888B1E22505485F515D78F551BE7A2E603F51D4B51085EF6F12271AA5B81D3F9A5FB028F5C3165D930558B5
bin\api-ms-win-core-heap-obsolete-l1-1-0.dll
md5: CF4D441A3C26E1265020CAA150F0258B | sha1: FF275E4FF8A370EC1FB50C0E69C5B515583BE669 | sha256: 301DE757D1E0EB1A39C535E1BC46300B044A449086DE7F0E8E03FC607E5E4695 | sha512: FE2850CF36E9EF737AAACD74EC7A73913D17A2CEFFE019529C009E108448231AA8DAC77F2FBF2D7CF5D1F79A876DF20915C9A4509AD2E4522A823B68EB6A7768
bin\api-ms-win-core-heap-l1-1-0.dll
md5: 3812FA193D1E2747DEEA7CD92AD1FD0B | sha1: 036BC315F7B74FE20622BCB6D9FD16BF3CD2A482 | sha256: B51626BEDA887383FC98982E5538CEE6F3ACF88AEB2315EDB14F8B0384DB287C | sha512: 7F693E7FBD1AD11593DA45DE414EEB935926CA9AE4F4A50BE8FA014ABD821682973ACC5E31316162B00602750CD88F952C99BA13C68666944C0B1E1655ED4C39
bin\api-ms-win-core-handle-l1-1-0.dll
md5: 381E65BA502A5836F0D5233C802B6983 | sha1: B7BC9907E803536AE346B7D6E7F5177F5B07F801 | sha256: 5A273564D08BC459A67077A7127E83B4380D7F77EC7385C7AC0C5EC54A87D682 | sha512: B9D6B48E55CE7E3E0A412B02266B36A9BF230B837819F9FEE5D7762B73C8E55B3C1BBB81640D0B7DDD6040577426BE8C1C86CA63D65CFA72B370C293ECAECEC9
bin\api-ms-win-core-file-l2-1-1.dll
md5: EC67E6E4B336CB06F8EA1FF15FDE552D | sha1: 4EDC1244D1A09F2AEF37D4014FD96A3124694031 | sha256: 77B3491CBD4B07928FD94BFAC64498EBBFCE8D4374127B2A6AD3840A17871752 | sha512: 1BCFC34FD420BAF1444E4CFFC80C8D0F785421E1EA4B8910B7B79DA90CB3D1529D1F459A53E89B4BBF0A8FECBAC4406D390CFB8C826C342E6C3E57298638DD6A
bin\api-ms-win-core-file-l2-1-0.dll
md5: A41D2287E474FF72BC1191809EF09720 | sha1: A9D9BA8E78F9D837661A2B8F55B233849D91C315 | sha256: F7B300503194A190259AC9F011727D071308C6BC2817583AFDBC6445504D3347 | sha512: 2BBD8AC88D175D5F6882A980BFA350FB6692E53507D430B167E2E458D7DF6942CA6B89C2785570E0985E0CEFBB1585889235DB8A035B0B7A0306139332BBB645
bin\api-ms-win-core-file-l1-2-1.dll
md5: 7FA2B206AC15FB44505616F97E00C3F8 | sha1: F1793BAD4419A539017BAF1F19BF086EBB682E6A | sha256: 6C286D12517645A216D680ECAB4ACBCCB3E6B270ABF3999A4FBF849823FEE223 | sha512: AD4DAAB6A815B69CE49BAB7228D6CF7F5B92ACA5756632AE95ECF54F4765E8D5B31D4F4D98B98E6FF87DAB3AE22E12B8BB50D4B2F21B5EFE3E05BF34F35A5165
bin\api-ms-win-core-file-l1-2-0.dll
md5: 02E05F78D100471BA87FE0ECC09E16AB | sha1: 14FC4BFC65F9C1621B730513867A6D932F0AA82C | sha256: D03D50707F0E76E8A4B89C5A7DEDF74786FA276D662715A70998A48F500B6A0C | sha512: C86F717F37C2A1192FB4B89E8B78D860954C696882E75F51306573AC612D42EDF7FA4DE63B3BD30D02A646245BA1489B4DCFA6578A8B2C8D0725C3038D6DC633
bin\api-ms-win-core-file-l1-1-0.dll
md5: 2E371A930B92562D71312E1A3F1EBF3E | sha1: C4E8C8D47618E7B774102772EFCCF39879B36619 | sha256: 290382B1D3052A5C22FF947B4D69CD68968697E7FDA662ABA508DF18139307E2 | sha512: 02463549F04802344C5E705323A097914760105EBE2C82FE06E3B427FC75EDC6441A41869A76A34A7A56DD1355212B6BEE04E4CB9EC2AF6E93A696DB31280647
bin\api-ms-win-core-fibers-l1-1-1.dll
md5: 0DAC55E18FD9FE08D1FA7E45ED52BEFA | sha1: B6C406C7D76D125DFF56CECB2AE4D041F5040114 | sha256: 4E4F0152635D86E74D49FDE954AF7967DA043E489C61D0E68BFB6EEBA31378A8 | sha512: 2E483AF382D6A4B5BEF54EFE4592187DC4521BA13BD9B53B0463DBAD2AFD7DEF0F79B2BCA1B58402725B8AA01C36164BC575DDEE9AE2C15B5F758BADFFB2C910
bin\api-ms-win-core-fibers-l1-1-0.dll
md5: 48DB540EBF3EC3F84B9E36BFB113B013 | sha1: A87F0412109263D3512FF3889EF61403AB4F1EC6 | sha256: B531047A6BCE327DBE43CF0DF34D6111E07CA19C7467B09CC14B14DC9450E3DF | sha512: E38C45FA4E95B0A8E03037D9DD4DFC7BE261E1E0C1C68B6E404CF22FE2635AC27EBBBBA5CD245120CE91B8E700BE09706A0DD27671FC1D00AE147859B7DADD7B
bin\api-ms-win-core-errorhandling-l1-1-1.dll
md5: 9BD556102A86835CE83B1AECA7AC5D33 | sha1: 9BCB80D3FB30FF8BBADA773B0B8437DCC1F0FB80 | sha256: 74F483C3226F120F56055D4750ACE72BAB0A041567D00AC99BF89EFE270983DD | sha512: 594A5801D035DD4A8B3C6A5EB4CFC277982BFBD8D26D76EFC2A4B8554A2AFC7FE1204E0C21809DEC07F1BC5AB89ED166259AFADB241F6E1F6973E85354F12B45
bin\api-ms-win-core-errorhandling-l1-1-0.dll
md5: 9B3D846CE18B814BA83985D1CF189B5C | sha1: 0B19673E49F22948D887FB5CBF5470317C92B863 | sha256: 9530117FC7FA731B16C61446835083290ED21C124355B41883F7C2BE6831FFDE | sha512: AF746391E284A4BC722B11227ECDCC8CEB9A042B5312809F7DCA60C51DAB65681E6BA0C7E7AE962D384745CFA8E41D23D4BC420424B04847B5FB66EDF4BAB911
bin\api-ms-win-core-delayload-l1-1-0.dll
md5: 98F6034A82135ED084C4E6052CF7B68A | sha1: 2813B1EA51E7F74EAA1C38BC9947F9F4AD63620F | sha256: C8D9F202C6B335DDC06EB5461B2CB2C9C8D06005586A01318A9E34F4F05221FC | sha512: C28528C254A0EAD072A7DC4741040DA54CAED815EEA6054D708A1272D31E5FEF0256FC473B025374D63F3FB747CCE5DAD7B54BDC3D252ECAB7660DBA8168E1A2
bin\api-ms-win-core-debug-l1-1-1.dll
md5: E00776939BD78F0333AA85B39236B12A | sha1: CA719D7DF23FF238366040B88777FAA10165C3FF | sha256: 20483A8203DCBD190D08377FD4C7225417B00E9D69B4DEE2536FF8EF136917E2 | sha512: 55677034A6780EDD12650D70B9C0ACD6E027A087725D88752B2EAB6D686D0588F12C589D277A697135A8DE8808AA1777B91E9F17D7B5E2FBE0BB5B9C5A54270B
bin\api-ms-win-core-debug-l1-1-0.dll
md5: 826783A53819E5D22A8ED211A8C53734 | sha1: 12C82A5ED4373F3DBAEFAAE1E0661CB862E7140E | sha256: 891854530DD06F802F8C5763BB537AB0A26625A6B9EC15877044C3E9DBA21B47 | sha512: B1097AF779179F9CD4FDD702A56416F0F442BB321985914D74393F98122CEA737AD06C5AD413B2339FE13976EB819A98E742EA4C5423CA18BD188A14C70CF014
bin\api-ms-win-core-datetime-l1-1-1.dll
md5: CEC4C98C714D695F1E0EAE327E159CA5 | sha1: 635D2906BF8238791FE456CCAED1C2B119947C32 | sha256: 25B4AD9E587D71EE14337BFF492949E75556A713DE2AA6B264140758B50C826F | sha512: CFDF8C85A232A6C566C3F93D6873F4279A544C3E2BFCC6E5BD283CB3AF104F093B4918D84B54CCE5EE34BC9E0B6B8D623B4610F73A43C617781EC7CD8A176638
bin\api-ms-win-core-datetime-l1-1-0.dll
md5: 0F82DA521ED3B316A93ECEE0D040FBFA | sha1: 94F3F6504F164AB921D65EE7E10781B881F5AD29 | sha256: 1C9CF6061ED878610DB28408FBEEDAF4E6D4FBCAA493D4CF61D385977751741F | sha512: 8D3B7F161CD78B99227648966ADA05F7481954BC0FFD973E9EBB7EE4B5CEC2817F0196359BD0B2CB518AAF5F0E3810E93CDECAF46974583BBCDEC6A82F00997D
bin\api-ms-win-core-console-l2-1-0.dll
md5: 059B767A65687000DE441A01EC1EDC7B | sha1: 9424499D874670BBC4C369790BA9FE1F0F6D463A | sha256: 7D3E827722F8F4545937C1DE7DBB1C05439EE447E649EB7F4899A0CC1ADE1F3F | sha512: 06126931C34C19252B7977ABE151AF2DCB84DC69DA616F51C8FFFBD63C523FB6923A4E82D935192FCEB874F51F7F993D89F73E1A0EAE58EF0492D6D1C775CBBA
bin\api-ms-win-core-console-l1-1-0.dll
md5: E95B6743A4542C208B65C67CC71DCE7E | sha1: BF1F28D58ECC8E4456F672992D480CD2FF7D501D | sha256: FD21652914DB96536E401327CA51F8A031B8C79D85DD07E9606CC94E54E7AAC9 | sha512: E608D8C97F1D3964906AF9731EB3D478B07B4266DB7786C488316A57B4A610790B0D3D4881ECB0811004459E2AD6432849302A886EFF4790CE8FF3D61C1ED0A0
bin\api-ms-win-core-comm-l1-1-0.dll
md5: 9D5D2A6E0D4CFF54B6F221E055B3317F | sha1: E209996E196B205D77018D137733449F892E7737 | sha256: 4D5ABCE672E7CE9CED6918252E5A3DDE6F27A6F6E1098D1D2B31B26B941E0CA2 | sha512: 65C9FFD878C13E99FB9626A2F076B67598ACCFFC91739A08E0C1010A68CC277EFCEC07CE32275934450BC72FF2F90632DF595DC5619CBAE4A99A5E623CD3A7D4
bin\api-ms-win-core-com-private-l1-1-0.dll
md5: 7AB764AAE5444229CBFEE6864C4DD24F | sha1: 9257D2E605747AF96DE104B0D396C4B7D25C98E9 | sha256: B16C9AE7D2EE084E5EBFF0180265ADE168C1D1EE8E5C891D207D588CF5D5A56D | sha512: D32A2BD3DDEB0DBF86209D8E8DD03A569DBB4B13838447C06B2CD3CCED2BDD7AAEFB313840C12116213E53B29254CEC78D2C37FB1B80BBD87E1F515B40122928
bin\api-ms-win-core-com-l1-1-0.dll
md5: 14754D801282358917B37859937B3D3A | sha1: 94F7BE2FA7A7492FD1E8FF99208FEA063D34D47A | sha256: C905384915B5B6037A346EE95C9E6C9120A646CB1CA70BC92A443F35BF9899D2 | sha512: 924A8ADD07D9145FCF9B9F3D18F1F9CEDA70489A9F167DD96C5CBF38E37469117A5C77C60833714E6EFBE9B1D71DFF5A0807A2F912F757ABFBCB358EA4DA0DA2
bin\API-MS-Win-Base-Util-L1-1-0.dll
md5: C7AB7E93A489BA0FB91B77D96D9E0761 | sha1: 6147B45C4AFFB2CA070C8E553B1E0D1857F18951 | sha256: 3438CAAC7DB300AE3707FD4BAE4FC0ADE6993FB52AABC0C6744EEAD22463F437 | sha512: 7E9C964E7B6B82D08ABA2D9B028C3FEF102EA53FE71E96FCBE23C9C133F59D24CA3374C001F362CAF3581C55F2E70220B86ECDCE8905B67B0F83C5DBFE78B488
bin\api-ms-win-core-localization-l1-2-0.dll
md5: C07112914B84937CDD3FB600AAEC9030 | sha1: 66A6015DBAAF392B66EC3D14665D3D4362CE5DF0 | sha256: BD68C5FB1D0E21FE8A1CB427418ACCB2F765280DED4231EA98A3322E8A6791AD | sha512: 8530045224774C157A179DBC608CEC0025C75FC34072865E111CE7AD94A6F107F92A2D5860EB42389CC7629AB8D964011157DDF4E6A9618BA34A2D7056731691
bin\api-ms-win-core-localization-l1-2-1.dll
md5: E35B229F16C1FAA4DAC3A1BA09349BEC | sha1: 950706B2F592DA7C53ADA605FC6DB137E2414169 | sha256: 1B4F90768D274BFF12E1586FF260076CE7856CB03BA78A6EE28A14C5437F087D | sha512: 6B22F3954C0EFCFD1E2B1B09F22621C0455B075A7509EA7AC2BF6CBE4F34E3072553D91E10965B7E73AAE077DEE55D0901FEC5B52CC5A90E66EC482490A6945F
bin\api-ms-win-core-localization-l2-1-0.dll
md5: 8671C981F36BFF9454C2AD210E3940A7 | sha1: 29A26BC2D0FDC02DF67DF1EA2022F741E9C67A5E | sha256: 53C989C88FED161AC412441C9AD183B99C254C3E080185D4C38CD9834125E6A1 | sha512: F256D427FBC55534A2EA65123353F97872B5B3EB95D12FD5DFAE37DF23D0033C121A9DC32D76326B69DFFC5CD3C39E991BE2AD0FC8D2248DE48AB49521C8C7E3
bin\api-ms-win-core-localization-obsolete-l1-2-0.dll
md5: D4E4B0403587624F193269BB575F7D11 | sha1: 88B128D298C1B17E3543D05D381C6A51B21B6520 | sha256: 9905D0135A39C026FD318C9992963845D372D64A942F8B019EB6AC55783C6913 | sha512: 0E15851132A539E477D7690CE37DAC23EEE47C274E260BF2229A56E4915418BC8862145201983359808EF6CCCF365805488B3C877D72777C61D966A59DA3760E
bin\api-ms-win-core-memory-l1-1-0.dll
md5: 7D19C44FCB2F87263030D8D5CA6A2B46 | sha1: A154812A42B479686046957E168063BDD47F1FEF | sha256: F19A2102B907CB67504D1FA2F2003CDB7F932CEDDA5846F91AA94F26151F93B5 | sha512: 6D999CB44165969523381CAD7E57314E85B0DFE67DF7E5BA797877CF85D472B204DFFB68BF483B90346F32C48E6FA4E4224C54CFA4B606EA8081B4A0C554125F
bin\api-ms-win-core-memory-l1-1-1.dll
md5: 55E2E9E4526DD8C9E42D402AD7690F38 | sha1: D2F29AE2678E6E80515BBD1F5F672D0845387C60 | sha256: DD9083F62958EE697BBC517AB00AA68DC4A6FA0D5690B8B0EA81466293469956 | sha512: 7B774CC0991242DDA4B310BB49837FF6DF3FAA09FE75EFD60418B3A1557F96D5BF4962EA8EEBBD7F1A4507E3D1B8ABED4F5B25BB26B4225F67C743936CB713F1
bin\api-ms-win-core-memory-l1-1-2.dll
md5: FA61FCA86AE5BC01E5A66FB0E6859229 | sha1: A9DE481D55579E27954FAD2AB3517C8EACDCF887 | sha256: BBB14CAE3F983743F70B13FA6B2DE1082627E77609209A8BE47742896D38B24B | sha512: FEFAA5061F09C5CA8CEAA7BA86C8AEDB497B495BBA07C78D3B46D28D0716864AE868A85EF80CA4355C6C008C830AAA327871DECF595D46D58AA14B9395DFAF2A
bin\api-ms-win-core-memory-l1-1-3.dll
md5: 8C763EFB9D4C45D4D1048C9C1FE4E4E7 | sha1: A17D658BC7B13908AEB8C05E6DE9E67F88B9579F | sha256: 61B898DD49D0832E7B2356BD808EDBBC549D73959D4A6DFB0A47AA305298D72B | sha512: 0CC2492DFFF466232B1C1111EFA7A6EF0098E54B24724DC16C3C09D09D401B15F5D6E4291B4BA4831D66FDDCA9B1BADAB3DB00B7D5D134710E9A8F901ADA55F1
bin\api-ms-win-core-namedpipe-l1-1-0.dll
md5: 0C07C5008B37853E748ABD84245627AA | sha1: 4F61C74E2ED14B3E0664E987A93B4A0C618DCA38 | sha256: A22F33B5573BD232F909DD57C5AFB9F39D3F4BF96D7A5E87DB0AB9E0B440A81B | sha512: 4EB848D3B3591DCF33EA7E02765D386052DDF76CD3D97CD7CC5D6A995C7C715EE9610D7991EAF03AA564E62052C212AE6715973D1E59410A211906CC0A5028E8
bin\api-ms-win-core-namedpipe-l1-2-1.dll
md5: BB5F1E85ED40B2C9B945C058CD54C171 | sha1: 64CF9E50D995AFDB3D078D01EB36B0B90292838A | sha256: 80793DBF64603FAC2C4768F761B6DC4CABC9C5AD8B1E9E9C48443B7190ADE01E | sha512: 0B45E72E2CF2B4F7E43366510101CB3FB4EF824D8C77D8EF2FE01A56B6F6385FDA4EC5E7E15E40E15656CC999BB829E82F224960FF9710F5531193C27F85BFAA
bin\api-ms-win-core-normalization-l1-1-0.dll
md5: 70921FB27B1CFD5D6DE3615CDED20EA2 | sha1: D4C9CFEEF219D0F569056629E838693E95AF4915 | sha256: C81E821CC4A1A002C56A25046E6069612B11A16A99B1A674D9E54F9FE94CE162 | sha512: B0F911CBDDFFC88A26DA00F9E4C8A9A293EDE239F0B7F0B9F9E41C1E98068B05C80BA6E28FD292154BF59F71A53D95F8EC8F093B7A00678E7BC7CBA34FA46B19
bin\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
md5: 515FFB04820D2D780C9E09B31ADB0623 | sha1: 126A413E5C991D1F1141CCF89293FC6CB1B0189D | sha256: 0A66860FCEAA5AEBD76595F5B3C60A0AB5564056CE3AFAB6DF9BCC5F84F054AB | sha512: 2AAA9938E51D7847C809D2E29993492B30462F860ABBACA75E0BB503DE342B80CDFCFC7BA78A637067C6721153CEA2B1989846EE5F95FD88CE55A5BDE8049CF8
bin\api-ms-win-core-privateprofile-l1-1-1.dll
md5: 6605469FD588CF09E95C8D977034BBC2 | sha1: 7FF8FC7E1A1BD0F299A14CA04B6D75CD69825788 | sha256: 035CD5865C668E023463C0C9598D55547D07BAE91B1E948AE689290FD13DC773 | sha512: 5783EE6F96878BB6C9BBC7145ED1905DA42C7782206B433DC2775C35C2B1E5EB2212B81250C49098C5251F2F29B973B4236EB9ECDF6747986B071431581FCBC0
bin\api-ms-win-core-processenvironment-l1-1-0.dll
md5: 9161E28319FFEC6A408644B7F98A1102 | sha1: 280683E144790F32FCF5193E438EC7DD3C1D41D6 | sha256: 2E8C33817D117C062C3FEE215048D386DA60AEAA3F4E5F78567EC35BE2E368B7 | sha512: EED727E57C8C009CE53B9CF420029AC4AAB3A828B64FB9739FA68B40CB79B8D9B3EE0B78A6167B1617D98928E8A32C456BB4A34FAC4F067BF0122B8E24ACFF23
bin\api-ms-win-core-processenvironment-l1-2-0.dll
md5: A44B785C2F04101D0FA79F241AA78045 | sha1: 1D7C3FB05AAFC73AF4AAF0ECEC1BFD34CF07CE8C | sha256: 07081313E887DEDE32FACAB8EA003D2D7FDC619555FF0E98851A6C890C028C9C | sha512: C12559750DAF2C0F212C5414809971AA02F21DADA852998CCED10F7A62077B662FD927F0B53F947C6B3A30AE51C00779E2D7E7420164D2A46D4FA1D54834BD89
bin\api-ms-win-core-processsecurity-l1-1-0.dll
md5: 49F46A94949259C8ED5BA237E9C65554 | sha1: 46AC3173E2172B7B71B73E0CA116AAFFF08CE490 | sha256: 68E4E073D3AC5E42B9922EC7629D7D3A5C43F230504586BA345629C5D7D249D4 | sha512: 9F548DD8FD2DD401FC1342E948E69306933E94A8F49847DA599F8A5F2F8418A641F5BA2151D742DD370484A37B19F1514B0C9AE45CC166852A51167EC7E88CF7
bin\api-ms-win-core-processthreads-l1-1-0.dll
md5: DE0DCE09D90647D95734CFE016CEB0BC | sha1: 669A1400C5BDBEB569AD46FD101D7792D13E6805 | sha256: 07D785183DB5081E2D2606694384EAE6E2C2493CB67E17E3DF9FCD8CF60767C4 | sha512: 9C3C425E9209B52909AEBB779DEDE1CDC34CBCAE75EF2801A8070252DF74ABFAC1151D3256961A1EBA702A07E41CE4BDD89F67D5C36E09D64672EE0F2E443344
bin\api-ms-win-core-processthreads-l1-1-1.dll
md5: 2CE92B7124E36CC45D9B4BDC026F2DC9 | sha1: 3CB93D15DF8EE6F6BA0DFF4C218F399EA3F83687 | sha256: D954323F74659C31226269F10AEF742598C9CD5E71A33234112E3056C39523D2 | sha512: 448DC002A4486FB923F830CCEF4F38CF26D5E56D3CF62DE2477F4EEEB3DF08320350959CC047787E19E361EF6F50FCC25973EA497569426B6BD7CC2E5B6095A6
bin\api-ms-win-core-processthreads-l1-1-2.dll
md5: 67FADC5927711C658092D3671EE2D7C9 | sha1: 3EEA08EC7E6405403E71D53A631F0F7699141E13 | sha256: 4D09C0A26EE892D91EE7F86690279FD516DB348136E3689EBCDDA0B4C7D2402E | sha512: C593CD34053CEF77B862C748C8E017BDC915810178CEB07EDCD306FEE37CF8B829EA2C4B21A74E2563A286412D328E93D5D154CB8209B6D851EB01B7EE49CF77
bin\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
md5: 523D5FD880D5940446609CD5CBA8DA17 | sha1: 9D0D392B98F197B7BE12956A3C0001EAE87DBA93 | sha256: 56174C40DF0FA3003D2721B3F724A219FC28169A462FD3F4A5541C61E650A855 | sha512: 4982DE2FCDEB328ECE52238D87AC1DFA6121774A296223D722775791EDCC5CC2B3C8C54BECBB6CB9A1A6CB909BD183553D39B77A700C0A412B86E9B8DD3F14DD
bin\api-ms-win-core-profile-l1-1-0.dll
md5: 331647814B8776D59724B73C0031C6B2 | sha1: 905B8CD22485414899C76A072A845267355F19E1 | sha256: 4A045757A77C6BBF5286AE156543802DFC67B17897D5B0F1CD22B7DFABDC1061 | sha512: 5246DE8FCEC5B82488090413167D3EDF1E1D73D01E7EAE6F01F354A3F7DAF795EF144E0AB583C1394AABAB2ED3456590C2CA29BE8C03D3C52A44C6C078BEA0E7
bin\api-ms-win-core-psapi-ansi-l1-1-0.dll
md5: B938D0C5583D637641083FDE6B613BA4 | sha1: BD850CF4A5E64CF5DDC7F93F9841AF71B6D397E2 | sha256: 922CFA7DE161B084E7A62161A7154F3F745AFEA5216EF78EFF7BC6B0A0ABB0EA | sha512: 4CD4D488E1118AD897FE38F675A8715C552403C148E71360012CF6EBC9E2B051CB7CBFA156FC98CE323F4E40F9E8E0F6FF5195589AEDEACAED2D08AACBEEE0C0
bin\api-ms-win-core-registry-l1-1-0.dll
md5: E3544BFBB5A9D22D4D1C25D7DC637BF5 | sha1: 477A4E67FAC601A2A048CCE5904D274BF4616D6E | sha256: A6E3A157A70C6B38298A822D2D642E7A13E0A7CBAE477CADFF27AEB06CFA1B72 | sha512: 8A20308A2E9211679BB6BFCF711AFAF5CB0BE818B1FDFB71D6FC82A182A003C62B7B7F6602AB26121A3D27A39D50CE4F73D0E4F16C44C9BDA6FA80AD81BA9C4F
bin\api-ms-win-core-registry-l2-1-0.dll
md5: AA6B89AA1F03B6616F831560C2246CBA | sha1: 3C5FCDFCBD8FE95C71D6EA976B744D199A753A10 | sha256: E07425FFB6DFC441DB451C11D6D8620F7D423A437B8303075AF614C130F75930 | sha512: 5F46AF2BDAB7137CA04052BE527B55D056FECA1D11646EDD4D1394BDC5DC97D9272FEEB4DE330CFBF346CB8C6D848CFE1BF239AA4012A09C0F5FD6FC2AD185DB
bin\api-ms-win-core-rtlsupport-l1-1-0.dll
md5: 399B0196A01951AE753C92537E0DD630 | sha1: D64127F022FAF4C0427762B2BDC27B777DED2032 | sha256: 1F08F0F0955BA24940FBF1DB59B4FD434E4D5462CC145F53707B9C1427841188 | sha512: 291532EB65E8B85FDA07FD69D804A2BCEEC71B60BE80F0F86C16CCAE9AB0256A1554B1A9FFAC4D6A1F7C5CC374B51D9C622BCC7F55E7B7A8E7DD24F3608C93FF
bin\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
md5: A83B658C3C200E5AD0A4A18A5B850A39 | sha1: 13956BE58110091B03243782FF26371A80F65C95 | sha256: 346D593FB3F34CD56F0C9F258B5D11426A237288B594AC7DD6437648AB1A990B | sha512: 5B17113A4CDF5132E1641727124DCEC0DC91F5A31F0A5A12FE8450BC1EBF8C4FEA60635E45EA50A4479DCB98B44A3D912DB864809339666F829BF208DA4A80C1
bin\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
md5: 4A52D19E421273C1A4F802647EBA541E | sha1: A38B10612CA8122083605CDD696618B4BB2307AB | sha256: F3F1D3F69279FA8FD0FD61B84FD9820E2DD5343507EF963F2B4F3890F1F46C07 | sha512: 87A58B1E35020A1B49451156B75D6048E0FF40B1824CAE94038EFDB0B1CC64AA141E1D149F4D0A955D44E6D37A87332404CF3E60A3A804F8B0C464CC912CFF55
bin\api-ms-win-core-shutdown-l1-1-0.dll
md5: 6CA8728A5A47A80D62D09280E28B8CE9 | sha1: 7A0F5634346819EF188340F449FE22343CE033FF | sha256: 942DD4940450EAA646DCEF4AA6BB7AA52E374B145BB8590A92D637346D1759EA | sha512: 5389129C07FF9BCDD49E0A538113296F983F17FDE15D682ADE53B2859DF555D6C1A06C9E9858DB3A2337FD91D1289C6A0C3B20B90EEF360412EF7ABF2DF252D8
bin\api-ms-win-core-shutdown-l1-1-1.dll
md5: 933001E29F440E0E16AA32F0CE19EFC4 | sha1: 0C49FCED6B7E0FCC5B8DE4A4FFF349C2492F3491 | sha256: A5A0A1B4CBD2EF5CDB794865A7CB95530B750EE29B9EEF42CC2869CAD8E40F66 | sha512: D90AC35D472F487A48F5CDB9E42DBD76DF369D9D38C47CE417D423B7CBC147D9F7D3ABDC5D874010FC92DA5B4ED5F7900132D539945AA09F915DD40F4ADCC9E2
bin\api-ms-win-core-string-l1-1-0.dll
md5: BE567944912433CAA3AE802D5BB77365 | sha1: 8950F86978F30B481CA8E0E9DDAF43E4C4487B91 | sha256: FA45D3C2B2A95B1B85A3BB759D528E312D639141697EE62638104F74F0DF4C33 | sha512: 5EFF2D0E9C85E0D2D6098D934560705ECA033BCB4B0E5820354CDBA0679CC40814DCD46DF7255953546B49B565C04F169FC0396D8DB8D99AE30037F52F955650
bin\api-ms-win-core-psapi-l1-1-0.dll
md5: CE1F93AC30A0031DD2D9C59F61110FD4 | sha1: BDC3D0CE8D64E135B863BFB8CD3AFAC1FE52DA1E | sha256: D48C4826EC708A0581CF2A4455B500EE3830EF74E151F0E5888F5CC5B916A411 | sha512: D372343A5195F0153CFE5C98B1F31D808D346CAF5396A35163D061C672553EB33582EA7282902FA3E6540CC203341EBD02C6C4CC3CA0C2B4DB47755D98EB01D7
bin\api-ms-win-core-psapi-obsolete-l1-1-0.dll
md5: BEBB0C9E3094430C1B0B50847665A1A8 | sha1: 73AC38E324F158BC1D02B602064E543AAA0A93A1 | sha256: 8021A61CBC8B093728642CCDD35F17177C3E9CC668CFBF705F8756623D9E53FF | sha512: EAC91247F8903C94629E8432CAD6ED62B4F1A5E46D55A514700223A3FD1D4028587BA4D9465773FD43AB3C670F39CD5E1AA0307F239B8D067EE2C584BC086A81
bin\api-ms-win-core-realtime-l1-1-0.dll
md5: 69366794E8358778D39B90AD44EE155B | sha1: 4941434450B43660B2E04491F336B8C5519377D1 | sha256: 6BA5834A2777BA8F8CC890753252F1FC7AD9ABA339AE47084483A1967C91C733 | sha512: B0574B45469D39D4C1BAC80A12D74BBADA122DF6DA27F80B237346BA8960EACD07ED2266DD386E5915DC7FB019BD353009C3A21C94FCDCB6E38CF4AA319C4032
bin\api-ms-win-core-threadpool-legacy-l1-1-0.dll
md5: C89E290AF1AF52792317546DB1438050 | sha1: 46CA40D0F03CFB1155CF66A4F0254E187DA47C57 | sha256: FA6147E95F938012D771AF9ED3A3CF4265DFC711FA697037343A6C6A7BE83F4F | sha512: BDBEBB152B11ADB5A3FD1D9069466A8C932536B92C6BD17F780DF05B7ED794F838EF32ED801BFA7A046C691AF4A0168E09E484E1A835DD2D3316D87F6F898C48
bin\api-ms-win-core-threadpool-private-l1-1-0.dll
md5: 77EBF471F6E79A56833E1608AE7894D7 | sha1: C3EB8E42D1C532E25A3E51B3C0653008504A2EAF | sha256: 73791E6F7C550C7E4540D3D44C93FA02FF6E76A98CE4FE7330A6239E4148EFF4 | sha512: 3D216EDFC7F31ED30344723F41781789DADE3AAE3AE7B25EFA70D68BCC2F5B2F180837658299026FC43A3B1DBB13BA70ED240E49BDB2BA571FCD08084D7F42DA
bin\api-ms-win-core-timezone-l1-1-0.dll
md5: D923F10F3F0DD2D34E719EF8A722A87B | sha1: 699934F93F6157A3D801CB47DD07D887835390CE | sha256: A115E8E112B8EFD94F67B23919F65B0240D0120D6C5705E71E2EF34DB76F784B | sha512: 9B3A12088EC75D561D68D3BED3FEFC9C8C62CED4C4088D6D3255F4A8D9CC8E61475336A1CA8F153437D0DE438F97BF16353E1081189ECB170FDBF3F6B3286FD7
bin\api-ms-win-core-url-l1-1-0.dll
md5: D4CD9C94B4BDBC285F1865C091355EE6 | sha1: CEA793E2C31F2C4FE43C959CB98F078E55A85515 | sha256: B11C05D22F7FBAEEC9E649AA03223FEE787D1509BDD73AB0F2DE6866C9249ECA | sha512: 38374BEA3FC561C03D08CF815219E29D670B066E461B549B1E8584F139C6444DFC6DAE8B7E359A81A115043EF9E16F4EA59B0D82386DA51A6BC0F77870EEA7C0
bin\api-ms-win-core-util-l1-1-0.dll
md5: E636D9EF4E97D6EE111F329731CE0E88 | sha1: 4B5F654D8B5582E4BFE16B8F21A4524432EACB4D | sha256: 9688321755E9DAEC4430217FF46F50E966FD1E775CF9765576F8CF1B2FDD7604 | sha512: 685179CB6C9F5F8D3D44B5754A285FF97D2313BD3470113A07F5965902C733B09F7F405F42F01F13E9BC6B0FE47965BA9B675F3547FDBE24D8795FA263C3A378
bin\api-ms-win-core-version-l1-1-0.dll
md5: 81F2EB37F40A8B4DCF492AA10D36EFA2 | sha1: 6EE07685E6CC4F4DCE8443101C4FFEE5CB724497 | sha256: 9B5484C001FCBF48A065E494EA76F5AD4F3772F492F0164E5C54258A9800DC76 | sha512: FFC39A9A487EF6F5DFCAEEC81C06E07AE11E879D42D0E19C7659442B146EA0B7A230FE672BEFB041993A31AEAE34AE1DB36A73556B4B55A7F840EC662536BF7B
bin\api-ms-win-core-winrt-error-l1-1-0.dll
md5: 9D531FBB978F04CCBB76593911EF30D4 | sha1: 58D78C0AC4F22DC98BF87ECCDA3C6FFBAE635147 | sha256: C1814FD61D8AE0BC84961912AA21FA2B8D4C1F1E41A77EBF97C2338E4AC87983 | sha512: 207FD1E515A2CBA9A681B0468C149A1B0B279815532AD1EDEBE0D4BAE2EDD571051452DAA8F8F2581FE7FAF4013648463D33CC558FACA0CC2899A556C409C17A
bin\api-ms-win-core-winrt-error-l1-1-1.dll
md5: 84B9E5B272EDC4E87207D1878130C015 | sha1: E0EEA67742503E865285A72C3A93890C30CAF970 | sha256: 6DEE952E4A977285F43E1FA9897E3F92A1D76263057F6602ED04AE9440E89FA0 | sha512: 0099B9A9F57B511AB14E0C7703E7CC9C4BF0CB2C36D93AEF54F86D89B371C90D626E5A729556CBF1B791ABEB157E8F6E2F9F8EBA7B7C98A18EB96F1F9A276E75
bin\API-MS-Win-Core-String-L2-1-0.dll
md5: DB9203CC588F26CFC12E3E78E23C4E22 | sha1: 3E1C9D160EFCBF81BA09EAF7941692EF513AEF39 | sha256: 2B458EF086E51634A43D9C6AF2E613CAFD850BB73864BFD89CC74276F79A972E | sha512: 010405CD401E802335419C63B0EB5129C5B1C7A2B4B6832C0DF573CACE144077C73275FC48C097F158FF329A2003BE2B4C5AF6C2AECCBA0B1875430B6333B9AE
bin\api-ms-win-core-string-obsolete-l1-1-0.dll
md5: 9D294E28CF1C851B2A70BFE10AC96918 | sha1: B4C479388E920BBA28DF0A2F8FDBCE11E6B12BCD | sha256: 77533A085E7959B6E837F9F5579583D815233D096537AAEC3E38CFDE16DEA470 | sha512: BD7FBC9E81D6F971CBDAA8B971B6433D1EAC3EF4F913F423CD1B1E7A13FA1043764301B4EB3B4D4BEF7E68869EF8E504596C9EE9AC4A0CB0AF036B29F035A385
bin\api-ms-win-core-string-obsolete-l1-1-1.dll
md5: 670580B0EE95108D509576C7BAE46065 | sha1: A91CB929842E18DE2B4C6C27D3269A5376A0588F | sha256: 4FF7060F9D58F0CB9AC5EFACE220D0D8837FEC1D932C7A9758ED664F0CC1277C | sha512: 5D6779D1CB832D9728BA1BA74E6F414F277D4B3AC8F73FC32499019DF9B3E282D236030E093EB0192AAD43611D1AD31E9BD465BB9F6374E7B7B543A035484F5A
bin\API-MS-Win-Core-StringAnsi-L1-1-0.dll
md5: 80F07B1F3B40EFFB67936DED424A0F10 | sha1: 48031B902A63748C43E9CDFD6D11C259E6991EE1 | sha256: 3F619DEE0E28C1DE16A43651F3144675974ABF0C131BF888D46A2C5944E1C952 | sha512: ADCB0359BC4071CEB2ECD055098AC0AE167731979A82C1362C448BE9EB6AC8609BE19CEDA70FDA60D2EEAEFE05ABCED1680873CB111A2D725FEC953A71842F15
bin\api-ms-win-core-stringloader-l1-1-0.dll
md5: D2F26CB4638542D9A8B918FD2B63F9BF | sha1: 442DA3D1580B851F813A42B6DE77019F68E95872 | sha256: B8BAA42F5F1015FFDE5E628A9AAFBA5545618DB06DF52EDAB67B112EB555D721 | sha512: A8CBFF0B3CCDD04488C8E44135453C144A5EFFF7A816717E0A564FB2D1DA70610A3FE5931B9242F776F84AD2744DBF763FE49291F998572FF59B0332FC536557
bin\api-ms-win-core-stringloader-l1-1-1.dll
md5: 685DF4ABDB6CF1C893D5338A552C528F | sha1: 209B346FD232549125F53EA8307ACA7C205E0EC6 | sha256: 3D36A0CB1B9457609D96720F903648F544FF62E56AD16C28FE26F4293F289BBE | sha512: 5629DA386639A325630E5FB137ABE5641D5A544A2DEBE0BA4E84646DB02CDCF82E73E4B781CAF987B2288468826BE6655C625E9B3B01353D8B0F53CA04AFFAF1
bin\api-ms-win-core-synch-l1-1-0.dll
md5: CC66C31A4594BAA4616BF87EF644C782 | sha1: 0C8DD819E6FB768BE8B010272BA89447AF3ED83C | sha256: C3261B00A533C018AC43CEA0B6E2FCBCA78E48187742A247EE1DD351F067D4A7 | sha512: 969DD5633EE7E134EFF2E2C30729B54F990C6B191FA2B310EC97E4485CBC8F9300A1A8483C642A87051416F2018C8C6BAB8BD89B10C0AD55E43463B3D04FAB27
bin\api-ms-win-core-synch-l1-2-0.dll
md5: 4F9E34E51C1F122A47905D433BF191D8 | sha1: E6450CFD98C0664851E0E17096AA658E0019D51E | sha256: C643A691D4E6AABD28D1061C6B5868F7552C90D260DF34D57E444DA36AD8C690 | sha512: B50313545087645DC9A33058B58394C5F959BFCD84851AE9DF85BCEB695D2B06FA68D62768D8836BEACAA818ACEF48155905BD35A998C953E03B62B4816DE43F
bin\api-ms-win-core-sysinfo-l1-1-0.dll
md5: 4C1731B5A9547A8056C64CB4137F2453 | sha1: 6772FEC7BAEB944687955FC99C2035DE8481E12C | sha256: 063475D31F81BF1F4FBB12399FB90D6554A9CFB03FA70A7E1E76B586C1A81543 | sha512: 758340DE40B6564CB8094A8D1054B3A5C46146C293D81E96E00B9432C08E38B09A412B4956CB44CDCAD4D114EE2819194FD5C965F5BABF77E4603434190149D8
bin\api-ms-win-core-sysinfo-l1-2-0.dll
md5: D25E5DAA26815923462B32E73BD6C857 | sha1: 0A77636353E341F8E0CD93369441471ECBEC3B09 | sha256: 90246C6ECE9D5BF8AD6E39F348E3707C6EE5EC502E4C6E9E2687EC9AA43A505B | sha512: 6A760A096D3F79F1013A16263F33A64426D033119CE843587FD7EA66CE92AF93B228C0D4CDD2C33CC6A9F9806447C5848B75457365FEEF7A6241A9E11DE67420
bin\api-ms-win-core-sysinfo-l1-2-1.dll
md5: 1A3A7C89A8468188018F5E83B67F12D5 | sha1: 91BE349014ACA347A5EBAFAE9B963068D86423CB | sha256: 25FC4801AA555A220DA952D28F3B8D18C3EFFF77B70E0E980A3BA98BAF109A80 | sha512: AD0790C922B4D6E0E60CE15C045786DF8A0B2FAC8DD6B28305860169249CD37C1C474648E93283D14B26967458992D9FDCE11DF2A952F46F6F3BD83DE48079A1
bin\api-ms-win-core-sysinfo-l1-2-2.dll
md5: AFC913F045F61C220085456167374DE7 | sha1: 5F8008A283194172067238D59B51B6CBA10B07AB | sha256: A72FB2845D0DA0A963829E4ED1B060BBAEADBD83DE06A3EF566607D2D840F007 | sha512: 5032A7CE392A2C12B055ADB47775D13B1513094DFE0430E7B37E72D2F088247A305936E0C4503901C2AAB0CC688ABDE15D57C30E521DA29FC8F4C7E6CE72A219
bin\api-ms-win-core-sysinfo-l1-2-3.dll
md5: B795882B38FA26905462CA3E90997C09 | sha1: 2DEDC149DDA146FCE1E355935665F96480D0BF1A | sha256: 1F5326DCD6659873F52C87A0EFBFFFE8A98EC5558FE8A35D82C8EF74DBA6C54C | sha512: 9D4E8C69E323C25C4C047DB7851F23B9B7CE63DB218424D49379FCD6C20FC204448B16C12158F82C8DA382ADD00FF040753D58CE243BA3A19706A1F7574EA79B
bin\api-ms-win-core-threadpool-l1-2-0.dll
md5: 3544F6F567F72B5DEFC5BAE53F26A238 | sha1: 1CD899BA31A2C4ED095B593C731A11B923076082 | sha256: 8F22C77A22C60D50682D65845A73DCA662341CDAA3B15171F21632DF4DC5E672 | sha512: 92BB88E18D223BF39F7C7B0891475BBE90BFF6C033770B63CD82147A400547293349C9D50D721C6399CB41A66A1F7290ADBA85856C44F325E2FF0EA7E50B41FB
bin\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
md5: 32C9F5406B37F02825754DAE85975407 | sha1: 8582A96D874E327530D7586021E3224D0B68ECED | sha256: CCF72998FA3476571F22E8B3D5D73F01D52F4361A75D7145B81D38145BBBAF88 | sha512: 67723F32099CEF6798E0BC27642EA18AF199240F42572C7EA6B4C8A620161997B301F7E499C7278CE3BC6F7EC31AD88141C8AC86A41289332304549087E41E36
bin\api-ms-win-core-winrt-string-l1-1-0.dll
md5: E2BF676DA6E8C041DD3D17DF3D4031E7 | sha1: 8C5E2B526752F35BAE699E37691101628A357F60 | sha256: C5C944A40070B7EB281F8A379123ED400B31C74C24FA64A3E236DBEC0431CEC8 | sha512: C9E613D69EDF1D53051C1B40F5F043AD7CFFB50A55C72AC45862489910508D23E12CAD7B0933B1B0C8934D02060FE9BC7478E3C97B89CB506F064E6E19AE78A6
bin\api-ms-win-core-wow64-l1-1-0.dll
md5: 9EC2C275F9988965EBB2A8379E637E4A | sha1: 5D03C0378A29068311E31DF0A76A20C2F573A2E9 | sha256: E9A4B88C6C706A09491239B1991F57ACECF4C7A9AB54F29333FCA0B85CE71377 | sha512: C540EF5A0FAA0AC09EDCF3D55F20E534CD0B739B64D65AC0AF4DE381BFD7518CF497FB9063CADEADA9D65450C19129ED1526BD4798F7906B712E6083B6BE31FD
bin\api-ms-win-core-xstate-l1-1-0.dll
md5: C0117C3E4766E4C30F8D72B1EBEF3BBA | sha1: 8A0993D7EF52B30141246FC3E52428193A9F40FF | sha256: 884E85E55E20D24EF88CA1B0C7BF2D5E11E71883ABA978749985CD71F0408559 | sha512: B3B4E8329DA3774D52CBA3BB5F510DFFF5F96AC0392D9075BDF5DCB84130C770F36E6545AC8B53FA5A9B3CD831C3270B666351BF3D128018C18D4C5DBBBE9CA7
bin\api-ms-win-core-xstate-l2-1-0.dll
md5: 88061995CE821DE34E9514E0F3115A03 | sha1: 0539EAAE1D9F3A39F0B1FDB8B735472BCEC4CD79 | sha256: C37170FE9DD43BBE261F9B3FA4D9E22B60BCFAD31EAE3DA52C1E39F4B30716A2 | sha512: CE264AD367964872B1847D6775E2D3AE04D5EFEE34758236216D6CD0BC1C5EB222D76ED9767DE86D62708CD4FCB6099FF79D3560DFD465353F26BB717CA0ABB2
bin\API-MS-Win-devices-config-L1-1-0.dll
md5: 226B426C5E91F66FE8D8BAE1B3D59E99 | sha1: DCDB20CDC42F67CAD4FB8153064CE4DC2E8F7F52 | sha256: A3378231AB798C7FE4FEC049D810B2C0F8ABAAE4B4C848DA0C9C3D1F26D9B7EA | sha512: 849311036D6A26F1E56FA16D0AC9EB642B21BCB7338E33AEDC6757DE19976A86B15D40FE3AE46FA8F5F0A75E98E8DAB405D5A2B37D0700A4BC9062815E3C7D51
bin\API-MS-Win-devices-config-L1-1-1.dll
md5: DDE117DD7A6764B4D77594152C70867B | sha1: CFAF479C3B599EC45E29E283D461ED11B470BAED | sha256: A6C41E34D4963EF25B0BDB06BAE7C964C1B71A7D55365B85BA3D7FC105A0EA62 | sha512: 07603387BB02C2E16A426A57B63CA331616A2F2F89F10FE1D756352594BB4BA0AEF71CD35CCE408BBAC5E4EE23DE968492C2408664D8E241A9F41E09CCB7D487
bin\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
md5: ACC019156FE5655E079F0745FF811104 | sha1: 836DE30D3539CAB76957A358404A3D992A1BC8CF | sha256: F69BECDD6769616A190C3E528883EF60C9F004715182F8A9E88A029EA0D2F1D1 | sha512: C10526515CA51786429CE56F44CEDB4AFBC46773A4F1EFE80588C9582D259C6B841E2B12EBCA14C3FE8DFC893DC7FA30DF2FE392AB35003F725C3019B4D32FF2
bin\api-ms-win-core-winrt-l1-1-0.dll
md5: 9A87733695D6CD7F6ED1A5A50DDC7741 | sha1: B6279755F3192F7CA26FE04EB0E4808406EDBA4C | sha256: 070E22C52F061CB5F68CB994B5D2003FE275C6D1B2973303A038A96C15926788 | sha512: 7B9BBB4247CB7E3260AB87865AD21632BE0A4416B7CDDEE06040D1AE770468440E5E05606125ADB8AF1EF59BBFC3904C1D7FEB357D3CE21C839B899B90E5D453
bin\api-ms-win-core-winrt-registration-l1-1-0.dll
md5: DCDB597C8134A2C216399922E0EC4F84 | sha1: D2C224BD44C209A0FA5461FFAD0C74F74E83D1A3 | sha256: 29F0B63C012C6B75FD1C7C228A8FFBE24801B83B656432A00562F927286C519A | sha512: C250A66A7D7738C25366790DFA94C29601835ED8268F68D959D9FD6E3C2B686EB9B88BBC4794BA7E80E3AF14B067D5C01F06F536B076BC93D6E047091F506392
bin\api-ms-win-core-winrt-robuffer-l1-1-0.dll
md5: A18CE358E55C3138F71202D570CAB0D2 | sha1: FF53BFFBB302FC691D7836DB3331BC2C89A8A5B9 | sha256: 8A7D23A193AA0F168B7194D06EFBE5C7A462DEAD302D0E9D36A82D2CAD89A67F | sha512: 4807F21F2EF1C2525294AB9D43B8BA8783A830385128839858270A41C0A2EF675AFB68D3F97147FACAA7A0E4F2F1A1D9F429FB81991AA4C84E21A691E26B6D38
bin\api-ms-win-service-core-l1-1-0.dll
md5: B6D7195E09E1EBE570B0FD5D5C8FC942 | sha1: D9447E18225C93C1D01096385F08CAFBF22399EA | sha256: 5732E430B7675A774051B968CE5AEB05C60D6B66367F3588B3C5B274F339D753 | sha512: 832BD70A618A64017D166CE47ECFB1CFF402ED92069F1E42708F8DDA5DD844665BA09B414629995E0D08D78B60BD9009B363576AB90C5659DC17430C74A6049D
bin\api-ms-win-service-core-l1-1-1.dll
md5: E5BF0647A3D4F6EB1C71725433022D2B | sha1: CB3FB9B3690FBB9A203264C5F4AAAED6874C021B | sha256: 433AA8A5043FF7AB3E84ED0AC8D6E3A5C086AEE2A79B6A142929BC2A2912A163 | sha512: 4C17E78EE143EDBA94BBEC52C211C62C312858C6574AE0A9E088F3A338FC7480F7980E74BAA2319A50921A531CFB055E2A28B0CB300248E20227EEDD21745913
bin\api-ms-win-service-management-l1-1-0.dll
md5: A3F2642DA77965EEC7464CE9E4F7271C | sha1: 522CF7A067DCF632FD7784FD88C451EC1254F29B | sha256: 70125C3BA3732DA2F909960FA3250BB1DDCA00007F005976F90C27EC458B268A | sha512: 609BA8C36E88ECCE701DBC924F494AD8EAA258126ECE2DBCBEC134FB2E2E5D55BDE1A54A54C35ECBE56898155603465C14E47BF47B56373E858E86A7AFEB24FE
bin\api-ms-win-service-management-l2-1-0.dll
md5: 8E05F757988236F2819CE28B6CACC6FF | sha1: E93BC3F5A34F8F04544F1A03FDFBCF6B24478B7D | sha256: 65280DC8045F25E6658A70433749FC0147A5227FBCF07AC9141D56F843320F3B | sha512: CB35E3A96A47B822ECE105AD138D0AA0A0E5A54BCCF21C6B53091DBDD4E5E5D0F3AD44EF87EFEDE59E4D234AF56961F79ADA91B040C59288D25787520B636507
bin\api-ms-win-service-private-l1-1-0.dll
md5: 53B4742DCF7B7430FB7112011DC4D533 | sha1: 9C29FA57D767AFC812A2F123C8035A8D775C6388 | sha256: B89996619642855F802B7FB65F0EF7704016B08C4F4BE42982AA35AEDC7A6545 | sha512: C6B53865FFF5A965712337000147DB44DDCF49BA938E507F8A5E185275ADC39126DA50F1491005D0F4FDCEB2DDB3BC7E451E803414D2AB59B62DFBD878E529FF
bin\api-ms-win-service-private-l1-1-1.dll
md5: DCAFEB96AAC6CA1FBFF966DCF73A841A | sha1: 0A544C0D2BD5D15DDB9DC69083FFD4346564029D | sha256: 505FC1AEFCBEBA9FD336288632CF7AB5DAC8D0EB8884B507AB172729A7F83386 | sha512: B74CBB8A72DFF268182D706E7435F611ABD6F09B5A0BEC44603665C6EFFD0257779AFAF10D55F9CE158D12AA6540C6C1A8053D1F271B407DD20D15E9E59F28CF
bin\api-ms-win-service-winsvc-l1-1-0.dll
md5: EA562B5931FAF464CF84BE8CEF5814E2 | sha1: ACE1A2DFF913F659DC6C21034DCDD4844D2E437B | sha256: 8BA90AC5606FAB2B2F9C2B3BAC7A2EE46C4F3A90A11C3C1ACE7E8620ED606E48 | sha512: 9CA5DA234F475C7FF95D858533F699B80D1B850A5545F5FCF86480DA4E5BA7ACA7FBF7D855A742A6AA637B6880BDCC598F61BDFAC49FCF2E119E89B1767521E6
bin\Argu.dll
md5: 6BADE829D4A2184F3D8D7D5FEADC5A44 | sha1: BEFE57C35F5DB302C29BDA73373DE497D6718CFD | sha256: EF2C8963895B4F91C3D6235A9031B41ADB79EC1DEF72E26D3993551CF4A497C2 | sha512: CFB115D6DD7B7572BBE351208175CAF20DEF543645CBD9B443E8A8EFD48DE2330A676DDB13ABDFB540AD50DBED07930C291A53BAE91D33974D2E26248CBCEBC4
bin\API-MS-Win-Eventing-Consumer-L1-1-0.dll
md5: 30AEA411950FD440202BB95481BF8421 | sha1: 66662B9F57952FA65E7A9F1661926ECEA14D3C30 | sha256: F29A1E79F152E733D620C5DC6E7081A60973AE1B06B15F812DB9F719852E2A6A | sha512: 79EC273A8F60354205BAAA690708670F51ADB6D392BB3B79DEE76E58EECAEAB0145AC016AEB638B14D7DD46B1546A8D20FF5250AAD0E17881C009E2D72882793
bin\API-MS-Win-Eventing-Controller-L1-1-0.dll
md5: C7C41A29A7B467C676E22A1080F22D63 | sha1: FC51899A53810ABED6E03DC000AC0AF3A4E01004 | sha256: B4B5249F3D4090DA4E4DAC9A4E9A889C86191CF854A6B71E5C15DB0CC6AEFD1D | sha512: 0B968FB99088235A1F5C0106F5754013DDDF3421E3AC6C92EB722106BF23CADAB12E5386B54FA3D1B7DC30E56AE59419DB43E206CFCF86409C15F4556DBAD618
bin\API-MS-Win-Eventing-Legacy-L1-1-0.dll
md5: BC7CDEC5E5319812D4A7A2AB62288C60 | sha1: 05652C7F3F6284CE878D7EC3CCCB8BFAE606E3B8 | sha256: D01D9855BE9E59C822DA7629DEB1E735093FFD1C40FC64E7D6014B56A709634C | sha512: 0CD9D584CBD310406B54FC164B590EBEE337CC2A87E3AAC5787D03A64342AC5A711A3A667302919796E19CF6151340E29151F5E3080748144CF06127FE555375
bin\API-MS-Win-Eventing-Provider-L1-1-0.dll
md5: 2B2879DD47CF69AA65869E6B0203E3C1 | sha1: 6FC6E9C0CBFAC593F1F66F0D44D511C0F2A15390 | sha256: FDEB36F29D0EC063167FFDB6ED437D4182175A3EF645B25EEDEDC2DF81E9467E | sha512: DEA2E57117E708AED07DD032377427436E1FA7614B564F63EDB182C249DE38D53FBF8BF09FACE9DC58664BC928202E7E123D86109FC6984DE772420A5C8B063E
bin\API-MS-Win-EventLog-Legacy-L1-1-0.dll
md5: 41B878ED757FF1B424158276D4CBE2F1 | sha1: 0AEE5AC39BB139ABAD17B9A3C9FC12FA9CA5BB53 | sha256: D6D173DAEFFEB18A3BB5292AFA84EDED3CBF8E34444025B6C0EE2207493F8057 | sha512: 127B5316092EDAB3296798247DC268D466DCB9B62548860BA00A2AF558C0C1B5271182F698ACDC1FA7ADCCFA4A28074B4078F91A389A953BC92D2DFD014B08AA
bin\api-ms-win-ro-typeresolution-l1-1-0.dll
md5: 271D3C6017E7DEC4B370C02F1AB33801 | sha1: 51246D1008B541D8CCB80DA27B31BD8A7922F98A | sha256: 0D4D517F695CF0A4640F6DF4998751DA3A8CBF3254D7D6CE764260BDE45A75DA | sha512: 161B792414FBD0F0F20BE65B4BBF23C0B043AE78BC8A9662E56E4A9364CED1DD10A3C7E7C7790EC6DF8D291BC2FA244B1BB300801872F169570109354EEFD561
bin\api-ms-win-security-base-l1-1-0.dll
md5: 7AC560707CB6FA6873A0928EC0B55A23 | sha1: 114353284B1D6F0C3F3E398DE4CC27B0B3369380 | sha256: 54AB2C9A4CC1D73AD11D4423B992C601AE052073487C5D4B307A7C8D20858EBC | sha512: 8FE0F1A3DA7E4B500B7ACAC8C8E82733188AEAF39975CDCCF5F57C644E06FF6B7AFD072926399F6384F2D41BDC43249E68D6D933BBB73C6391827A031E6C83E3
bin\api-ms-win-security-cpwl-l1-1-0.dll
md5: 63098A243E8853EC3889DC007C3B472C | sha1: 663590CCF60F27DACA5D5632A3E4B9BBB9744C7B | sha256: BFE4F3EE84B4D353E7D426BAD0804C8DADF2F7EB6C85643750FBB90D9FD7934D | sha512: AE043E8D8415EF6CD382D94EA60AB1E5F7D7AD05A85BDE26514F0C6E64F4941919C05543669F0474B8961AFC19649A69FB962CB7AA517EFD321EC4FA77CECDB5
bin\api-ms-win-security-cryptoapi-l1-1-0.dll
md5: AB814419F99A951A018FAFEE8DA656DF | sha1: 31ACB3B2E60FBD9562E64C4348A609051B287C86 | sha256: AE9D9409FC76CCCE5CE4ACD820BBE27BABEF538AB531BE99048D46C3E6CD5D7E | sha512: 53A54DB0696EBFD6F117BEF57A5D9C31D78211F4A292E829A90BA17405A80F21DA89E492CE6CECAD0D50D50FF33148C94A74B9EC1F058DB2BDD7985E9E9109D8
bin\api-ms-win-security-lsalookup-l2-1-0.dll
md5: 14ED1C3C798ADC9F5EDE4159FB4568AC | sha1: 0B3281F3476C3D882DBF580EECCEDD156340D70D | sha256: 8ED83B64B8D88960812A320300B122CCD7A85709556D24101361A3F89A2DAA5D | sha512: 3EF09822CFAC7466F9C8EB7C4698ED0302FDCF453B435CD143F26974C8347C0F47D5B064E8F292E5AB45B84C0EE1FEAF1C18498991B103EECB9EED28008AE78A
bin\api-ms-win-security-lsalookup-l2-1-1.dll
md5: E19DF4313E35EA9E62D87367B5D3814F | sha1: BFD63488FE69E30C71298CB4F6F9C2FDD41328EF | sha256: 2F277471AC9D3608D80FE76D048C9C967201D4A5D6FBE64FB2CC5C382450C9CC | sha512: F0DF94C3563B13EE5274D03E6AA65F4106873781B8A386DA5245EDC5CCCB4F7C8C6BA7D3CDF60B59932C0B443E558772771D7CA69225A6CF5D7E10E49DCAB6C4
bin\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
md5: 189B49C51A7636B7B3B286B08A4EA124 | sha1: A8769896512F6AF2B87802C28099BEC89BB62B29 | sha256: 2611B5B273546F2B8F84C41B3186A901FDEBCBDA04D0C6971E545BD64B01FF6F | sha512: F7B8E35D9D0BD457A44109C31F37A666820E74962248D30F82075089499CF8121EC6D7A68354EFA3B7239E2B9EDDE8FE72E72925B20FD6AFB64C4AC13FFC14D4
bin\api-ms-win-security-provider-l1-1-0.dll
md5: BFE4B653FD3EC80F5F48DB064F9135F7 | sha1: DA58DADC9DE0797782A541708602D651E74D9C29 | sha256: 067DFECA1073396A764CEFFD12AFA2FDC7E2F99FE4090B9EF8E0A680F2A1E145 | sha512: DA086B2A08F156CB98D97EE3904BE072748652372CD7CC86E0E931904FA38AE1CD3896065CFA96CCFF70730D0C0FD41896F7569448890A637207AFCFCEF524C2
bin\api-ms-win-security-sddl-l1-1-0.dll
md5: 5F5E04555A349D1736845185651C010C | sha1: 871444396432EA2486C10F809BE62F13C85A1B8C | sha256: 9269D69923192D17A9549B36BDADEBC2A2838DD03B4F2C10502A82BEB6A446FF | sha512: F24CCD7D7D15C3C278BE4FAEB8C2CAFFE0841BE7597FE9236CD01A9F12169FD389F3CC90B50FBB7A682A59C919995CD7620B8F082C143F4CD960E4F3A175B1CD
bin\clrjit.dll
md5: FBFFA025C70B893105F0D414E9AA40FB | sha1: A953B43898E3D32EDE9C644D0067C7247BF62C4B | sha256: E5441AC5FA3C6BECCAAC0EC62B809213B25715FF965BB4774F55BD4CE6546BA3 | sha512: 9CAE7B1D981480883BF5A4927564C7894FDC1791BA0181068E3C54D041DCBD1A7B392002B4A521C99E8F54666DD4FED7F568F633AC3FF3CD7C2CCE9336C676A1
bin\coreclr.dll
md5: A4A8B8AB4400DD3EA170D20110E62B95 | sha1: 985C792A0ED5ED79C800CE429A9A58FEF4E27FEC | sha256: 0F28E311389FCA5E6029680ACEF05FB4F7FA802CE0628F1E6DBB5FE9693041E1 | sha512: 36B1C489F9C50EFAEB673C2D59D85CF3F7692723EC4A2054C2400CFF061A74F4E1693A688D5C54EE93F4DFAFDD5E05B9569C974532D9F5BE0AD9F12B424E447B
bin\dbgshim.dll
md5: 4B5064475B4E5A4F7DF73D63E4D725F9 | sha1: 05C8D1229F4C6164671F52E452ED19A8648A4CB9 | sha256: A2D703356F26A4301A021A4A17D0B0F2B88929498BEC12DB27EBAACDD1F5F38A | sha512: 0511745A7CEDA94EF4A86797FD87A6BA3612BF332A01EBA2FA2521C539AA521CB68A569887BD77717C4EBFA2E446BCDBA89B506567B48F6750EAECE239E750B0
bin\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
md5: AF089DC4E23C625A2E2CC1610429DE48 | sha1: 56AD42668BE2157A6AC878EBF80B3F5A1C7F60C0 | sha256: 27AF97C5C67F7EF8DD71E58F1AF0F1243231B51F195BA222994C8FC956FFD330 | sha512: 8D24D615A430C26DE6795E8541AA32FE519E33370AD0D6F61318D91567B13D5745C7316A21119C868F0224C03DAFF52D01B8E2F6FF082B75FB9798F0CE2695D5
bin\ext-ms-win-ntuser-keyboard-l1-2-1.dll
md5: D6A21B650C7C8A6D9850E68F0A454453 | sha1: B379EEA578C0E0B177D1FBA858408BF2FD3F885C | sha256: 4B66C2DB60521208B177BB256C382D6EC14B3E5C13BFBEAD4BE381F5944EA809 | sha512: 80617C5A21A5A747E72DBCA7AC01A0C51C1BFB3C0BC4D9905CC61B0E8EE8077F84193ED02539CD2DCC0D77D2C131DA828CBD08305B7481DCCF10CA9D90A599CF
bin\Fake.Core.Context.dll
md5: 131AD58D2E6631F44D6C42A246FC6CEF | sha1: 80F466511571E4499EEFD8B7831EC7B1FBC8FAB7 | sha256: A26F1048C24C0B6646EE7F64DDAA3AD11FAFAA142039B14C799BF8D811DDA3EB | sha512: 3E4D24B0FD95D44820A79E067F72621907FF92315544F5B266BE06970A3BB16C85AD8ED45CD7A2F2DBABAD15E99FFCFB03361A6A4513193A78E3D4B10835F388
bin\Fake.Core.Context.xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>Fake.Core.Context</name></assembly>
<members>
<member name="T:Fake.Core.Context">
<summary>
 This module tracks the context of the build.
 This allows as to run some modules without any context and change behavior depending on the context
 (For example `Fake.Process` kills all processes when the Fake Context exists, but it should not when used as library)
</summary>
</member>
</members>
</doc>
bin\Fake.netcore.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v1.0/win7-x86",
    "signature": "4e3f4563cc8de4e95a874541cca9b4ce5142c2a2"
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v1.0": {},
    ".NETCoreApp,Version=v1.0/win7-x86": {
      "fake.netcore/1.0.0-alpha-10": {
        "dependencies": {
          "Argu": "3.7.0",
          "Chessie": "0.6.0",
          "FSharp.Compiler.Tools": "4.1.5",
          "FSharp.Core": "4.1.12",
          "FSharp.NET.Sdk": "1.0.2",
          "Fake.Core.Context": "5.0.0-alpha003",
          "Fake.Runtime": "5.0.0-alpha003",
          "Microsoft.CSharp": "4.3.0",
          "Microsoft.NETCore.App": "1.1.0",
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.3.0",
          "Mono.Cecil": "0.10.0-beta4",
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "10.0.2",
          "Paket.Core": "5.0.0-alpha002",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.FileVersionInfo": "4.3.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.Globalization.Extensions": "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.Linq.Queryable": "4.3.0",
          "System.Net.Http": "4.3.1",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Requests": "4.3.0",
          "System.Net.Sockets": "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.Metadata": "1.4.2",
          "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.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Primitives": "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.Security.Cryptography.ProtectedData": "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.Tasks.Extensions": "4.3.0",
          "System.Threading.Tasks.Parallel": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.ValueTuple": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XPath.XDocument": "4.3.0",
          "System.Xml.XPath.XmlDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        },
        "runtime": {
          "Fake.netcore.dll": {}
        }
      },
      "argu/3.7.0": {
        "dependencies": {
          "FSharp.Core": "4.1.12",
          "NETStandard.Library": "1.6.1",
          "System.Xml.XDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/Argu.dll": {}
        }
      },
      "chessie/0.6.0": {
        "dependencies": {
          "FSharp.Core": "4.1.12",
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.6/Chessie.dll": {}
        }
      },
      "fsharp.compiler.service/12.0.5": {
        "dependencies": {
          "FSharp.Core": "4.1.12",
          "Microsoft.DiaSymReader": "1.1.0",
          "Microsoft.DiaSymReader.PortablePdb": "1.2.0",
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "NETStandard.Library": "1.6.1",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "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.Emit": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Metadata": "1.4.2",
          "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.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Loader": "4.3.0",
          "System.Security.Cryptography.Algorithms": "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.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/FSharp.Compiler.Service.dll": {}
        }
      },
      "fsharp.compiler.tools/4.1.5": {},
      "fsharp.core/4.1.12": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Console": "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.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Linq.Queryable": "4.3.0",
          "System.Net.Requests": "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.Runtime.Numerics": "4.3.0",
          "System.Text.RegularExpressions": "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.Threading.ThreadPool": "4.3.0",
          "System.Threading.Timer": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/FSharp.Core.dll": {}
        },
        "native": {
          "runtimes/any/native/FSharp.Core.optdata": {},
          "runtimes/any/native/FSharp.Core.sigdata": {}
        }
      },
      "fsharp.net.sdk/1.0.2": {
        "dependencies": {
          "FSharp.Compiler.Tools": "4.1.5"
        }
      },
      "libuv/1.9.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0"
        },
        "native": {
          "runtimes/win7-x86/native/libuv.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.1",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.FileVersionInfo": "4.3.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.2",
          "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.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "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/1.1.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
        }
      },
      "microsoft.diasymreader.portablepdb/1.2.0": {
        "dependencies": {
          "Microsoft.DiaSymReader": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Metadata": "1.4.2",
          "System.Reflection.Primitives": "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.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.1/Microsoft.DiaSymReader.PortablePdb.dll": {}
        }
      },
      "microsoft.dotnet.platformabstractions/1.1.1": {
        "dependencies": {
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
        }
      },
      "microsoft.netcore.app/1.1.0": {
        "dependencies": {
          "Libuv": "1.9.1",
          "Microsoft.CSharp": "4.3.0",
          "Microsoft.CodeAnalysis.CSharp": "1.3.0",
          "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
          "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
          "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
          "Microsoft.VisualBasic": "10.0.1",
          "NETStandard.Library": "1.6.1",
          "System.Buffers": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Annotations": "4.1.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO.FileSystem.Watcher": "4.0.0",
          "System.IO.MemoryMappedFiles": "4.0.0",
          "System.IO.UnmanagedMemoryStream": "4.0.1",
          "System.Linq.Expressions": "4.3.0",
          "System.Linq.Parallel": "4.0.1",
          "System.Linq.Queryable": "4.3.0",
          "System.Net.NameResolution": "4.3.0",
          "System.Net.Requests": "4.3.0",
          "System.Net.Security": "4.0.0",
          "System.Net.WebHeaderCollection": "4.3.0",
          "System.Numerics.Vectors": "4.1.1",
          "System.Reflection.DispatchProxy": "4.0.1",
          "System.Reflection.Metadata": "1.4.2",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.Reader": "4.0.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.6.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"
        }
      },
      "microsoft.netcore.dotnethost/1.0.1": {
        "dependencies": {
          "runtime.win7-x86.Microsoft.NETCore.DotNetHost": "1.0.1"
        }
      },
      "microsoft.netcore.dotnethostpolicy/1.0.1": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "1.0.1",
          "runtime.win7-x86.Microsoft.NETCore.DotNetHostPolicy": "1.0.1"
        }
      },
      "microsoft.netcore.dotnethostresolver/1.0.1": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHost": "1.0.1",
          "runtime.win7-x86.Microsoft.NETCore.DotNetHostResolver": "1.0.1"
        }
      },
      "microsoft.netcore.jit/1.0.4": {
        "dependencies": {
          "runtime.win7-x86.Microsoft.NETCore.Jit": "1.0.4"
        }
      },
      "microsoft.netcore.platforms/1.1.0": {},
      "microsoft.netcore.runtime.coreclr/1.0.4": {
        "dependencies": {
          "Microsoft.NETCore.Jit": "1.0.4",
          "Microsoft.NETCore.Windows.ApiSets": "1.0.1",
          "runtime.win7-x86.Microsoft.NETCore.Runtime.CoreCLR": "1.0.4"
        }
      },
      "microsoft.netcore.targets/1.1.0": {},
      "microsoft.netcore.windows.apisets/1.0.1": {
        "dependencies": {
          "runtime.win7-x86.Microsoft.NETCore.Windows.ApiSets": "1.0.1"
        }
      },
      "microsoft.visualbasic/10.0.1": {
        "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": {}
        }
      },
      "mono.cecil/0.10.0-beta4": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Mono.Cecil.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.1",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "newtonsoft.json/10.0.2": {
        "dependencies": {
          "Microsoft.CSharp": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Newtonsoft.Json.dll": {}
        }
      },
      "paket.core/5.0.0-alpha002": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.NET.Sdk": "1.0.2",
          "Mono.Cecil": "0.10.0-beta4",
          "Newtonsoft.Json": "10.0.2",
          "System.Diagnostics.FileVersionInfo": "4.3.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.ProtectedData": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XPath.XDocument": "4.3.0",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.6/Paket.Core.dll": {}
        }
      },
      "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.0": {},
      "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.native.system/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "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-x86.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.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.system.security.cryptography/4.0.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.0": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {},
      "runtime.win.microsoft.win32.primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        },
        "runtime": {
          "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-x86.microsoft.netcore.dotnethost/1.0.1": {
        "native": {
          "runtimes/win7-x86/native/dotnet.exe": {}
        }
      },
      "runtime.win7-x86.microsoft.netcore.dotnethostpolicy/1.0.1": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
        },
        "native": {
          "runtimes/win7-x86/native/hostpolicy.dll": {}
        }
      },
      "runtime.win7-x86.microsoft.netcore.dotnethostresolver/1.0.1": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHost": "1.0.1"
        },
        "native": {
          "runtimes/win7-x86/native/hostfxr.dll": {}
        }
      },
      "runtime.win7-x86.microsoft.netcore.jit/1.0.4": {
        "native": {
          "runtimes/win7-x86/native/clrjit.dll": {}
        }
      },
      "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.4": {
        "runtime": {
          "runtimes/win7-x86/lib/netstandard1.0/System.Private.CoreLib.dll": {},
          "runtimes/win7-x86/lib/netstandard1.0/mscorlib.dll": {}
        },
        "native": {
          "runtimes/win7-x86/native/System.Private.CoreLib.ni.dll": {},
          "runtimes/win7-x86/native/clretwrc.dll": {},
          "runtimes/win7-x86/native/coreclr.dll": {},
          "runtimes/win7-x86/native/dbgshim.dll": {},
          "runtimes/win7-x86/native/mscordaccore.dll": {},
          "runtimes/win7-x86/native/mscordbi.dll": {},
          "runtimes/win7-x86/native/mscorlib.ni.dll": {},
          "runtimes/win7-x86/native/mscorrc.debug.dll": {},
          "runtimes/win7-x86/native/mscorrc.dll": {},
          "runtimes/win7-x86/native/sos.dll": {}
        }
      },
      "runtime.win7-x86.microsoft.netcore.windows.apisets/1.0.1": {
        "native": {
          "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll": {},
          "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll": {},
          "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll": {},
          "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll": {},
          "runtimes/win7-x86/native/ext-ms-win-ntuser-keyboard-l1-2-1.dll": {}
        }
      },
      "runtime.win7-x86.runtime.native.system.io.compression/4.3.0": {
        "native": {
          "runtimes/win7-x86/native/clrcompression.dll": {}
        }
      },
      "runtime.win7.system.private.uri/4.3.0": {
        "runtime": {
          "runtimes/win/lib/netstandard1.0/System.Private.Uri.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.1": {
        "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.1.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.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
        }
      },
      "system.diagnostics.fileversioninfo/4.3.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.2",
          "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.1",
          "System.IO.FileSystem": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Metadata": "1.4.2",
          "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.tracesource/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.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
        }
      },
      "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.0.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.0.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.0.1",
          "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.0.1": {
        "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.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.0.1": {
        "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.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        },
        "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.1",
          "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.0.0": {
        "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.0.1",
          "runtime.native.System.Security.Cryptography": "4.0.0"
        },
        "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.1.1": {
        "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.0.1": {
        "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.2": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "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.0.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.runtime.serialization.formatters/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
        }
      },
      "system.runtime.serialization.primitives/4.3.0": {
        "dependencies": {
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Runtime.Serialization.Primitives.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.0"
        },
        "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.0"
        },
        "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.0"
        },
        "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.protecteddata/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.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.0"
        },
        "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.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.Threading": "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.6.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.0": {
        "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.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.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.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.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.3.0": {
        "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.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
        }
      },
      "system.xml.xpath.xmldocument/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.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
        }
      },
      "fake.core.context/5.0.0-alpha003": {
        "dependencies": {
          "FSharp.Compiler.Tools": "4.1.5",
          "FSharp.Core": "4.1.12",
          "FSharp.NET.Sdk": "1.0.2",
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.AppContext": "4.3.0",
          "System.Buffers": "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.DiagnosticSource": "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.Globalization.Extensions": "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.Linq.Queryable": "4.3.0",
          "System.Net.Http": "4.3.1",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Requests": "4.3.0",
          "System.Net.Sockets": "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.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.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.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.Tasks.Extensions": "4.3.0",
          "System.Threading.Tasks.Parallel": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.ValueTuple": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        },
        "runtime": {
          "Fake.Core.Context.dll": {}
        }
      },
      "fake.runtime/5.0.0-alpha003": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Compiler.Service": "12.0.5",
          "FSharp.Compiler.Tools": "4.1.5",
          "FSharp.Core": "4.1.12",
          "FSharp.NET.Sdk": "1.0.2",
          "Fake.Core.Context": "5.0.0-alpha003",
          "Microsoft.CSharp": "4.3.0",
          "Microsoft.DiaSymReader": "1.1.0",
          "Microsoft.DiaSymReader.PortablePdb": "1.2.0",
          "Microsoft.DotNet.PlatformAbstractions": "1.1.1",
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.3.0",
          "Mono.Cecil": "0.10.0-beta4",
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "10.0.2",
          "Paket.Core": "5.0.0-alpha002",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Collections.Immutable": "1.3.1",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.FileVersionInfo": "4.3.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.Globalization.Extensions": "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.Linq.Queryable": "4.3.0",
          "System.Net.Http": "4.3.1",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Requests": "4.3.0",
          "System.Net.Sockets": "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.Metadata": "1.4.2",
          "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.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Loader": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Primitives": "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.Security.Cryptography.ProtectedData": "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.Tasks.Extensions": "4.3.0",
          "System.Threading.Tasks.Parallel": "4.3.0",
          "System.Threading.Thread": "4.3.0",
          "System.Threading.ThreadPool": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.ValueTuple": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XPath.XDocument": "4.3.0",
          "System.Xml.XPath.XmlDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        },
        "runtime": {
          "Fake.Runtime.dll": {}
        }
      }
    }
  },
  "libraries": {
    "fake.netcore/1.0.0-alpha-10": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "argu/3.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RseqWYBH65+hewOX9hyNv6xfHFji6/uv962y2OI7SIRwGac96JwDdvRMeEvvJ5faSL3PEL7lXR5mZCfi112qrA==",
      "path": "argu/3.7.0",
      "hashPath": "argu.3.7.0.nupkg.sha512"
    },
    "chessie/0.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EzfvxiU+b9WmW2C1Q4Ns2AX2IAq6I6n8P+Lv4gzKmeDoj8FD+goHLMqwoaE08E91nQwlEzxd9iwkdwf5E5YGCQ==",
      "path": "chessie/0.6.0",
      "hashPath": "chessie.0.6.0.nupkg.sha512"
    },
    "fsharp.compiler.service/12.0.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9aZSvmKdDngiGc+s+uOj9mbtbS0ZuUyRIx4Sf33A9coKsYwj+8ikpd/8yptttSwz6YWqHzNHjEOKbfkB/1vo1Q==",
      "path": "fsharp.compiler.service/12.0.5",
      "hashPath": "fsharp.compiler.service.12.0.5.nupkg.sha512"
    },
    "fsharp.compiler.tools/4.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wMCkBOYtubRw+wxm3730a+Rq4KZTyrZMyIbuAv8XUR8jhF45VWjC1k01DM4TTgM1s8gCchGnAjWo2+hSySwZvg==",
      "path": "fsharp.compiler.tools/4.1.5",
      "hashPath": "fsharp.compiler.tools.4.1.5.nupkg.sha512"
    },
    "fsharp.core/4.1.12": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gmFSgPqZ81bRkTWzsKzto/KH+VAjxSBlYNRd6trvNU6xjCtQpNg9eQFBNUEA8x2KQqZf0LrnFyKEaXGdUWlSRQ==",
      "path": "fsharp.core/4.1.12",
      "hashPath": "fsharp.core.4.1.12.nupkg.sha512"
    },
    "fsharp.net.sdk/1.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LpAn0GSb8evbnq0W8shiygU/fwyPKCXf8fgCNsrmrahDgIrvKy10ugKt+tSlFvk80QUJbXXUrpFsy7nB59Cy+w==",
      "path": "fsharp.net.sdk/1.0.2",
      "hashPath": "fsharp.net.sdk.1.0.2.nupkg.sha512"
    },
    "libuv/1.9.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
      "path": "libuv/1.9.1",
      "hashPath": "libuv.1.9.1.nupkg.sha512"
    },
    "microsoft.codeanalysis.analyzers/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sYnn/aJWZjy7ZqtP6yWsMYCdIlJl4PfVzxtf8jvd5o6K8cDNjkWKiKDsElEIYwOqVxQacIufeRRkkamkZH0UGQ==",
      "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-NMw9TB4FusxoEpsNnWv5khaS2NutgUZqoe28cNYkuh5Q8cFNaESld1Na1k/8BaS3Kq3c+9N2/G31WVOlsyN+lg==",
      "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-87nVAZuPmOFqCURtv8sBGT9NTofNixXFCgElHPnXKMpD0xaus0NOyfokpEOyteOxIK+l9o43Ssm5REvZqLXswQ==",
      "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-KOoUH/TEibNrMR+WsDoTjLkpV4H6lzuWXLFEoJD9owCYO/vfdSdDIJZfASFN5/VrSpP8sh+PRJvUaCu6Esr6dQ==",
      "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-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
      "path": "microsoft.csharp/4.3.0",
      "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
    },
    "microsoft.diasymreader/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ev3oOx4G1zEGpvGmLBZbeMcIY5ISCFLcxfQqnbwtALtyk0sTHGaMLCyQbspz6WWkQygidtZXVgbFJLAA5WH+Lw==",
      "path": "microsoft.diasymreader/1.1.0",
      "hashPath": "microsoft.diasymreader.1.1.0.nupkg.sha512"
    },
    "microsoft.diasymreader.portablepdb/1.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kwVIDOUBnJrYtQSInYmNWuwGpHVqUXjeYVc23hsqfy6HVQhObVDXf+JOgyz0FP/wPAgmxKQM74BrkYW1YnTzzQ==",
      "path": "microsoft.diasymreader.portablepdb/1.2.0",
      "hashPath": "microsoft.diasymreader.portablepdb.1.2.0.nupkg.sha512"
    },
    "microsoft.dotnet.platformabstractions/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XpR2cyvCoyL88WnJWBPCoUBmdpto/ZDMiVrNXjDruLu4Y2yr5wrPUGyjP4MfqjnBKcNMdRB5e2xO0p4fNC9PQw==",
      "path": "microsoft.dotnet.platformabstractions/1.1.1",
      "hashPath": "microsoft.dotnet.platformabstractions.1.1.1.nupkg.sha512"
    },
    "microsoft.netcore.app/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
      "path": "microsoft.netcore.app/1.1.0",
      "hashPath": "microsoft.netcore.app.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.dotnethost/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wyfeCji2hyPMEu9A1Qsarc4ArXhQgO79MMi8fOzVoFWs4P6zMF/K8XcASFxEmB7KdC/muUbfpw8uYjBOQexX7g==",
      "path": "microsoft.netcore.dotnethost/1.0.1",
      "hashPath": "microsoft.netcore.dotnethost.1.0.1.nupkg.sha512"
    },
    "microsoft.netcore.dotnethostpolicy/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Cvfz4hpzBSk9CpyJp1q886qN14ODpllLHUKAGox7I3RGONu3cdC/PqmHcOrjF/Fe6UDsnxht7j5cemm3Bzzung==",
      "path": "microsoft.netcore.dotnethostpolicy/1.0.1",
      "hashPath": "microsoft.netcore.dotnethostpolicy.1.0.1.nupkg.sha512"
    },
    "microsoft.netcore.dotnethostresolver/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KUgY7uR3JqP/kDbT5Y414BImnQNGmewaAbsfCF4338HUiQupKBp1xJ05sQHYpid7NZXS+x98qWOJGNm8yQ54hg==",
      "path": "microsoft.netcore.dotnethostresolver/1.0.1",
      "hashPath": "microsoft.netcore.dotnethostresolver.1.0.1.nupkg.sha512"
    },
    "microsoft.netcore.jit/1.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6WvuLgZ3v8BHwmI3AFcMv4GlsAmCqPL/nubNzX/N1MXs3fORbY7aliFp5RPZE14Nkk7mqdQux2I81G9IB9nXZw==",
      "path": "microsoft.netcore.jit/1.0.4",
      "hashPath": "microsoft.netcore.jit.1.0.4.nupkg.sha512"
    },
    "microsoft.netcore.platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.runtime.coreclr/1.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3CDsUsAFcG/xQmugn5tjECoXShjhj7o4TNl+0i/sCCKzyobbaeRjvwzthIXYFGDNKGiV5xLrHDK3bpfpbzDuEA==",
      "path": "microsoft.netcore.runtime.coreclr/1.0.4",
      "hashPath": "microsoft.netcore.runtime.coreclr.1.0.4.nupkg.sha512"
    },
    "microsoft.netcore.targets/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
      "path": "microsoft.netcore.targets/1.1.0",
      "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
    },
    "microsoft.netcore.windows.apisets/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
      "path": "microsoft.netcore.windows.apisets/1.0.1",
      "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512"
    },
    "microsoft.visualbasic/10.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XrtJzATrogJZTURuYu2kcfpvO/7b4/HjP/973ImuZ4XAs4UFJYI/nh1L909LMHv3qCuCyrnJk0TInr43DPVRPw==",
      "path": "microsoft.visualbasic/10.0.1",
      "hashPath": "microsoft.visualbasic.10.0.1.nupkg.sha512"
    },
    "microsoft.win32.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "microsoft.win32.registry/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
      "path": "microsoft.win32.registry/4.3.0",
      "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512"
    },
    "mono.cecil/0.10.0-beta4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uWa0xo2tsSGTwz28zZ2olDnyOS8U72+6/zYdsnhdpiOiAN6c5YtdoPCZXZjAjViSoYLqnzlmlAa1d+PJF0Y3sA==",
      "path": "mono.cecil/0.10.0-beta4",
      "hashPath": "mono.cecil.0.10.0-beta4.nupkg.sha512"
    },
    "netstandard.library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "newtonsoft.json/10.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iwElSU2IXmwGvytJsezyDML2ZWDkG2JzTYzlU/BNlmzMdlmRvbnwITsGGY74gwVEpDli1UdOLkMT7/3jxWvXzA==",
      "path": "newtonsoft.json/10.0.2",
      "hashPath": "newtonsoft.json.10.0.2.nupkg.sha512"
    },
    "paket.core/5.0.0-alpha002": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Y6BMxfr2+X9sX7ZcbnS0koZU2pxS0qn0uHx4RM3Ayy2EGkc2wP064aj+RsElwvnyI111ZvnFKzEiC6d8WxZBVw==",
      "path": "paket.core/5.0.0-alpha002",
      "hashPath": "paket.core.5.0.0-alpha002.nupkg.sha512"
    },
    "runtime.any.system.collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
      "path": "runtime.any.system.collections/4.3.0",
      "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.diagnostics.tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
      "path": "runtime.any.system.diagnostics.tools/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.diagnostics.tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
      "path": "runtime.any.system.diagnostics.tracing/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
      "path": "runtime.any.system.globalization/4.3.0",
      "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.globalization.calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
      "path": "runtime.any.system.globalization.calendars/4.3.0",
      "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.io/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
      "path": "runtime.any.system.io/4.3.0",
      "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
      "path": "runtime.any.system.reflection/4.3.0",
      "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.reflection.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
      "path": "runtime.any.system.reflection.extensions/4.3.0",
      "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.reflection.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
      "path": "runtime.any.system.reflection.primitives/4.3.0",
      "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.resources.resourcemanager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
      "path": "runtime.any.system.resources.resourcemanager/4.3.0",
      "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
      "path": "runtime.any.system.runtime/4.3.0",
      "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.runtime.handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
      "path": "runtime.any.system.runtime.handles/4.3.0",
      "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.runtime.interopservices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
      "path": "runtime.any.system.runtime.interopservices/4.3.0",
      "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.text.encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
      "path": "runtime.any.system.text.encoding/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.text.encoding.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
      "path": "runtime.any.system.text.encoding.extensions/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.threading.tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
      "path": "runtime.any.system.threading.tasks/4.3.0",
      "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "runtime.any.system.threading.timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
      "path": "runtime.any.system.threading.timer/4.3.0",
      "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.native.system/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.io.compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.net.http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.net.security/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qSvfBuhb2OESNzZK4c70S1grZRIAZJ1sDZOd6FAsHsvDfG3BxxCOeT/hzcu1OS5aV7HEl0g348qRzu/cSTWL5A==",
      "path": "runtime.native.system.net.security/4.0.1",
      "hashPath": "runtime.native.system.net.security.4.0.1.nupkg.sha512"
    },
    "runtime.native.system.security.cryptography/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AeTHdC4RmQaM6/pLLxYGNzD9FPvyn5k1tVcOastHPNn673vOdwbP7tG+SIGjiTTJ1j9PtdI0Phrn1IYmroZAHQ==",
      "path": "runtime.native.system.security.cryptography/4.0.0",
      "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
    },
    "runtime.native.system.security.cryptography.apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "runtime.win.microsoft.win32.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
      "path": "runtime.win.microsoft.win32.primitives/4.3.0",
      "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==",
      "path": "runtime.win.system.console/4.3.0",
      "hashPath": "runtime.win.system.console.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.diagnostics.debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
      "path": "runtime.win.system.diagnostics.debug/4.3.0",
      "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.io.filesystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
      "path": "runtime.win.system.io.filesystem/4.3.0",
      "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.net.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
      "path": "runtime.win.system.net.primitives/4.3.0",
      "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.net.sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
      "path": "runtime.win.system.net.sockets/4.3.0",
      "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
    },
    "runtime.win.system.runtime.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
      "path": "runtime.win.system.runtime.extensions/4.3.0",
      "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.dotnethost/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3+kwgwIlQaTygjP8MV1AYvxJSRGQH40OtDzt40p9GSWGDnsanS7zOfXtMhJcS5Wp5u7ZwCAd2wjvKRkWGdadjA==",
      "path": "runtime.win7-x86.microsoft.netcore.dotnethost/1.0.1",
      "hashPath": "runtime.win7-x86.microsoft.netcore.dotnethost.1.0.1.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.dotnethostpolicy/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GZntnNRoJugcOqPFC+WEmkT5q9HTBvw5oeMPSzL0x4Gw4BiB274RgB6GmRR4PcKTVc5152lJBQ68seiruVdRMg==",
      "path": "runtime.win7-x86.microsoft.netcore.dotnethostpolicy/1.0.1",
      "hashPath": "runtime.win7-x86.microsoft.netcore.dotnethostpolicy.1.0.1.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.dotnethostresolver/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hZ+7TYB1UBWXE3XreX9ZR3/mKkmy5rMcwvKObYaZmYgKX82nFEpgLzJnio0yTEJAwGkmc+JFpwwQaHMDsyTsmQ==",
      "path": "runtime.win7-x86.microsoft.netcore.dotnethostresolver/1.0.1",
      "hashPath": "runtime.win7-x86.microsoft.netcore.dotnethostresolver.1.0.1.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.jit/1.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vvSkSBR+eph2yiDdItyRBl0kQJrnBbqWE7eEisjPMB58P0jNFppPLKWylsOSyjYFcpji0uPNIWKz+lxXk/0iiA==",
      "path": "runtime.win7-x86.microsoft.netcore.jit/1.0.4",
      "hashPath": "runtime.win7-x86.microsoft.netcore.jit.1.0.4.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-p6GyBWYa+i/DhTulWizcVRjnZcPtR372kZdcpd+USN/zSwcKcmlq8V+HhC0RJDKb3Hsa2Q8sllDa1LqlhxVmZg==",
      "path": "runtime.win7-x86.microsoft.netcore.runtime.coreclr/1.0.4",
      "hashPath": "runtime.win7-x86.microsoft.netcore.runtime.coreclr.1.0.4.nupkg.sha512"
    },
    "runtime.win7-x86.microsoft.netcore.windows.apisets/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bPLbJzMJpczV+EMU4CK2Hb+DJrX3C93dXPMe+JsArqFTnJ9ou+xAa3lHt2qbWvzVVR1OMpgQUpB7aug6PcRPbA==",
      "path": "runtime.win7-x86.microsoft.netcore.windows.apisets/1.0.1",
      "hashPath": "runtime.win7-x86.microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512"
    },
    "runtime.win7-x86.runtime.native.system.io.compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-99pM1ZhX7dPNnr/dOxuAxnVl/2XNWRh1WAUfesV3ZKwbR6mnEzpfbz2GX69zrpGvKbEytsjMKCD+auvvH6f7kA==",
      "path": "runtime.win7-x86.runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.win7-x86.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"
    },
    "system.appcontext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "system.buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "system.collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "system.collections.concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "system.collections.immutable/1.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==",
      "path": "system.collections.immutable/1.3.1",
      "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
    },
    "system.collections.nongeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "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-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "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-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "system.componentmodel.annotations/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2Yn7RGNfMFVaNUgA2zo0vjFBI99J0mSLCR1AU+O1o7v5OLEbHw8DcqKPPdzkhTHiGH24iuXJ70thBFpn03jXOg==",
      "path": "system.componentmodel.annotations/4.1.0",
      "hashPath": "system.componentmodel.annotations.4.1.0.nupkg.sha512"
    },
    "system.componentmodel.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
      "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-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
      "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-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
      "path": "system.console/4.3.0",
      "hashPath": "system.console.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.diagnosticsource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
      "path": "system.diagnostics.diagnosticsource/4.3.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.fileversioninfo/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
      "path": "system.diagnostics.fileversioninfo/4.3.0",
      "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.process/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
      "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-b//svq6NklaDalmecbDvbdRWcz1+/JV78u+Gvqm74Ud+gXG7jbcysyVlQ+Gh9QAmGV1ZX2b267snE/ImJc27hg==",
      "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-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.tracesource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
      "path": "system.diagnostics.tracesource/4.3.0",
      "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
    },
    "system.diagnostics.tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "system.dynamic.runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
      "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-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "system.globalization.calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
      "path": "system.globalization.calendars/4.3.0",
      "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "system.globalization.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "system.io/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "system.io.compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "system.io.compression.zipfile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "system.io.filesystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "system.io.filesystem.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "system.io.filesystem.watcher/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m8AKKNU4jaDiOGJY3UK4dm+WSARYejPrCWZ+Siu+YF8HeAxMQ0DY5KXWgujJi1NlTgv0qMbAL6o6Vz9OxuqXXw==",
      "path": "system.io.filesystem.watcher/4.0.0",
      "hashPath": "system.io.filesystem.watcher.4.0.0.nupkg.sha512"
    },
    "system.io.memorymappedfiles/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fQ/uyws/DFT1QE7e4EAHzruiSGMXCFexS7TlB3ifIjCBD3iavoK2NeqiKfrmdZPdtKJBCvj10wxrzkCcX5+S6g==",
      "path": "system.io.memorymappedfiles/4.0.0",
      "hashPath": "system.io.memorymappedfiles.4.0.0.nupkg.sha512"
    },
    "system.io.unmanagedmemorystream/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-V1+zl+oHfe4jnnM8H3DQAsNQHAsunDZEEgNHZBK04HPP/GBoA8+D56yO2LWLtp2zWVDhRItINLB2h0vEWZMdQA==",
      "path": "system.io.unmanagedmemorystream/4.0.1",
      "hashPath": "system.io.unmanagedmemorystream.4.0.1.nupkg.sha512"
    },
    "system.linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "system.linq.expressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "system.linq.parallel/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lGID/X/GxsbmuFFs2fz3zHAt1+t37vkIIevk/+bDOfKTA65huK1EMvmG3lqTvH2Zp4oXQgxBTXX9dCJ2pgoXPg==",
      "path": "system.linq.parallel/4.0.1",
      "hashPath": "system.linq.parallel.4.0.1.nupkg.sha512"
    },
    "system.linq.queryable/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
      "path": "system.linq.queryable/4.3.0",
      "hashPath": "system.linq.queryable.4.3.0.nupkg.sha512"
    },
    "system.net.http/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UrTyRczM3ZvNk6oetBuwlu67MFKKRva+r7bw4JDVZ6Y2IukyZ24td5ppsieu/4yZlogVAIuZul9GIQ3hoiz0yA==",
      "path": "system.net.http/4.3.1",
      "hashPath": "system.net.http.4.3.1.nupkg.sha512"
    },
    "system.net.nameresolution/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
      "path": "system.net.nameresolution/4.3.0",
      "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
    },
    "system.net.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "system.net.requests/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
      "path": "system.net.requests/4.3.0",
      "hashPath": "system.net.requests.4.3.0.nupkg.sha512"
    },
    "system.net.security/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qMxEQtXg0dO5++lWl2LjgCCUMej1FogNf94TK0jLhKxbEMue4emp8Y0vMFSKooSAFUutZcJHY69dvJD5Qz2KA==",
      "path": "system.net.security/4.0.0",
      "hashPath": "system.net.security.4.0.0.nupkg.sha512"
    },
    "system.net.sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "system.net.webheadercollection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
      "path": "system.net.webheadercollection/4.3.0",
      "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512"
    },
    "system.numerics.vectors/4.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XFdQiMcXzPbpCPk54w+6BLQtP/LhZq093vTQiyxV1+QBW2EcahnoUN1uCawDS2Teu+V0WcKQiUpyMmMvGoJGXA==",
      "path": "system.numerics.vectors/4.1.1",
      "hashPath": "system.numerics.vectors.4.1.1.nupkg.sha512"
    },
    "system.objectmodel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
      "path": "system.objectmodel/4.3.0",
      "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
    },
    "system.private.uri/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
      "path": "system.private.uri/4.3.0",
      "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
    },
    "system.reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "system.reflection.dispatchproxy/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RPGbI9c5xSn0dfmeEQdTHZVE5jJ7XnpBbQm6NA+i+sjKzhkYBK1FJUKQbgCD1ewCxeUIJ4ZAiFunyL6DBYuXDQ==",
      "path": "system.reflection.dispatchproxy/4.0.1",
      "hashPath": "system.reflection.dispatchproxy.4.0.1.nupkg.sha512"
    },
    "system.reflection.emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "system.reflection.emit.ilgeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "system.reflection.emit.lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
    },
    "system.reflection.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "system.reflection.metadata/1.4.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==",
      "path": "system.reflection.metadata/1.4.2",
      "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512"
    },
    "system.reflection.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "system.reflection.typeextensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "system.resources.reader/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vEkgC4jTGg7DNFoLp4oTz2M32OpWMeqGBjGRYm7j2BAyV8bLZLr2/05i2x7IumOBO9cM3QX/WQj9n+XQZFDuqQ==",
      "path": "system.resources.reader/4.0.0",
      "hashPath": "system.resources.reader.4.0.0.nupkg.sha512"
    },
    "system.resources.resourcemanager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "system.runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "system.runtime.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "system.runtime.handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "system.runtime.interopservices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "system.runtime.interopservices.runtimeinformation/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "system.runtime.loader/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
      "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-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "system.runtime.serialization.formatters/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
      "path": "system.runtime.serialization.formatters/4.3.0",
      "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
    },
    "system.runtime.serialization.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
      "path": "system.runtime.serialization.primitives/4.3.0",
      "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
    },
    "system.security.claims/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
      "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-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.cng/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
      "path": "system.security.cryptography.cng/4.3.0",
      "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.openssl/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
      "path": "system.security.cryptography.openssl/4.3.0",
      "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.protecteddata/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qBUHUk7IqrPHY96THHTa1akCxw0GsNFpsk3XFHbi0A0tMUDBpQprtY1Tbl6yaS1x4c96ilcXU8PocYtmSmkaQQ==",
      "path": "system.security.cryptography.protecteddata/4.3.0",
      "hashPath": "system.security.cryptography.protecteddata.4.3.0.nupkg.sha512"
    },
    "system.security.cryptography.x509certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "system.security.principal/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
      "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-HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
      "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-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "system.text.encoding.codepages/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3nanTSWcT0U+YvT1nfbJe7P/aWZGZRhv5fihduz617HLLDu3xRqEwn9PO7rwp0/T2Pfj1X32kBJTeSl2cOa+6w==",
      "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-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "system.text.regularexpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "system.threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "system.threading.overlapped/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0TdlUPxoSOsOn16MiOiqf12S38Rxa6KsX/SPbRhPvxKUY0ofX9a57GAojS8mxqy5hXC+15ZflJC0b8RcOvaCXw==",
      "path": "system.threading.overlapped/4.3.0",
      "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
    },
    "system.threading.tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "system.threading.tasks.dataflow/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rTk8KJ6plwl7Mb+8bqKXZHSg/hQActKLacKlZ3uOiAdStEGzfZeVK04Y2XiimgT1VQE9IiruzYGr9u8IQaTcqQ==",
      "path": "system.threading.tasks.dataflow/4.6.0",
      "hashPath": "system.threading.tasks.dataflow.4.6.0.nupkg.sha512"
    },
    "system.threading.tasks.extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "system.threading.tasks.parallel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
      "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-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
      "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-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
      "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-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "system.valuetuple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
      "path": "system.valuetuple/4.3.0",
      "hashPath": "system.valuetuple.4.3.0.nupkg.sha512"
    },
    "system.xml.readerwriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "system.xml.xdocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "system.xml.xmldocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "system.xml.xpath/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
      "path": "system.xml.xpath/4.3.0",
      "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
    },
    "system.xml.xpath.xdocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
      "path": "system.xml.xpath.xdocument/4.3.0",
      "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
    },
    "system.xml.xpath.xmldocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
      "path": "system.xml.xpath.xmldocument/4.3.0",
      "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
    },
    "fake.core.context/5.0.0-alpha003": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "fake.runtime/5.0.0-alpha003": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
bin\Microsoft.Win32.Primitives.dll
md5: B442F0EF6208D29834632762A92DEFCA | sha1: 74A6D5F0760875BE6B763CAA0C1234FA131A39C3 | sha256: FA6E3CD0F94506CA32A41E3BA7A7A2DADF8445BD091123DCD69E4AEAFB4637C6 | sha512: 365A1F0181D963BF120676791728EC0C9C333629CBE3D84DDCE2C830B4DB44A1CFE98C5C428B5D121A4E19BB8C66CBD0F9A1133C831C9C11B496C86FA93B741E
bin\Microsoft.Win32.Registry.dll
md5: 48C3BF141DCDB679CF35AE2C240A86D2 | sha1: 80A1832619E771EDCCC2EAB3FA13D3F657D0EAB4 | sha256: AEC1B56DD9088473A5511E13B2CA88101C88D90BCA5743AA0F73FD2FBC38D92A | sha512: 59C2AD507431573FC69F87323795312C1E12F60BFB0FB065F87E9472045BFE545D074AC9ECA64727BE4FF63EA7A50EA39C01EB00E7214DA19B3AC3927CF0FE78
bin\Mono.Cecil.dll
md5: C5751851C8D036FFB34D53440E0D9AD7 | sha1: B299E1AFB2ABCE241416A05F97A912E75BB97D1E | sha256: 07DD3B76DBDD570CC3EF3E9D0710159EDDFB5039ADFC68E9C188175D953FF3C1 | sha512: 0517CB48F001757AC0230085AA58BD2E3ABEE2A6D4258D39664DE262A98F1E288E79D1A8B7BF969D0EDBB1EED35D382954F271647ACC9145CC7FEBA3DACCEB03
bin\mscordaccore.dll
md5: 221062D87FCF89159821D5A4821FB222 | sha1: 893F98289939612E3E09069BF24C29703A5505D9 | sha256: ADDB753052E083DBE88E0D0D653E86768C7E97B003D68CC7BF85F4F9F4FBC843 | sha512: DAF0B8724EF574F2978D4B87D334A6116255343596EBF7208AA270F5D93CFAC0A72D598BF97E40044D7D871E0317F687455FDA4A35FEB3B399E8834248160FC6
bin\mscordbi.dll
md5: 51A7E1104598C7DA2DAED25A5527871B | sha1: 19AF96CF4C3AB87CBE5419320A9BD1FD70C24A1F | sha256: A6F34203F52EBE91D67D3053A9DF6DF03FBEAC9077BCF4C73F64FAF7387B2216 | sha512: F7D56359368FDA32F2359C7B04C06AAF86ABAC61BF5A3EC2A43183DBAC7C1716CEFD6D4C0565D012E83EBD8085664B786B91FC7E3A60DA622AEB31F858E7011D
bin\mscorlib.dll
md5: 614AD236EF80017246B8FE6746D895BE | sha1: 30E3897C9C5EB4D8A85FD7427572E79C6FA9F1DC | sha256: EECA1CA73ED50BD96F72D63BD75A713A4B54D02C7CBB2C607FF9653A6F1BA1EF | sha512: 3A3290577B5BA04AE32632F643BB90738CA0408AD81F6D06D2585E2F21607F76A3B0927D3BE5DDB1C07F9D75DDECF4890EA07F7199A2C4F3ECF3B4EA327EAB2F
bin\mscorlib.ni.dll
md5: 4F6EC9A69B1945D95310EB6AC685DFFB | sha1: 18E0642264F5588EB2E46A8D83A0F105DAD3A062 | sha256: E17D5ECDE37AA907A48629B0B40DF0FAA01046D4224818DA4CDFC48B0D41E43E | sha512: 6FBC7B47DC43B9563D503E4EC98CBEF4A92C1208F6F28B24718F8E52BAD81FABC649F424ADF62BD660D9EA009EE311A7818EE112DE0F5C5F1997830C32EF2EBF
bin\Fake.netcore.dll
md5: BE936A0130DB7784C1C372E1C961A04E | sha1: 70B7557B914B6C17F6F1981BC1A48839A3146A9A | sha256: 9CB5F9E92EF68C7C35A79EF481D1BDD456856F60C1067BA41021C2610C92DA95 | sha512: 79DBDB3CE9359A72BE59C745F554F42BD2A588A546F6B3EAB50B7A30E3F912B751C1FE8244400DBD5383E004FFB889B8AF2CD7ED9B23FA5D39F97C904A4A3322
bin\Chessie.dll
md5: B5AE1290B559675E28546EB000DB94B0 | sha1: 607A156129BDF9954243802DB35BFCF392EA595C | sha256: 1D7ABADBB1231FCAD053C40F17C5C0931F64F517B8F007D6368E7640D31AC069 | sha512: B8EA6028647C758519A556CA249CCE3E108363C15C34819AF647887FAE147CFFCBD9A809919601DE239C057BC9F1DEBA60AB76034EA639E94372A86260F0F237
bin\clrcompression.dll
md5: D0C446B3914641334DAD23602DB1DEB7 | sha1: D04ACF1EA4C4168035ECE7608B87F0B3A396E2EC | sha256: 4B678F509AFD10868D6DC1E3E7AD52CEA4D18D0B7EF924A0F19EB0DD46A64F28 | sha512: 6BA9EEDC4EA706546569A53E5581A6A7E0340861C183C79D27814AD6C035650B6E880FB114B882D2872C3A54EAC251711F8068E2089B3A978B39611282094ACB
bin\clretwrc.dll
md5: 6A8F29C955C56AA210B8F5BB4F6EEC03 | sha1: 1CFB5B7BDCB887A1A3310878EF07885132AA7E39 | sha256: 18B795BBDD604E0201AE6823D14659B534B31117C6C5D0C4D210FDB174A32EE6 | sha512: 76C1665A92F9CBC84CB6EEED0B75A8B05EA75C54C5F830AD19B3981F6F085076E66EAF5FF7ED6F7D9D89B959176B7C25845139AB9A61D384A70D0B6985B5BF95
bin\Microsoft.CodeAnalysis.dll
md5: FD2D04EBE27E52A7BEE6712DB26155FF | sha1: 84397DBEE16CD89F9ED7714659648B9EE13798C3 | sha256: 71CEBEC5C2EA4F9E5908E0BC285299C6ECFEE97FE52C50F9930E57A3F3714D50 | sha512: 2B41902FF31961E137780D8418C95984280888D39AEA73A8483BACCFFFEB03965F27BB3741D85F0C5C5BEB5E0E49EA6FC8DA4C1CC2A6A7D381366ACE09818F91
bin\Microsoft.CodeAnalysis.VisualBasic.dll
md5: FFC36D237C95A5BF77AB3A2006C36BCE | sha1: 20561A7F14D722EAB330ECFBC1757EEA6B7351E6 | sha256: AA96736A56BEE915EE54A955DAE0A573D71AECC335F87A0DC75B6EE919DC85DE | sha512: 32025BF0C40BB00DFE2ED796BA5059832AF76F109C6D85461E97CF8676FBB9ECDF5FC5DD4664D96EAA3562049B41C03B2981090170EF42001D9AB7DB06A381F8
bin\Microsoft.CSharp.dll
md5: AA9022B9FE1B393A83BC504B463BEA61 | sha1: BC806D6884453BFAE47001E44522EDD7BAB7814C | sha256: 07874811F11BACE15D1B9F29FA6A7F5FC30ACB208B551DFAD45A2295D5E758ED | sha512: 13D16EF303307C59D4411877B259ADA307EC2C3EBADC968379230AE4E66C1B2F86DAAA846FD8F85AAC7814D0E695F8F2821C0DFCCDFAB2FA62B995A7B23B3A01
bin\Microsoft.DiaSymReader.dll
md5: A995C00F9C829961AC41CCE16ED81072 | sha1: 8E74FEE7AA078B25BB80335B47FF0615A1708234 | sha256: A686CC5A58116A9229E434F3D98A081A2EBA34F02562AD872A47046A68AF2731 | sha512: 7F8FE3A1F220656C9ECE12E93DFF19CB9ABEFD4659BB2E8C3989BA3066A4E30D299CEB5AF0F713ABEB68460128DFD5232F12B5EBAB9FB691813FCC80488B20E7
bin\Microsoft.DiaSymReader.PortablePdb.dll
md5: D73549CA68C8F74A9E00290ADBB34027 | sha1: 94E83A44446E262F24067A182F2788F69DE92FCD | sha256: FC7A599830A1DFF6318ADDF3888ADD38872335E03DC1A300448B319D1074DE54 | sha512: C43593943F7AA967D2F3369934F19E34CECFFDE4E0F363F945608000568B5B486CB18FEF21657C6ADC49A28CF6E85569E434E48C1FCDBFF73AA5D14453D1C8D9
bin\Microsoft.DotNet.PlatformAbstractions.dll
md5: 105FFF33504B3F56CC03F76635DCFF20 | sha1: 6B19B5F431C6F9EF7A5DD0A1FE94735AF78875A5 | sha256: D716AC00AE9DB882918991904673FEDEADEF608FE14E0CCC02082EC61036B5D2 | sha512: D2590596AA325A86DA2419EEAD9BF8FA42A22BDE1DEC326DB450CF530F3A60EF22AD4EF1B4D69ED6FFEB9EDD5790C3BE3D0911CF86A56739C68D4747225F5E70
bin\Microsoft.VisualBasic.dll
md5: 0C5F8459FB31DC7CCA2DE4DB9B8EDC73 | sha1: CA6D12F32ADC316B8D2A16B6C074FE55607E6305 | sha256: 61017C55E99546EC4B00366606501B0D23B8547E220ADB954189B954F59AA004 | sha512: 539437EB5785FF00D5D928CAF4BF092651EEFE605143E33CF806408F4200A139291A96229D54EBA0A12A5649C96FD5DBA429FA328DDCD92508B7E9FDC9FC9E05
bin\Fake.netcore.exe
md5: 1C5725DD27FEE234683FD1F7DE322523 | sha1: 910A924728CCD215BCE1F902E938720AB09E57D3 | sha256: FC2963232AC04E6BF1B1CA8491CD684A0C4F63AE055D641580C3899DD9A70DEE | sha512: DEA7253D8967613A6A84BFAFFCE807C5C5C64B9F0A70C0608C83F9430FB13B5E07DCA92731FED9322E14075C1E446F187D7D0FF344A4D2A0D32E1A828973B686
bin\Fake.netcore.pdb
 
bin\Fake.netcore.runtimeconfig.json
{
  "runtimeOptions": {}
}
bin\Fake.Runtime.dll
md5: 26CEE6A3138B480FE6A1515C20426ED6 | sha1: 6C20041C1DD7DA79B8ED11F1D3555E928630280F | sha256: B723C41B771BB7EBFEE5E0390C5539DA25F2AE1CA5EF4D3CE569929B6D4519DB | sha512: 636C0B574C1A6CE385199CAE7D3C042B6E993DC6CE657F231798D4A92125DC5C83B7C68D257F60F3B43F83A81FD8CA900BBA6D4A33AF344FE393F4171FBDDE0A
bin\Fake.Runtime.xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>Fake.Runtime</name></assembly>
<members>
<member name="M:Yaaf.FSharp.Scripting.ScriptHost.CreateNew(Microsoft.FSharp.Core.FSharpOption{Microsoft.FSharp.Collections.FSharpList{System.String}},Microsoft.FSharp.Core.FSharpOption{System.Object},Microsoft.FSharp.Core.FSharpOption{System.Boolean},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.Boolean})">
<summary>
 Quickly create a new IFsiSession with some sane defaults
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.ScriptHost.CreateForwardWriter(Microsoft.FSharp.Core.FSharpFunc{System.String,Microsoft.FSharp.Core.Unit},Microsoft.FSharp.Core.FSharpOption{System.Boolean},Microsoft.FSharp.Core.FSharpOption{System.Boolean})">
<summary>
 Creates a forwarder Textwriter, which forwards all output to the given function.
 Set revertRedirect only to &quot;false&quot; if you know that f doesn&apos;t print anything to the stdout.
 When revertRedirect is true we capture the Console.Out property and set it before calling f.
 removeNewLines handles the newline characters properly and calls f for every new line instead of every call to
 to the underlaying writers.
 The difference is that with removeNewLines you should use printfn and get lines without newline characters.
 On the other hand without removeNewLines you are called on every TextWriter.Write call,
 so you might be called multiple times for a single lines or a single time for multiple lines.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.ScriptHost.Create(Yaaf.FSharp.Scripting.FsiOptions,Microsoft.FSharp.Core.FSharpOption{System.Object},Microsoft.FSharp.Core.FSharpOption{System.Boolean},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.IO.TextWriter},Microsoft.FSharp.Core.FSharpOption{System.Boolean})">
<summary>
 Create a new IFsiSession by specifying all fsi arguments manually.
</summary>
</member>
<member name="P:Yaaf.FSharp.Scripting.FsiOptions.WarnLevel">
<summary>
 Sets a warning level (0 to 5). The default level is 3. Each warning is given a level based on its severity. Level 5 gives more, but less severe, warnings than level 1.
 Level 5 warnings are: 21 (recursive use checked at runtime), 22 (let rec evaluated out of order), 45 (full abstraction), and 52 (defensive copy). All other warnings are level 2.
</summary>
</member>
<member name="P:Yaaf.FSharp.Scripting.FsiOptions.Default">
<summary>
 Sets a warning level (0 to 5). The default level is 3. Each warning is given a level based on its severity. Level 5 gives more, but less severe, warnings than level 1.
 Level 5 warnings are: 21 (recursive use checked at runtime), 22 (let rec evaluated out of order), 45 (full abstraction), and 52 (defensive copy). All other warnings are level 2.
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.FsiOptions">
<summary>
 See https://msdn.microsoft.com/en-us/library/dd233172.aspx
</summary>
</member>
<member name="P:Yaaf.FSharp.Scripting.IFsiSession.DynamicAssembly">
<summary>
 Gets the currently build dynamic assembly.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.IFsiSession.TryEvalExpressionWithOutput(System.String)">
<summary>
 Try to evaluate the given expression and return its result.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.IFsiSession.EvalScriptWithOutput(System.String)">
<summary>
 Evaluate the given script.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.IFsiSession.EvalInteractionWithOutput(System.String)">
<summary>
 Evaluate the given interaction.
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.IFsiSession">
<summary>
 Represents a simple F# interactive session.
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.FsiExpressionTypeException">
<summary>
 Exception for invalid expression types
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.FsiEvaluationException">
<summary>
 This exception indicates that an exception happened while compiling or executing given F# code.
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.Shell.InteractiveSettings">
<summary>
 Implements a simple &apos;fsi&apos; object to be passed to the FSI evaluator
</summary>
</member>
<member name="T:Yaaf.FSharp.Scripting.Shell.SimpleEventLoop">
<summary>
 Represents a simple (fake) event loop for the &apos;fsi&apos; object
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.Handle``1(Yaaf.FSharp.Scripting.IFsiSession,Microsoft.FSharp.Core.FSharpFunc{System.String,``0},System.String)">
<summary>
 Handle the given evaluation function
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.WithCurrentDirectory``1(Yaaf.FSharp.Scripting.IFsiSession,System.String,Microsoft.FSharp.Core.FSharpFunc{Microsoft.FSharp.Core.Unit,``0})">
<summary>
 Same as ChangeCurrentDirectory but takes a function for the scope.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.ChangeCurrentDirectory(Yaaf.FSharp.Scripting.IFsiSession,System.String)">
<summary>
 Change the current directory (so that relative paths within scripts work properly).
 Returns a handle to change the current directory back to it&apos;s initial state
 (Because this will change the current directory of the currently running code as well!).
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.Let``1(Yaaf.FSharp.Scripting.IFsiSession,System.String,``0)">
<summary>
 Assigns the given object to the given name (ie &quot;let varName = obj&quot;)
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.EvalExpression``1(Yaaf.FSharp.Scripting.IFsiSession,System.String)">
<summary>
 Evaluate the given expression and return its result.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.EvalScriptAsInteraction(Yaaf.FSharp.Scripting.IFsiSession,System.String)">
<summary>
 See https://github.com/Microsoft/visualfsharp/issues/1392
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.EvalScriptAsInteractionWithOutput(Yaaf.FSharp.Scripting.IFsiSession,System.String)">
<summary>
 See https://github.com/Microsoft/visualfsharp/issues/1392
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.CompilerServiceExtensions.Type.get_FSharpFullNameWithTypeArgs(System.Type)">
<summary>
 Gets a string that can be used in F# source code to reference the current type instance.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.CompilerServiceExtensions.Type.get_FSharpParamList(System.Type)">
<summary>
 The parameter list of the current type, sets &quot;_&quot; if the current instance is a generic definition.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.CompilerServiceExtensions.Type.get_FSharpFullName(System.Type)">
<summary>
 Gets the FullName of the current type in F# source code.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.CompilerServiceExtensions.Type.get_FSharpName(System.Type)">
<summary>
 The name of the current type instance in F# source code.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.CompilerServiceExtensions.Type.get_NamespaceName(System.Type)">
<summary>
 The FullName but without any generic parameter types.
</summary>
</member>
<member name="M:Fake.Runtime.Environment.hasEnvironVar(System.String)">
<summary>
 Returns if the build parameter with the given name was set
</summary>
</member>
<member name="M:Fake.Runtime.Environment.environVarOrNone(System.String)">
<summary>
 Retrieves the environment variable or None
</summary>
</member>
<member name="M:Fake.Runtime.Environment.getEnvironmentVarAsBool(System.String)">
<summary>
 Retrieves the environment variable with the given name or returns the false if no value was set
</summary>
</member>
<member name="M:Fake.Runtime.Environment.getEnvironmentVarAsBoolOrDefault(System.String,System.Boolean)">
<summary>
 Retrieves the environment variable with the given name or returns the default bool if no value was set
</summary>
</member>
<member name="M:Fake.Runtime.Environment.environVarOrFail(System.String)">
<summary>
 Retrieves the environment variable with the given name or fails if not found
</summary>
</member>
<member name="M:Fake.Runtime.Environment.environVarOrDefault(System.String,System.String)">
<summary>
 Retrieves the environment variable with the given name or returns the default if no value was set
</summary>
</member>
<member name="M:Fake.Runtime.Environment.setEnvironVar(System.String,System.String)">
<summary>
 Sets the environment variable with the given name
</summary>
</member>
<member name="M:Fake.Runtime.Environment.environVars">
<summary>
 Retrieves all environment variables from the given target
</summary>
</member>
<member name="M:Fake.Runtime.Environment.environVar(System.String)">
<summary>
 Retrieves the environment variable with the given name
</summary>
</member>
<member name="P:Fake.Runtime.Environment.fakeVersionStr">
<summary>
 Gets the FAKE Version string
</summary>
</member>
<member name="P:Fake.Runtime.Environment.fakeVersion">
<summary>
 Gets the FAKE version no.
</summary>
</member>
<member name="T:Fake.Runtime.Environment">
<summary>
 This module contains functions which allow to read and write environment variables and build parameters
</summary>
</member>
<member name="T:Fake.Runtime.Path">
<summary>
 Contains basic functions for string manipulation.
</summary>
</member>
<member name="M:Fake.Runtime.String.isNotNullOrEmpty(System.String)">
<summary>
 Returns if the string is not null or empty
</summary>
</member>
<member name="M:Fake.Runtime.String.isNullOrEmpty(System.String)">
<summary>
 Returns if the string is null or empty
</summary>
</member>
<member name="T:Fake.Runtime.String">
<summary>
 Contains basic functions for string manipulation.
</summary>
</member>
<member name="M:Fake.Runtime.Trace.ConsoleTraceListener.Fake-Runtime-Trace-ITraceListener-Write(Fake.Runtime.Trace.TraceData)">
<summary>
 Writes the given message to the Console.
</summary>
</member>
<member name="T:Fake.Runtime.Trace.ConsoleTraceListener">
<summary>
 Implements a TraceListener for System.Console.
 ## Parameters
  - `importantMessagesToStdErr` - Defines whether to trace important messages to StdErr.
  - `colorMap` - A function which maps TracePriorities to ConsoleColors.
</summary>
</member>
<member name="T:Fake.Runtime.Trace.ITraceListener">
<summary>
 Defines a TraceListener interface
</summary>
</member>
<member name="T:Fake.Runtime.Trace.TraceData">
<summary>
 Defines Tracing information for TraceListeners
</summary>
</member>
<member name="M:Fake.Runtime.Trace.traceError(System.String)">
<summary>
 Traces an error (in red)
</summary>
</member>
<member name="M:Fake.Runtime.Trace.traceFAKE``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
 Writes a trace to the command line (in yellow)
</summary>
</member>
<member name="M:Fake.Runtime.Trace.tracef``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
 Writes a message to the command line (in green) and without a line break
</summary>
</member>
<member name="M:Fake.Runtime.Trace.tracefn``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
 Writes a message to the command line (in green)
</summary>
</member>
<member name="M:Fake.Runtime.Trace.trace(System.String)">
<summary>
 Writes a trace to the command line (in green)
</summary>
</member>
<member name="M:Fake.Runtime.Trace.log(System.String)">
<summary>
 Logs the specified string        
</summary>
</member>
<member name="P:Fake.Runtime.Trace.fakePath">
<summary>
 Gets the path of the current FAKE instance
</summary>
</member>
<member name="M:Fake.Runtime.Trace.postMessage(Fake.Runtime.Trace.TraceData)">
<summary>
 Allows to post messages to all trace listeners
</summary>
</member>
<member name="P:Fake.Runtime.Trace.listeners">
<summary>
 A List with all registered listeners
</summary>
</member>
<member name="P:Fake.Runtime.Trace.defaultConsoleTraceListener">
<summary>
 The default TraceListener for Console.
</summary>
</member>
<member name="M:Fake.Runtime.Trace.colorMap(Fake.Runtime.Trace.TraceData)">
<summary>
 A default color map which maps TracePriorities to ConsoleColors
</summary>
</member>
<member name="T:Fake.Runtime.Trace">
<summary>
 This module contains function which allow to trace build output
</summary>
</member>
<member name="T:Fake.Runtime.Runners">
<summary>
 Contains helper functions which allow to interact with the F# Interactive.
</summary>
</member>
<member name="M:Fake.Runtime.CompileRunner.nameParser(System.String,System.String)">
<summary>
 public, because it is used by test code
</summary>
</member>
<member name="M:Fake.Runtime.CompileRunner.handleCoreCaching(Fake.Runtime.Runners.FakeContext,System.String,System.String)">
<summary>
 Handles a cache store operation, this should not throw as it is executed in a finally block and
 therefore might eat other exceptions. And a caching error is not critical.
</summary>
</member>
<member name="T:Fake.Runtime.CompileRunner">
<summary>
 Contains helper functions which allow to interact with the F# Interactive.
</summary>
</member>
<member name="M:Fake.Runtime.ScriptRunner.nameParser(System.String)">
<summary>
 public, because it is used by test code
</summary>
</member>
<member name="M:Fake.Runtime.ScriptRunner.handleCoreCaching(Fake.Runtime.Runners.FakeContext,Yaaf.FSharp.Scripting.IFsiSession,System.String)">
<summary>
 Handles a cache store operation, this should not throw as it is executed in a finally block and
 therefore might eat other exceptions. And a caching error is not critical.
</summary>
</member>
<member name="T:Fake.Runtime.ScriptRunner">
<summary>
 Contains helper functions which allow to interact with the F# Interactive.
</summary>
</member>
<member name="T:Fake.Runtime.HashGeneration">
<summary>
 Contains helper functions which allow to interact with the F# Interactive.
</summary>
</member>
<member name="T:Fake.Runtime.CoreCache">
<summary>
 Contains helper functions which allow to interact with the F# Interactive.
</summary>
</member>
</members>
</doc>
bin\System.Console.dll
md5: 50C6B3C449BE982F08077DB868EBB549 | sha1: 0D6EA853F3E44DFB3944F5E391462DE80134D16E | sha256: 90D43E4F6433C8D4BFD9D0A33EFE649DA364240FEF080BBA593C06BCF6831421 | sha512: B6C81BAADE985C0A3DD4AF99E802A1B26ECE4C2EBC92E5E3283F8A8FDD28D1385EE3017C896AAF49E016379804106997128D762A298234D1C922573CE31529CE
bin\System.Diagnostics.Debug.dll
md5: 0D9615B11350C122AA35B2A11EC8466A | sha1: 78AC49A883F725C72468C669F437A8F417273A25 | sha256: F94909A2D7EF04ABB82309A2F34FAA3280E3BC8E492C5EB4693CD706A816EABC | sha512: 8D1753D1DEE0A8D64367C9EFFADB0516FE463A7F8252A8454F64ABD8D03883815C8400B4CEE95814F5732959EEFCA58299856B6FFAE1D87C5E80E26E1F9483A7
bin\System.Diagnostics.DiagnosticSource.dll
md5: 8D9DF432109F1CFDD86723B5F171E3D7 | sha1: 85DC92EDD4B0049ED9049E075C4DEF8A3D64E43B | sha256: D22133818A30313E0BECF010D78A556A56B34EA361DBD33588C9817631FED540 | sha512: 5C83303934EECFA61C43A071D29C98E5804D37A5DC7F7B035772D6A168B0C5E65DFABEF20B46214E65493C4BDA44831CAFEE83615498FBE9E718C884F4650EDF
bin\System.Diagnostics.FileVersionInfo.dll
md5: D31D6F49CE7230EFE95B6A26CFAE318A | sha1: 5B113CD1725B3431DA94660153DC50F26553E709 | sha256: 017B88720B22FD11E470EF6D7BF993DC8163F9C730763202D1DC61534E982D0C | sha512: 4673C3E35E93EEEC299C5AEC2927A0DEE63AE0B00CD8E729C2A806C7C9B5504DED95D4F3B09C21956D384A124D5856E1B3936C85D49008991C35AFF9C69E11E4
bin\System.Diagnostics.Process.dll
md5: A5AA89A0D99A2795D4D80084577419EE | sha1: 0AA5B9F7809FCF2C2F04F818B6C4DC56326A1CAA | sha256: 9ED012A9E7655D1CC7E384080C7543F99636C1EFD9350D500971E7A45B4DB113 | sha512: F2CE690100FAA5B7D20E115F01DA3857EBD665FB6B5DE349E0470E1CC1389209CC4C3C9CE0A12B9C4902C5525013C57FA615828E5E2BA6CC8ABFB2C2DC6DA794
bin\System.Diagnostics.StackTrace.dll
md5: 2107B0BD93D55FB50925BF4C6A65DDD7 | sha1: 953C3B420CDD40DA15F09E7CB3F2707B8E77FB64 | sha256: ADBDB247614B30E2C87FD392964EABF400389CC212BA3502063C007E1D42128E | sha512: 2437C0B2DF0745D457B04022B34BAE91FEEF667F14E87A63B4F9DD01DDF2AE805F2DBBEE50BEBEFD5404AD14ED7091AA86500C4F4B7106A05342B6D0F9831E3B
bin\System.Diagnostics.Tools.dll
md5: 4398D295154313A559B79D9652350EE0 | sha1: AF3DB3DE234C3F5660F2F5D91B748D6771068FD5 | sha256: 5152516C6D9C146BA8D6118DDE4B99FF5D10023FC52323748360858CF93D3DDC | sha512: 06F28ECF5940098D843663BA7F04383574597362F3DF9E8334448D95A092E9A71BAC09299CD6F79E91D20C0A6B960EC7403BF73106562C5E626542E552AC53AC
bin\FSharp.Compiler.Service.dll
md5: 638BBE9AC78967710354C72B25AFA843 | sha1: E389D2C14EC1D8DA3DA7EE86C0741391AA103737 | sha256: CEED4876061958430F2147467B106E20F8823A2DD9D762F0249BBA5D2E8966B8 | sha512: 6A81B958B94F3D7C755738EF074E9B1C1B8A3FF357647CE9D741BB87AAF181954F081383F999AA545A85AAF8B786E5436E8C5E12BA8827E50984F69459A09C78
bin\FSharp.Core.dll
md5: F68478BCF7828249882C5BF721C09A67 | sha1: 4E2C8D48DDD08B43BD3A070D3AD0B9E0F6A8B95C | sha256: B7FD93E5327A3C9AAE0C6DFC3C7612F287BADC7D70A9C603601369EB0221C62A | sha512: A3154D24A82BD35BD8A9B40037C49B3EE545CF40D153EF95F014D6FB51C25162B794B4275886F85F1479E32B7576CA7D7FA0738F2D7F03E4D423DC148CD10805
bin\FSharp.Core.optdata
 
bin\FSharp.Core.sigdata
 
bin\hostfxr.dll
md5: 736C8288085F5B5FD145859786EB70F4 | sha1: 2EB89B2E094548F69A1730FD306E0ED1585D914E | sha256: ACB7A25E4BD685A5075030A2B2AD162709A4C821714750290305F006222FC1BD | sha512: 60AB04002561613E29867C570BF533E62AF9588DC3858C317EEEBF46B50D62FCFDB52EF0FA55A5BABD7103C2446638718563F23DFBE7D2D72CAD3C5632D2FF5D
bin\hostpolicy.dll
md5: 9485AF3A29F6521D2DDB8EA37C996CB1 | sha1: 4A452AA24F0F75B19C105B544410D4F30CB73F13 | sha256: 468BC97989E40F540B321D96934958DE06ED699444BE134EE11F3AF51C808D38 | sha512: 927B4CB6E268C5876F86B95E61FE4A23A86C1B1506DBF5715FB26E8CD256395A493A3C11431EACB8EA21F52E0A69D767B7F9100D47B7EB267FBC2199FC8399C2
bin\libuv.dll
md5: 2722331611B535F5A10037DEC6A3758B | sha1: F025957218C79ED532254974C23D28FC16649F89 | sha256: 36F356AA4EB76F4AB69A7407EE038325912275579C98F74C2C86A8FB072E2E40 | sha512: B43ECB80D6FF97C055EF1DB42C32742CF10EB486BA49895E6D2A9E16FEE362364EE6E6D89BB788A1EE64823C6ADDBA5B288BD91EBB298B235A80270450166524
bin\Microsoft.CodeAnalysis.CSharp.dll
md5: B1E32B1AEA309821D9ED807251F50BFE | sha1: B912303D04CC09DF33CE00136D41ECBAD34BB2D5 | sha256: 210BC789E71A4621DFF77660178686661325FCB7EA69379A542D12571FFAB8EB | sha512: 9722DF47F70D5BC7188988C07657228203B87E5C6885533234B4510BA3D6A93C2642D49CC0170ACD515155B794CE7EFAD4FAF57ADAA6C9CBDA3C6C30135BBF2E
bin\System.AppContext.dll
md5: 8F1F6F1AA9D5E965EA91B1F3EAB38764 | sha1: 72B741CFA682B317BDCD6FF6530898393FDF15EC | sha256: 2E62EAE79B7F3E23E3458FD7F4229F2EB80FC594A641A6DAFB50F83A5336695E | sha512: 5979CE683756CD5929A41C8072311FCFEE8321D956E999DCECB7BCA2EC7F49B4C2E085D597C492C3C433216CCBCA12C37D9F96CFAD34FF38413BFC58E81529F4
bin\System.Buffers.dll
md5: 2A1996016129B3B0D696988002C738FA | sha1: 58D20D9961DB8A0D14A926DB2BB04C1C9C89627D | sha256: AFFE0828823B22A30833723F4743517AED3062094906C1C6A1EBFFA87CFA8042 | sha512: 97672CAF45FB6B50D9A250F9B68E6A1255AA389F3D658560EBFE32AD12D30D88F75CAEC0553BB33598B60E0550D6BB27A2307CD1E1AC5D7938262F4D0E832805
bin\System.Collections.Concurrent.dll
md5: 8EE4C9897B58BF93CB2A77AFDF861B2D | sha1: 5C9974C132931C857C5200143C9DFE9EFEE5DBBF | sha256: 3423F79A2226B9969D93EC7A7EE7A64F0F64F89EC39A3F78A401829CB3ED427A | sha512: A2256EF55670ECFD577F53A1F950C2E9D3F88C07CB511E5B188DF884ED47224AABA6912298196DC6A3565329A7DA29202218DC9FBC85EC19C72F1450DD34A420
bin\System.Collections.dll
md5: E1ED1404FB80D9080231A03BCF6789AC | sha1: DE23D63EE5C48B58BE86F1D34778C0299E4A3BB5 | sha256: E6A4F5BB1D3B9B63FEA41EE9A62C802989F03D7756D9AE7AF9A3F0B7294555A6 | sha512: D930BA391BFB07C88E8BC06DBD2926869686A98BB477039FC2AF28F1C0D1B2D1FF856E7D5E993CCE527F3E3D637001323F3D1C087E2D0F5D9C30B8A7ED9EFCC8
bin\System.Collections.Immutable.dll
md5: AAD3B7C5828E16B4C8071E5AD64B3F7D | sha1: A9049B07B9F5C9F4C3DA4D4568781BA58564B896 | sha256: A8E9CE5D4DB1897A939E60860154617300B0DFA4C4D3E10341F21AF0DE4BBFD5 | sha512: 5EB044397DB450090C41B20B99385C085F5E08D4983BF2BB34F2BF026F6DF747B37839AB309846AD1FC1B76519EF77DEB28CE4831F8140C9DCDD8FB1700690FB
bin\System.Collections.NonGeneric.dll
md5: 79E96884FC5D02553DFD73E5FD4109D8 | sha1: 8C9C267961DA40C9ADCBDA78050D4D92F16A7627 | sha256: 5FE69BE0FE4264F8A710B600DF60FAEEC2B8513A299F8E7B6FA7305B0465455C | sha512: 535F1428206D975128DDF2AD1427ACCCDF917F4BFC9EE5755ED55425C62EF8C1A125228941EF1B1AFBAD6B347F3C60EF758F30A7CD7F83C560BA781B10438F86
bin\System.Collections.Specialized.dll
md5: 7C02BAAA1BB238FF60F3BAC5D1E14944 | sha1: D1DA47B9D85A97F6779E3B679D81CC458BD65EFB | sha256: F4BB09047E67199AF8E009DED12F8277F4A789C0842D9748A375785FA46EB579 | sha512: AC1BCA3BA5144131B34CCEE58464A3EE55F32274089E35B0DD15038223E7EBB37D38E796619D303EC981BDECFC677E1E43FF4F052F5BDE18B15C04A71E830CCB
bin\mscorrc.debug.dll
md5: F981069234F961547977FE31BF6C5B4C | sha1: 02C0C795663EDF68A571ADB35EB905E99FC0CFC4 | sha256: AE3CA6CB7FCD399163790099D0C45FC289051ECA28453C8992C50047A33E4334 | sha512: 8C41BD8AA6930AA6FE328C8BC5D96504D91A1C554D3E20B3028F6D33565364839F894254F78AE33A860CE190402F63462A56E27FA4FD62F8649C2A36CAAFF7D2
bin\mscorrc.dll
md5: 6AED7AB4BFCDF27E68CD7A8B7BAF1B92 | sha1: 1D6CD171E71F47BEECF25D0081E55195D52BC4D8 | sha256: B215751C1712D7EEFA295B3704CD61E87D266E659BAC2C1CC3978C3CB4E32EED | sha512: 8C8CEE6D4B4ED81229276E92AF5721211CA07C17DE9666AC34FA6EB2A533A3DDCBAE8A251141A712349DD73F755AEDFD09B348C68909B10D837E66DC442588E3
bin\System.ComponentModel.Annotations.dll
md5: 781833229CAD019131C49D2CE4344392 | sha1: DA63AD06366323F2B5C216AE3A5F092FD02CF0DF | sha256: 14B405D0262E13C016D1179E9A521210805A44C1621FAF14C80898363F701972 | sha512: 9FFF26297000C063985779994D11C65B87B52BCACAA402630B8F71F143258B46C11E912BA72403F08E835AFD3619CA58F6DE3C2E0E5A498A57CF6F3B5EBEFE98
bin\System.ComponentModel.dll
md5: 31C8ACA250C8E48D4001006A0513C272 | sha1: 282143B10945470D29F6B64EC731B43E3332F67F | sha256: 8E3D2283842471630AEB477E9CABFE38887C4AE9FE6898251C7B282661F1F562 | sha512: EC4099655F18A6B08B45A57A3A31E172A5E6C588E9F3B5005DC99C96A1A2B5863E0DA90DC3706E1D25BBA4B5468B55460B7F2B435E8DD5396414A4D3C7C02E7D
bin\System.ComponentModel.Primitives.dll
md5: A9014A5C8BC1A70942C26DE0EB79604E | sha1: D2DE8DAFBED204B11FBB36C49A4473D7927D65C7 | sha256: 957001AE3D4D27582B88AF66E05E893107282A45E99A4937D932A1EFD62E00BB | sha512: DD4E741D0B7F073A50EEB482DD8686C8CBD2D3A07D052678F85ADA397EEC498C2F37203FA28AEB37D8CC081C4614A1D904C256BBFC3AE7BE676F9CC9F6A13334
bin\System.ComponentModel.TypeConverter.dll
md5: 3DC918FE0E091696E8D8C33048040650 | sha1: E6AF378FBB21DFF0BF3C621C5FCF3935E4816847 | sha256: FA0635911834DB46EAEA3C654D6921B18240071E2242D466756210C63828F21F | sha512: 8F25F0A7F2BA4A1959D1140B291000B212C4DEAB5A6A6B4CA3A9D5C6C2B132896FA166FB9678326E2F0A581A8C1E78DE7D14F30388365E3D3D1375A3DD05869E
bin\Newtonsoft.Json.dll
md5: 9DDD2A3660758D3E07A96C48CBCCF6DE | sha1: 9ED2DB5211E5B38939F85613E2D2EA3E6BBA027C | sha256: 195883567010B80F05329C3007FF6E6ACA5C41E7CE494D61A5F2B86C2D3B11DB | sha512: 01FA4F8653898315C2A3017EFEBB5E389676E1EBCC478CAA896A7CB9AAF14D4DF1AA14ABAD09337A01679C271680662A2B5F8661A182D81A8201C650EDB2FB12
bin\Paket.Core.dll
md5: 59EA9C6BBCF2AC2583B9FA9B8E7AAF6A | sha1: A015E2298AFF963F8BB8C26BA96468DDE965A839 | sha256: AD2B8DD627C3933A11506A05C60086604AEC57E75811D874994CBAF9AEE509B2 | sha512: 0B5F137BCABCCFACD6E4F888368AE284DC3D1C1A7D0BC411B824AF6EF7368E98F37B25892BABDB474E6F475810FCB047BFD9C87F40EA51FBF902E6E7DD383252
bin\sos.dll
md5: 2E57B9AB49FDB7F2725C8B1198A0B42D | sha1: 9DB06DB6B22C2B307D0B154F1744B6FF71977907 | sha256: D5D99CDF4048A839B9013B1C3EF709430D97A7D8ED6397B143B9FCD7E9D9F2E7 | sha512: 1FD5C61501F95926B470B092943C17C63E290FF46D38A1D4C126DF7DEFD066440439C7C31C14047FBEDDA9509C2EF0735D4C1C7B80AF60453185B7F8B9FEE896
bin\System.IO.FileSystem.dll
md5: 555D094E2AAE1933663771190D4F435E | sha1: C0E92DB91F25B6E88381EB1623289101C0321FEC | sha256: 7143DBC43909ACA21E469CF2522EADF8E1553CEAC81D8D9AB494C4C36E46385F | sha512: 6BD46D94E08BEFFF3391F7D61CFE2C2ACC36C33F7F63F39901E107D52BC551327CE859BF693ED515D2433C18A33793FCD3456C1294D2F81D5870E2DD4A553C30
bin\System.IO.FileSystem.Primitives.dll
md5: D92A01D06B829F1E115E47E89960E8E6 | sha1: F94E16C907915350C9A7FBC49CEBE7CA046E50B7 | sha256: 41827A243276042FF86263CE8A186B53F284A5660684BAB98BBB0D1204DE5C4A | sha512: C90ECD13A4985DCEA7EFEE7F339FDDC06CF434A723AC5708FC1E8A2383C2C98E846C47A60569279362303C63108E59362057C93C325CC791E97A7F34BBF7B7AA
bin\System.Diagnostics.TraceSource.dll
md5: 3FA94BFB546DF5FC720DE59D8FD2E279 | sha1: 3E335C5A682C02653F71D00694FE675038D2AA1F | sha256: 9B7EA9823D0CD53280557C730F2424CF85BB0274AE7A94D6B21AD3F6D3A6B8E3 | sha512: 8DBE6CB96E4D99185E92189FA1F440900CC5BA2803CFABCE09C8441F041AC0313FDADAB905CC16AC6F54112AC95FD179475231A0BDA4123B0F04A834FAEDAFF0
bin\System.Diagnostics.Tracing.dll
md5: 0F8D393631C9D6EA99FF8EDFCEA53C48 | sha1: 4F0CE78C79CB75EBA9A5B1661B6878A75DE8D78D | sha256: 66B2C2A7D23596A76239384A170DA5856CE2569DFAB6379A901FF21766E8E8A9 | sha512: BB3EEE1DBA10DA5AC331544114D0F773544B8C67BF25FBDC30F93C1632A9E9E87A1AAD9EFB6AF5A93AEEA67A59D33B14E2B767A0EEF6B20D98FF56F847997CC4
bin\System.Dynamic.Runtime.dll
md5: 0A8C2ABB7FD793CFB9A39227F944FCC9 | sha1: 72A623B97AB5CFAFC2547D4071DB3FE3B3AA1C53 | sha256: AC18D422D83496656756C92C7F2D23517269B44582A81CCF99DF94AA192970B8 | sha512: 5C45B39B69D2442BCF571AC9082DF4677616AFEEEA5FB17C655A1658EA5A6FA500EA3D9664534B984BA7DF2EAA518240D1883F7238A939D77BDB98DB4B7A1C89
bin\System.Globalization.Calendars.dll
md5: E6A1D851DB770A212FF8A6197F1FADC2 | sha1: 42522470C136E6734D66AF487BEAD30A96440F33 | sha256: A88AE6184C0A9F3C0DB4ED804414F872366B1B6EEA036C1D293C22740EB6C785 | sha512: 896EFACA608B5480A485DF070293E93A725B5C44A5779A99655366E5387860E5DF689E34A608BFD72A51C9B8CE8C81A4842CFB780EB60F57CE12718918C78EAD
bin\System.Globalization.dll
md5: 7EF875026736E3A17E35D57F1B433DF4 | sha1: C40ED1F7FCF19004DF287255995251ADE13C427E | sha256: D9C926C3099DCD916BEAC7EA37F497B5B8EBED836FEDFA73FD59BE3F756BE482 | sha512: B8B2E69F8F4B2B28CBD0F4999C17CF0E2835837C94B195AD301ADA2CE71BDE933A1F65313EE8481B0471DC472FAE0821D0220EAF76F61930BB029514284A2A59
bin\System.Globalization.Extensions.dll
md5: F5B653A70E4FD522473CDD223C9CF833 | sha1: DAFF73458F5A680D5631317C3F880B1700811BB9 | sha256: FC647109FA746C3FB5A93C933E938D010B49568BA080C356489918EEE6EC2656 | sha512: 5A2A9068B62F5711CB1A9C2678D58B3FBD97ED2B8E536706A9C73E546C92A0E285FB55284FE3910B7CE7568C30C18A59CC10FF4DF5476F7F3D643A665BB9279B
bin\System.IO.Compression.dll
md5: FBD52C78647072E17FDB2996325DB6E4 | sha1: 2CDFC93EA967D0725F1A9F371F00B950FE1DBC13 | sha256: 4EA09E6D194BCCB2BB424E75DC8D125AE8637E9EB4B4A09FB395104887CF1A7D | sha512: C4FF5C8B7DB196A0C1C30720DFEDA9CE4D062A7212AE613B32F56FD6EA8A080B0400A842D7488A58FB1EDFB46593D48F880937E68EC3A9979C921663E95AC78A
bin\System.IO.Compression.ZipFile.dll
md5: 65306815825EA8652D0EE2163D123D14 | sha1: E8EAEE6E9AE5FCDBD19B056856BA0D8424243E28 | sha256: DB7CB3CF25D563E85A287A77D0C9ADDF6DBC1907475330A173F4CCCC1CA0E6ED | sha512: CD649101439099CE741D4C1A1334CE8BD9283D6531585047B64138B533E742808D1097E9419A3936E4939E1D4193488E0451291F4D56D70931E2D87A04239646
bin\System.IO.dll
md5: 986352D53478689FD0B7880FD9E94DEA | sha1: FB95CABB73D84AC1464971CA64CD263319671D26 | sha256: 86EBC72E381CF2C8E7D733722B625AD2DBAB68D6D9FD724B4D819D276378B200 | sha512: 47A031C0F67E3CDA92CA9B780AAC122D8C04734B4FCBABBED858F9CE1E945E939C3E0DAE47C9C8403CE462A49EC0B1BE849A46955ED0B7EAAF5260929B3A0C17
bin\System.IO.FileSystem.Watcher.dll
md5: 7EA6B869A26D58C0772CEC2E1A2D94CD | sha1: 8BB94A28C8E6CCEAB2837FB554C26B87E6B33B0E | sha256: D5755EC9F542287232A33916D40FCAF0F7E04840992D90457BCAD0C84414CBFB | sha512: 66B90A92B2665B3130EB68C22AF493E3114753987A5F91014B24702D4EC222316A5330557CD5E9EB3C5B4C36C3DBDB0462C7444C5DBB18A3863AC70509587D04
bin\System.IO.MemoryMappedFiles.dll
md5: E8569B6A2BA6CC1FC953FE83F4D23204 | sha1: CF76F4925384C8F5B6EFD531CAD52490C31E05CD | sha256: BFF68EB0FF820B135CF720B8ECD4AC83F623625D89E19E9ECE23E9D961A8DAD0 | sha512: 5B7ABCFEFB65C2139EF5BF6271F6CCE8AE246875BD56D271512D5DEA5EA254C0FDB8F722527A66CAD276E7BB1CC2015684E42BCADE287C55D3176216683A2678
bin\System.IO.UnmanagedMemoryStream.dll
md5: 7697BE1B2526989FC73FD6788BF12535 | sha1: F9919685EF1D756C44F2686EAE1292D40E8BBC07 | sha256: C4E18C06CD3E936E6783B879FCEC76192F5A20A71661D6B3C5A9024FA0103499 | sha512: CCD344565D09E96E305FE07BBDE579D4C79AF97D7CF1C575F310B3AE86C25B11958BC9BE8BD23D2B35A2B602F5AF2D8652F48474F0243C08ADA20B23816D3733
bin\System.Linq.dll
md5: E5067294DBB673C1E49E5288C49999CF | sha1: 866B9A8A7DCB00A90990B6CEF915E48464CE2FD7 | sha256: A0884CF5DF50922DA66E5E62D0823DF4802B2982A93B92E0C4D96AC4745A79EF | sha512: 7C664C505DF878442E94D289EC38FDC0E6E2A8BF572514C378090647372A0B9B93466B3075360BF85497F446C6AE26166F79A99132CF039F6E0E58719FF71651
bin\System.Linq.Expressions.dll
md5: 56150AE40391C7B257FE84C5CD7B11E1 | sha1: DA360225BFC5B432C89190987EE4FFF09D458D01 | sha256: ADBC4A80E5AB49ED799A7F08EF8575649A038733D7DF941D2A4873C7A0063EE9 | sha512: 49F471B62CCA9AEE26CB16D25558777715037056A803120B42CFF3816D1EE0E66943AC1548D1F35B8C867A7C9635F05FBD4BF1D6BAFB3B41310A5C4AB9D3E97F
bin\System.Linq.Parallel.dll
md5: 6407690DEDDA00709A3AC40ECEC60954 | sha1: 5A8FECD36EA47D629775F2375A7AD26F941BB776 | sha256: 548ADAD25F039B781B415FF1A4D47F2A998F5946D99911E43D0D5DC038DF3602 | sha512: D7519E36EAFC6F0D5862412F0934D6F7F4F5A990B52002919C8D7CB36A62FDDC74F086F0B854F9825BC4F2E7E11AA46CE6E7CC8B267D436FCC176AF56EFCEC12
bin\System.Linq.Queryable.dll
md5: 08BD1EBCD83DF8B679016E3D5A3DEB4A | sha1: 405E73014C6D3F1738D19FCB21DB0E7F69DB2E9B | sha256: 7CDF00AEB5BB50B4FB9E3EED26DB41CBC38A5FAFC1D7819597CCB9BED1A2ACA7 | sha512: 1DCCC4A8B114D652DCAA6316DC8DD9D236B0B1B353A0D1F9AB8ED4BE68391E19497FDCFF0AFD1EF6D981641AB2A8FD5E69C60F0EE6369D33CB2A8DF61EC00EE2
bin\System.Net.Http.dll
md5: A8DB4545D5F0EF2A9477ECF36956344D | sha1: D68F096E4A6D037B90A09589A70F5891BA2C09FD | sha256: CC99EFAFB9AC2B149E638AFD0EFA178CEB0DFD789BA032B2D59A02D0FD95EE51 | sha512: B3CFDFFB297137B780B94A66783D43BFCAA957F1BD55538A6A2F2DCC671A06B0AEB17003A087AF607514C1AAE1C5A309CACBB3D1E13CECB30132116CC2C01D36
bin\System.Net.NameResolution.dll
md5: 9FC2BC2C492C0F9AFBEE4968B1CAF4F3 | sha1: 2C01D0E374079F2894C5338F70EBC25E28E93299 | sha256: 0B1E2A2F4D984B44182D42944C8780294F33B2674C0753F186BB0A55DA880BCC | sha512: 71EA6B6F080CF50CFAB284FA94D6FC57B5E855777350D5FA4B0CFE2F6C088FD88BD5414A45C4AEB8DDE8D224A7068D283623CBA092F354E2D68652C18C215012
bin\System.Net.Primitives.dll
md5: 2E9E3EC8ABFF6F55EB44565298D8636A | sha1: CA9E49E2D3F0A73B7AF252C36E1D6AC7BA5CE24F | sha256: 0B1BB224C1444213687475E7D36B70408D0E44529EA79287169B0E4F34936E0E | sha512: E00545CBFE0B941FD6808606DDF9091D08039B95750D067EA42D0332FAD2BA5DBF09A1EBAF5141636E24F5ABDE5B465D942884685B9617A55ED21B1D5163805F
bin\System.Net.Requests.dll
md5: FCC0E048D8178D0D021115BE66F4C985 | sha1: 5C5016F2603D672CAC969CF5E75F3216AAA90E1F | sha256: 95438D8F4DFBB40D94FFDAA1CF2A3E33F0E28E3AB56EFE0782F37A4168213344 | sha512: 6A160FC015E117467276A40F7ED07CC861CD73FE523475741760BC8B2CAE9EABB49DB31A24FAB07914085C96F8AFB4248CDA56BF7073440014498659AEF62F36
bin\System.Numerics.Vectors.dll
md5: AD6B35DFA551A240856C7327CE5AE068 | sha1: FC3E292E5954EF36D237C82AB4A08A449F73F684 | sha256: E4A297C85698BB151A318712EA1C2AF0278D9169F95397279F28EE1672647189 | sha512: 486EE755364CD421E4AEA49DCF3CFC111960BC106E6422BABD65F1A3F00AA198002D9CA7C550DDADE76C4DBF17484C6F8EC2D7FADA88A1D3FD60940F267C17C2
bin\System.ObjectModel.dll
md5: 108A3CC22494EC15CBFA6C582D214790 | sha1: 10CD21D42B2BCB10AFF918FFFAD00662B547FF97 | sha256: 44793EE824928F252284723EFD769E292DBB5BDC1F7DE8D58F372B8B2F3CFA30 | sha512: 38801128514EE2F60B3BF9179213D17218BE200DC861B6D28679CFE895CFB13F6F4DBE1BA09186C584350E41D55324917FEC628C92792D7F7A63BA7D26DBC699
bin\System.Private.CoreLib.dll
md5: 149D231035A07BB6D6082A2F0117C03C | sha1: A0A65F43C0D357569B0FD4D63BC928D911A1F058 | sha256: 401F5A97965D82ADEC6A41EE916B1EF8C5072BE69DC64C8E5F170BEF646AB3D1 | sha512: 14942C154C81D47BE7E59F7A6CBBA852DF3A05D47735E9C8C80621CF1740FB885313A883374098A54AC8C657DFBFB7ED6EC344E0724C9E64AE6DB934962C2BC8
bin\System.Private.CoreLib.ni.dll
md5: 95A2EF82D308E5D05B71B207992E89D4 | sha1: 089FDEAFCD8BE1BED5F47E844EE3EF4EA6F68CEB | sha256: 0C172311F7433F11AD874DA1A0C169A1B47E79B38497C2140E22F34F755B82EA | sha512: B0B6AC8728401C8EE34B340A4E3FA30453D1960F125B6CA977F2B30AA647E36F137FB4803AB32F53A703C53BB71C3AB8DA2AC3BCDF556E80DD3E8BDB2A8CCF7A
bin\System.Private.Uri.dll
md5: 687991E59DEB7C9A72BB458BD6E6BA14 | sha1: 151C94C894B65F16D923B170CC0F352C5943786B | sha256: 250962AF9AAE8A21E3BAE2044FB6310B55BBEB825E130A8F54468EA05B44CCD8 | sha512: EBA8CAACCCCC0686AEF79D5626F3C64870A1255230BCB98B8D0840060E6D94A56635C05A3B175BE3A91807711EA16971FEE7636D1F370459CFFDE4E6B3C592BF
bin\System.Reflection.DispatchProxy.dll
md5: 96516B1E57389F67CA208F53EE066A2B | sha1: FF413FBE2A9BCA4DF2AB02EF9BA3792B5AEE7B9D | sha256: A5F3EC28D88CA2E3A97EB59F099764952A82147340F0A56FEEDE5A66D2D255C9 | sha512: E92CA0D1BDCB565B1BE0B8C03A1608901C9075D63C2B719401784FE50E853F3A8BDA7E611E82DD852DAFD352952C3E554EB269C1118828548774F1E29688F018
bin\System.Reflection.dll
md5: 415281C87D7F8AE0E3F9892BFD4B68AB | sha1: C3DF659DECD5685FB8ABCF86E55CA1DBA80E549D | sha256: C33C4B9C2C40926AA012593A7A932CA3F908D20BE47F4247D98921AF14BC815D | sha512: 1CACFEB090643E8E322F2780E4E3F4E0786804997FEB3BCAC53E8EBA2EF51C22A5C6441663617A2C09FDE239A3D7163E4241BAB2C2D1C5C28F00E787EB849724
bin\System.Reflection.Emit.dll
md5: 4A7381ADF146CE21DB14DE98B8152454 | sha1: 6FC22390312B7EFE8CC7377D078B9F6BC06273CE | sha256: F55E0F86F33EA29B83428713553F571B27710DC0DA8B9E3627A037E125174E50 | sha512: C41351C7F1D2B109BF397815969CF99D7F3EEF5048386C951D642E31818BDAC4EFD11EBCFBB38EF0A9770B7BFAEFDE7B06377F77902C48FAF63C4B889142F058
bin\System.Net.Security.dll
md5: AC2C4B008FB225E7CB3BEE41431B6FAF | sha1: D3EBA8F1CA767F41466919842DEBE23B7145732E | sha256: 9182CF7AEA8192D53CE3289CF4D7A5F19E560E37E789B0837D31D9F7EA7B52BF | sha512: 6A6D5968E58E510FE5C40A70B2ADE02757112E9BD3F066FDCE6DFBDE37E60F7D72B35B25150C0956DA55C8B8E06555C8612BE2A4F5137DF109A5B56DCC3F1140
bin\System.Net.Sockets.dll
md5: 71504E95A199414FB5F3A3881AB1CCDA | sha1: 1513F9E2301FB42D08E9786D454C1C11B38D5D91 | sha256: E1DDE237658A764AF4303D092325DB9C0407B9E30013B227D2AC36FD6CD9F6D6 | sha512: 3A8560F2FF69BB0952C97F54E8BA0E70D1CC9E3E660E5B032B8958A46D8DB50057A1201B8C99301E94834B942F37DE6BF58B64B59EA85442D3E4619DF9EEC20E
bin\System.Net.WebHeaderCollection.dll
md5: BD01C26B6E417774DE35699553281816 | sha1: 9D976DE592A740313E25718697BBA5D92B446C13 | sha256: CEEF98C2B5B07680A5BC5887C5D894C8F4D16DE0669FD26844ECFEC1028558E4 | sha512: 8E7DC96FD304A8A0F5769A6DDD74854C327C9F70E83061EFB86E798D185ED8AF2A24ED8E62D1D4248529FEBA8C7F69CAA0453D41A272275D497BF8953261A821
bin\System.Runtime.Numerics.dll
md5: AAD35C6F931CCC5D9B94A395F51A1439 | sha1: 923593908A599C2017418B80BAD8BD1783CB6935 | sha256: 1FAB9BF69645ECD20E98D7221EFD5C9A2562C405D5C77024BBD826AF09C521C5 | sha512: 5DD7BAC2E5451E7C8E39890806CF6B95E593957ABA888C5A93FD8B4B5C82B018B850C02154C789210633080BD05919B5EE2BDBCF64908DC1CA21E513C7BABCC7
bin\System.Runtime.Serialization.Formatters.dll
md5: 0A689674118CACF3AB66136BE24365D0 | sha1: 16E30150DCB36680D10B124C176F449F83BF22B9 | sha256: 3BE54FABBFBDFCA796CF0C94D55CB1E4BDFDB8D7EE04766345441A5D879E6B61 | sha512: AC5094FBF95E36960CD3B948FAF626D0C43AEAD7720F75A21F56150F4E8DD97D45643422B1264E6FE6BE28680A148F7D802D2B44AD42508B537874B2E9A149E3
bin\System.Reflection.Metadata.dll
bin\System.Reflection.Primitives.dll
md5: B53A491AF5187E2104C19FD36EF67986 | sha1: 7226B0BAE615CF44F89FAD0B8A851DD61EC784CC | sha256: 2905BC33231D608124ABF02CE821A021BB6994C72673937C82392B086A67F59F | sha512: 53F3D606C3CF0624D80C500DCF8A74C625FC0253AF11CFAFD72ECCBAD6FA42D3E1E0F476F5ECA1CA4B4560D888B10D208CBDCEF0CD4090D70B3921D45311FA9A
bin\System.Reflection.TypeExtensions.dll
md5: F74B2269BD4DBCBBAF2C3C0C1AEE7D06 | sha1: A2F6546BC28CE3367007555FB5077953C2C9ADE9 | sha256: 6F7146CC6D8A1D6B4E7D9B2C50274C85557408843740AA337F0CA1559AB9AC8C | sha512: 8538E962B48892E4B884C2BE86246DBA047B33C5BB17E27DC7C531A0BE27D35D6D33EC2FC6FF58122BEDE78B1E683E1F685C052DC43265FBA4FF944BB31454FA
bin\System.Resources.Reader.dll
md5: 42C5AB80FD50B8FD5D51160BA2DE30EE | sha1: 54618B35821FD74D1E72818235D6991B2D9403B0 | sha256: 9DE784FFE0C1588FD2785FAE08CB3C7EAB2BB87E9BAAD29F9812049ADA365A5B | sha512: 8587DD7CCF17B855A099BB88E5E5CB257108E728F33104EFA224095F098BA395B3512CB6A5B19BB24499968E803AB5A8904A25ABC7A33D586E6BE7241C5B409E
bin\System.Resources.ResourceManager.dll
md5: 578260BE9C608ADC606A3805CBDF994B | sha1: F71DF6AA37A83D619CC74D51A0ECBCCBA13A0C2A | sha256: 5B91F3592680CBDF6B03DAEB17894AAB0A8F4DC0D16D3BF7EB4640DD8D32D3D5 | sha512: 55D250D8DEBE627755E08F5411D344DA80C5F6D57FCC3202636447BF1ADD56D912926C0B73EA7F4CAC5528FE1029255E9FD443A2B1827EE95557BFFA05C1A229
bin\System.Runtime.dll
md5: 8C71E0F24A51947EB033119147EF8F1B | sha1: 6AB10477BAC85C6ACBF7774E65EC66C4C930D398 | sha256: 5ACB6A5BE601DDEFAA5CC3E9062CB7A17B538AFD0FCD396B4CF553288C1B4596 | sha512: 733B01C0E7B62344F7C05C275F21571D99DB706706286DDC987F1313626E454A3651238B198760B5095696FB55013AB47BAC243845B91E195DEEBC1E78CEEB08
bin\System.Runtime.Extensions.dll
md5: 9C421295767D99B178F325D10FA84031 | sha1: B0AE1A5E9E6D493DB5004D1016245D614AA08138 | sha256: 8DF063925AA2C5305C685C2BBC27D7F4A916F36569D85DFA1C68563EF9FCBA75 | sha512: 1464041885E3B1427488E0C446E182D928AF6D9096E5EBAA75FF54EC41838276DD3FE7BE060C337C2FF7EE746252DC7D987349984B27AC0E28311FE3E059FFB1
bin\System.Runtime.Handles.dll
md5: DDA25ED105DA733D53D615810549DB73 | sha1: 3ADFCA45E7792D6D30A21B1AAD547CFB8F27C05E | sha256: F27C1D97E63362338E026D8C917F1FB41230D64F2DD48B47F17A767BED6EA0CB | sha512: AECA3877CBDD290D02DF91CFF2B1943B539AA8AC56ABBF2C0899B80E3C08B0346AAB50118C253F3FD3857EF532250F027D582B0252C2E9F4D3F3C04B9E5F6B2D
bin\System.Runtime.InteropServices.dll
md5: FDD4B253E4FB1B6AEF3074FDFF46201E | sha1: 6A725A9EEE492CDCE6632AAD52BEA3669BA8A9A7 | sha256: E6016B607AAF2CB5A02F12111DBD04360A2E4019FD6876F7A766BB22426C1B03 | sha512: AE1D884FCE02A87AB7D9BDA1A4C145428625FB464338D42418A000E5294802E937EFED4F91370210B567900BFCCCBD9CA01FC1AFBA40170770CA1CFF8C508EF5
bin\System.Runtime.InteropServices.RuntimeInformation.dll
md5: 01A644FDD56032867719B9696D4320C3 | sha1: F2431310BA290CA7361EA90E3782FE19551940A3 | sha256: CE7E6779A430AE44ACB0763C7B3D15B53394FD23BD00ADE11EC625B18726D4DE | sha512: BE5731E19F5057215C6D6B518AC3AFAFC912DD8A4C92D7E6220180B27A2B4F8C4A93E39AAD1C520F3F361A74BE71C5BBA55AA25D6282F086ED9AE6AC98EAB1E6
bin\System.Runtime.Loader.dll
md5: 11D93580889C4F2E94656924908F7D5A | sha1: 9DB0E905C6B466DFD06461E492B9B3F5F272F051 | sha256: 3FE3FC7B9101A2410477F52C68BD17D15DEAA2E0A78B1C242809506131AC8783 | sha512: D45773A036C566826D389D75BA16BFF3DCC6B5F1B588643B34F7F2EF64A11E5A6DD6911A96BAC511FBA2F2A5B16613789E231055DAE27EA45B25CD75931C43C9
bin\System.Runtime.Serialization.Primitives.dll
md5: C62FB79D8D3FD12A1F39D9373230F48C | sha1: 9B8C27DE0AA6D00165585E250C494EDA177ADFB6 | sha256: BA62069DD747D2427524E335250E40314C470B1840E11A03E21EC9E04E2312B9 | sha512: 7FBE66A4FC18100CA6925161EEFB465B4E53D4404AE7A944999B14AEF245D518DBD21B61AD04D3F0DCAD58BD4E9B3FE28A06C24123CDD776C6CCDA1129C2845B
bin\System.Security.Claims.dll
md5: 5483337F7AD08AC92BA59E33FBD2F6CF | sha1: 412B36B07529337990CEEC9FBD0555300D4FC500 | sha256: A62FD92BB9DCADFEAD2F08040984A3CB891698ADBDCED492DC781CB814787E3F | sha512: A9B9E85635921144C5682AE5C36E87761BD726D972A0381E0397F55E1536A8002AE93CC1315C967F333AE53241C90641F5A3C094BE64CC532C8D975F54891A2A
bin\System.Security.Cryptography.Algorithms.dll
md5: 1763FC471753A4561BEAB3B2649CE5F7 | sha1: BF73406FF90F6CC0BC1EE58C82A79952EBCEEA1F | sha256: 2B1066896D2F1C40B467DED4A786902F3A592DCBF8DFEC742ACFCC2DEA87C6CA | sha512: A472422F70F0888EB22C5B3D1AAFBB7169228C1416048314BFC6D9A1EF68B96A4533B965BF10FFCD736A5F02674C6B65E1F843C381F5B5640E611657BC78CB55
bin\System.Security.Cryptography.Cng.dll
md5: D5A51B88B360E549FA54A7156D850E34 | sha1: D674C84532E24FA85FCAE4F22F08BE9573057BE4 | sha256: 90F44A095185A9D31DA5BC924D10A2CF952F61C88F2D2D860F1C0E9B8E801B64 | sha512: ACF2B9D8FFBD9CB43CDC39BAC0A62104DF95E1C1C8469C3B4A7AFB216FDA65082E578ACC12866FFAAB74F6B34F62222CFCAF3B56DE4ECA62C2603A36FFFAA139
bin\System.Security.Cryptography.Csp.dll
md5: AEC463E517993B5AB4D7E37FB5AF5A99 | sha1: F72495103B8869E842A01D959B09AF2DF3A230E6 | sha256: 0491E9EE2C0A74AF5CC0CBF606F0D78104DB3717A7AA3956AB05E93DCAFAE990 | sha512: BDA37B68EAD179B5E83EE4C850ED0017AE7862C70D61BD9708785E5A14DB44C54F9A44BD19191C1714D2C2FDEF15049A63F2243C96DE5064C779B56458FAADAF
bin\System.Security.Cryptography.Encoding.dll
md5: 4E594B8C49659EC7D93AF482D180F495 | sha1: ABFBC4C5B5D2B4AA6F4B8529B244463BDF1994C5 | sha256: 8B0FEDC24845794CCF36E9CFE579F70D4FE4FF48E07B0589098FECE7839A6C04 | sha512: CB4F9A50F0E4EA6FD84506839A48B307BF83A857F735608F75F3D2E44861AAE5D8F2E0AE4658F92F79AD772DE3ED2F827EF8DF995066046F28849831FA155391
bin\System.Reflection.Emit.ILGeneration.dll
md5: D39F0663060BDC7729365F9FC026E0DA | sha1: 64530C5F312B3555410BC43C9DCA7B0602B3BCD8 | sha256: A398A1D9CAFC7BF60710558DA7AF9DE10BC4A88904F5746DC87F681E763F7B5D | sha512: C36FE901AAFA0FDB4720FF89F506AC78E076EC28F6FBFBAE16C6C7C49DE4EC4CC987F50E784454BED860F4E612648236F946C777D2C084F1034FEB9B86903118
bin\System.Xml.XmlDocument.dll
md5: 1D4C7C0828E84D390CCD4BDD365314B2 | sha1: DEE5CDC6E061480B7418E2F06ED1F5A666509571 | sha256: 279A06ABD464B44F33154316C6C044AAD4DB70732C2D49B7240AC39843F59696 | sha512: DD9AA8129B23CE4B8E1812D2AD10427E0E703E5AB6BAF24B973FC220F4A7025AA5C29D5F2E04417185E904166693DC517C443F364A2A6E9F34E24FB938DA4E9C
bin\System.Xml.XPath.dll
md5: C27A3C7BDA82A1B5943D474FDF5BABF9 | sha1: 4522CEFF685D36AE4DFD6B6F0E00190D99DA6C67 | sha256: 0FE832AFACD6319CFD78D389D6D63935EC4D82287453BA307EC9A35C8EFA504D | sha512: 63EFCD49342B8A67C73E9CC9E094096745588D3A27F5936B5064282916FF0F985DF37892BD7BA92FC8C7FC2223E5153338C491635292677D6C6183AC4AABC7D7
bin\System.Xml.XPath.XDocument.dll
md5: 8121688A414C925CD1F48D8E01A75BDE | sha1: D2D02D55AB9DD438CDBEFB88FF187EADBFD5526F | sha256: FA4BC79D5027596B7DF26835CC0B5DB37C893990E13368F650803E90DFC41C82 | sha512: 8EBD0C4CA53FDC98C1A64381BE435E3BB3761692D04D50002A2952ED1CB82E3D797F18119B337CA48F0A1B707FFA894F3BF95EB2F6C58CFE94A86E6DB7AF8516
bin\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
bin\System.Reflection.Emit.Lightweight.dll
md5: 9D68ED74CDB8B568F0C22C75FFF200A4 | sha1: 09D63B53BBC11D737151B98F098E98C6F84FB1E8 | sha256: F52A52C97465429E496DE71F892CCA9E02E45BAF86891352F79864DFB623E06D | sha512: 949E09011793A70E06C1854F75C67980940431216DF297B3A40E8737D0B72B13BF5DC588A985EE9DA90C1AF1909DA9C436C844311709D6166159FE66C8EF7C8A
bin\System.Reflection.Extensions.dll
md5: 1614E32AC59972DE380729CCC6343831 | sha1: 66AAEFF2FA9B9051371D9EA89D282FE974CF9C53 | sha256: 5E98148EFD134A8CEE1382B4C94247FE207ADB7EF473A9C1CF8F57F4A538212A | sha512: C7544B8CCD3940375893E39CD8FF4D46075FFA2A83B5FA05A7D4727BCA62B6060039E12ED0E1ED121C58E39FE1C801BA3D8412B79F1F1F81C724538727574221
bin\System.Security.Cryptography.X509Certificates.dll
md5: A1191C01DAE20ECA9AEFE22B9E85F568 | sha1: B172E5802818ED96421273A74F0F36EC7EAF6422 | sha256: 3D839F68526D3573261E397C6536F398A0C6C6CFF12064E9AC67FDF5729D79C8 | sha512: 4FF42D6AA42E9AC4D2E4E1FCC3DD146741B6117C94D6F853B843EA96DB51AAEF5B18B6CADA24BB4A8F21679F5107184D3F55273C6D39310EBECECD368F4D8A35
bin\System.Security.Principal.dll
md5: 05577F445DD48E814058B459160F1EAC | sha1: 63CDAF1F5E9D9D16F956CDEA6502F1BC80FFBEC9 | sha256: F42E10B651127869B31A12FFCC6ABF8DF550E292B14047B3D1B5C6FF63F80D71 | sha512: FB02D3A1052DDD92456A36B3B1012BF9F87245289FBBA77881503C5C42DC19B454A6FB97132B5C5C25D68AEDF7E0C961DFDE2A195BEF842870DC671B6CF949C6
bin\System.Security.Principal.Windows.dll
md5: E1DE6A69FE6F444102B04733E190127E | sha1: A1E526C25521DC14F800447DF387EA0E2E227ED2 | sha256: A1F5C7E2D4D22042514AD5F31007C875021A494C7D606A15DEFA67000C40944E | sha512: 01088A25A9F32E8A4ECE851FDE3566DEB49C72FF2B23E5519D85C92893FC04C4830114B55E7F901830B8A3299751FCCD8903F8AD7D890891468AA6E12F836CCA
bin\System.Text.Encoding.CodePages.dll
md5: 7E864D924DF671C075BA30F8E1930D00 | sha1: A41F100A20C52953C486B37BBE95D0F56B3E597D | sha256: 44D99AA44D84BBEA9219216C02C9CF5ED52599ED2969E3BB17128E4EEDD7434F | sha512: 5D67F5A3154606646DACADB7A81583435987039DFEB5E2982C3EA553357764C13AD6D662AC3033B6C4340B341CBDA56E3A304B48BA31696747D930E8976C59B1
bin\System.Text.Encoding.dll
md5: E9E41B6ADD2CEBCF5FD3E16F6C64972E | sha1: 3586AC433500DA1CA45E0198DFD1D33D3BB6EF05 | sha256: 11D3388D804DD9A515743093A1B648747ACF385977CD436BB4598C462AB8B876 | sha512: A04A11BE8528EA15F8FDAA3EFC5F7B04ED6269E6C6E132C3B6EFE9E178C3BA2C094C55031585CE10E8C21DB6CE4D3808FF4304B874A87A536F76BFE3E56CC98E
bin\System.Text.Encoding.Extensions.dll
md5: 8A3A8999271E0B9CC8F0E5BEE1FF9B0F | sha1: CCB7111DC5A3D3EDAF7B929B6CEF3A38292A4C88 | sha256: 8BDD9EA80B9B68B59EC47655855C69AFCEC3AE31EF6E7AE528A1CA2A273207F4 | sha512: B4D3620F0BFC4357B9178A43E1F5157B46EBE8559729E181ED477A4BE11D73AE7616AED5536E7B18FFAF0F9EE60408698306E07340BB2CAA8356E7E860628183
bin\System.Text.RegularExpressions.dll
md5: 92CA300EC22CEE0B5213C006D5166B88 | sha1: 0D5569664C2C25A1FC8D9EA2D582E5D299E5AB1C | sha256: 59D507B0F9CF620C29114E46E58BACEEFF980E319CC3E2A47AA97081A86C9D3B | sha512: 6B53340AB078F92721DF7391B0E1C5ED665751AEA2F1BE56E9CF8A5EC000995CEE132F4A99FC0A68C6FCAE0A5862C59BD25504854322AA8ADB6A8E37CB52AFEF
bin\System.Threading.dll
md5: A920E8891B75253F4A81A275191A29AA | sha1: E706450038F0FBD62BDCDAE9543E9C1A6618CD97 | sha256: D43446514536B456AE15EC2A772C3E7BE776FE38B4E31DB0BD1A5916BBF884A5 | sha512: 4D87620B4659C1006F4480D0C9581EEFFE1EB93B42810136CBBD59C15124AC8DFDA0BC188D8F478186E1CBFA0CE746C72AE0CC62CD9EF58FADD8B138D9A295FA
bin\System.Security.Cryptography.OpenSsl.dll
md5: 1B57E014F290884D6AC7DB68A352440E | sha1: 0DBE1D43E2C0E557F651590EC751FBCEA5FC5406 | sha256: 033CCC9C5106ABF196427E5BB3EBCEF13DD97A9DBC9548AF2B708FB9C492DE35 | sha512: 52E5DFDE23FD237481D09A6A530D9925D34C28AC5198AD35459B7109F706D4EF8640D662C1ADDB1756FECD9B176E6DC8CACD43C365C84F69AF644D33DCA6FC29
bin\System.Security.Cryptography.Primitives.dll
md5: 012ACE0A093C0249A601C9F877F6146C | sha1: 056F2DDBCC1F0BFFE7D53C1E70258F62FB459F7D | sha256: F9152D6C04771662BB10A2CCED1F9DA7DA4CE948A89EC4EB40C5C5CF78506E7E | sha512: 2AE63DD8C6F6618556AC17B0359158E6892E9FEE76C980DA0227759468F59256045A99AE49D67DF088DBEC5850BBA0366DCBA031CA3BB561731A12C89212E4CA
bin\System.Security.Cryptography.ProtectedData.dll
md5: 69568BB8F2EDF32194EB20E797B6E0D2 | sha1: DE055F9DB84BBA80ABCE2DBEEBBBE61922703096 | sha256: 8235C323DDAAD8C3DD2AC54131F218ABD5CE0ADFB6C84596EAD0E576CCF25A06 | sha512: AC022792F9E6933A34EAAD15461AD58844DD7FF3127C0984C722155AAC700FA3AA83A0B6DAB99FDC7E24D38AB25244CC3056D676FE9FB508CB26E349B4ADE2D3
bin\System.Threading.Overlapped.dll
md5: 2C33344C78C8969B88CC93E4E4CA8A85 | sha1: E12F55DA7AA6AE225368A0EFB09DC8DB0FE5C9BD | sha256: FCE54E04DB945D8C79EDECD1674DC483516D48D91DB8BF0DEDE852DE15565BC4 | sha512: E14A493DE7C966D561ED03A679E1239AAE89F33D1A8A20AD740B49A28181A7105CE5028422DA95D85B628BD572BEB08B0ECE9A242CA53C6A15EC3DA924AE9274
bin\System.Threading.Tasks.Dataflow.dll
md5: DF8A5B24D61DE287BFB5FC6E674EA9EE | sha1: 260E1A9BDE9B5713D6293440AEF53A56016E71AB | sha256: C5EB013BCAB84F95B7BEF59182939F034494AEB1D91405799886FD33FC400E3D | sha512: 40ECC660D16B1909B5457A5B219FCAFCF0FF548E8D917297D58F06A399977E8554EEC0F2754D7D4FCB4F955E775462BB41701046F3165E21E63E5D6BC05B4E69
bin\System.Threading.Tasks.dll
md5: 07A23282AB6F9D06DDF10C089F57C975 | sha1: D0C093AA63DDF3DBE459F82D9FDFE1CE51AD7C04 | sha256: 883804C1DB2B6F55BF63A820B6107B84B9C16D48722BC8FBD61959D1254DC019 | sha512: BCD77CBD2E293CD026E6E87C5EC5E4A7A20AFA53B23FD9D4EAAB3CE89F2A7CD3A386F3770BCA7E5A70C06534BD6F2E40353E678C82EEF128E15F9C6443196C29
bin\System.Threading.Tasks.Extensions.dll
md5: 6CF8512A754523F74EC59169A3E52FF7 | sha1: 9C75559FADD5062664CB04EC20DBA37FFEFD2E4E | sha256: 2804E53913A5F6B8663F27A902EE8E939559C0991CE02399FF10595392F2340A | sha512: C4A978C1EE4557A7DB9BDA6F172D2ED066832375A1B49585ED275D21664C09A4613CB5FA8BEA3E6C9922EC1D8BD8B04802BAA4B77394A3D7CD06F5414073E3B9
bin\System.Threading.Tasks.Parallel.dll
md5: 2420B1C1E79F8468B186A950B51EC203 | sha1: E2EA2A13D5599E33E488FEA6AE094216AA24266E | sha256: D359B91B6A6F0D76CCAFA255E769EC89D653B248D82B583858E7EBF522BF6A2D | sha512: 617DC3DA4977B70E211F27762DCD682276869D11CE860883C7A47DE9A313EA0083C0DCF32A99DD7417432C30B8747F16440E11779CB2C4531CF3E864E6499E70
bin\System.Threading.Thread.dll
md5: F4F20F249A6DAB196C08961ABD2A994C | sha1: D519E6433F4AEA90B478A13BFB49194D5E7CF3D5 | sha256: 983F72AADC6114FB149E7A3147D7D74DB41F974F8419EC52A79F96F6F6288A89 | sha512: 355313E2457E32737668351BF0DE1113C85AD4162C3B006E4F5B6A4376E217B0533D631CE7AE29374120C5FBE6544AEEF832F05ED29CB98BF2F1BA5FAFCDEA68
bin\System.Threading.ThreadPool.dll
md5: B725F258458ABCAB9201B1493E234975 | sha1: 27840DEE81C83040B86D96609EFDEAA0CB1CB2A2 | sha256: 08637E2B5263239B6156A4FA54D00810DF0594379ACE246436212E4CB4F973D8 | sha512: AB9428E41E355E3463CA6DBBF8C08C207DA8AE33C402774C4A98B6C65C70035C97268DF91D5424F0FEEA3248321D72755EBD8C97FDCECAFE72EDAFD03E778C06
bin\System.Threading.Timer.dll
md5: 67BFB7C21EDC7C931B5A197D792F4A30 | sha1: 04056FA30979B22A01E0CCF567EE125E15D7D0BC | sha256: E4F75BA61BA6CA07DAB5DF8CC5A65503187B6F9BC631A99D690A7BC8AE612E83 | sha512: EAA495ED966C1A952C4B3C83EF19643E79E5E15564F471B78C7D880FDE697B6A81190FFAF4198BFB9A56F586771322DB47C3712337A8AE6F858D3068280D3CFA
bin\System.ValueTuple.dll
md5: 9DF593933196D553EC7D2A114DA74C74 | sha1: 9CB13B73E79B0B5300176EDB4DC30F12023B9725 | sha256: 158A18599E8DABDD292563EA05F885E56F8BF8B23C7EFD292F783FBAC5A71B22 | sha512: 542F0FB3582BA9168031AB95C5882C104CCADBAD6065028556FBAA4105B6456202DFAA6B346C4B74302C9F04F74464E0C12614B4567C5528B6C3469E438D9E1B
bin\System.Xml.ReaderWriter.dll
md5: 03BF696171700A561629859043BBAD1B | sha1: 1E048B8BE4D11868EC302328825B824F475E719C | sha256: 99A4ABFE96751C5EDC45DCA6EDFFB4A53BA15C1B7CB69A40BD64AF56C0C01C39 | sha512: 23B7993095B0CD924B61289BE9117BFCB7157FF6246D3CF3284460D7A1FED9BF1E9FA54D750923656C4C78EA6A44AB9BA7F082AD4CD2777E65537EA102A914DC
bin\System.Xml.XDocument.dll
md5: 72F4BC1CE871844E8713018FB20BA1D0 | sha1: 1D1D5E112388FA451D7FDFF78958243713429467 | sha256: 7010C482A9695D7E17AB5A78BC133C860F0313F100A18CD978C9769E5650B8E9 | sha512: 9D6E99988DD26CFE7CAF44018F3D4D28099572C4E1B36272B6A2557F3115D798F67B93DF6259EC7D2A3DF36124006B05B02E740C7AD80613060FBF9FFA391C27

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
FAKE - F# Make 6.0.0-beta001 51 Wednesday, December 21, 2022 Approved
FAKE - F# Make 6.0.0-alpha004 37 Thursday, November 17, 2022 Exempted
FAKE - F# Make 6.0.0-alpha003 33 Friday, November 11, 2022 Exempted
FAKE - F# Make 6.0.0-alpha002 38 Tuesday, November 1, 2022 Exempted
FAKE - F# Make 6.0.0-alpha001 29 Tuesday, November 1, 2022 Exempted
FAKE - F# Make 5.23.1 295 Friday, October 21, 2022 Approved
FAKE - F# Make 5.23.0 183 Monday, August 1, 2022 Approved
FAKE - F# Make 5.23.0-alpha002 44 Friday, July 22, 2022 Approved
FAKE - F# Make 5.23.0-alpha001 42 Friday, July 15, 2022 Approved
FAKE - F# Make 5.22.0 345 Monday, February 14, 2022 Approved
FAKE - F# Make 5.21.1 155 Sunday, January 30, 2022 Approved
FAKE - F# Make 5.21.0 138 Monday, January 24, 2022 Approved
FAKE - F# Make 5.21.0-alpha004 80 Thursday, January 6, 2022 Approved
FAKE - F# Make 5.21.0-alpha003 132 Thursday, November 11, 2021 Approved
FAKE - F# Make 5.20.4 513 Wednesday, March 31, 2021 Approved
FAKE - F# Make 5.20.4-alpha-1658 105 Tuesday, March 30, 2021 Approved
FAKE - F# Make 5.20.4-alpha-1642 282 Friday, October 23, 2020 Approved
FAKE - F# Make 5.20.3 678 Wednesday, August 5, 2020 Approved
FAKE - F# Make 5.20.2 519 Saturday, June 27, 2020 Approved
FAKE - F# Make 5.20.1 272 Saturday, June 13, 2020 Approved
FAKE - F# Make 5.20.1-alpha-1590 244 Thursday, May 7, 2020 Approved
FAKE - F# Make 5.20.0 425 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1584 207 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1583 219 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1580 182 Monday, May 4, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1566 238 Monday, April 13, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1545 263 Saturday, March 7, 2020 Pending Automated Review
FAKE - F# Make 5.20.0-alpha-1535 239 Friday, March 6, 2020 Pending Automated Review
FAKE - F# Make 5.19.2-alpha-1526 179 Thursday, March 5, 2020 Approved
FAKE - F# Make 5.19.1 590 Sunday, February 9, 2020 Approved
FAKE - F# Make 5.19.0 403 Thursday, December 19, 2019 Approved
FAKE - F# Make 5.19.0-alpha-1473 202 Wednesday, December 18, 2019 Approved
FAKE - F# Make 5.19.0-alpha-1439 232 Monday, December 16, 2019 Approved
FAKE - F# Make 5.18.3 524 Monday, November 4, 2019 Approved
FAKE - F# Make 5.18.2 385 Saturday, October 26, 2019 Approved
FAKE - F# Make 5.18.0 359 Sunday, October 20, 2019 Approved
FAKE - F# Make 5.17.0 349 Saturday, October 12, 2019 Approved
FAKE - F# Make 5.16.2-alpha-1304 306 Tuesday, October 8, 2019 Approved
FAKE - F# Make 5.16.1 718 Sunday, August 25, 2019 Approved
FAKE - F# Make 5.16.0 497 Saturday, August 17, 2019 Approved
FAKE - F# Make 5.16.0-alpha-1228 239 Saturday, August 17, 2019 Approved
FAKE - F# Make 5.15.4 579 Tuesday, July 16, 2019 Approved
FAKE - F# Make 5.15.3 396 Wednesday, July 3, 2019 Approved
FAKE - F# Make 5.15.2 313 Wednesday, July 3, 2019 Approved
FAKE - F# Make 5.15.1 359 Monday, July 1, 2019 Approved
FAKE - F# Make 5.15.1-alpha-1104 332 Friday, June 21, 2019 Approved
FAKE - F# Make 5.15.0 501 Monday, June 17, 2019 Approved
FAKE - F# Make 5.14.1 361 Thursday, June 13, 2019 Approved
FAKE - F# Make 5.14.0 344 Wednesday, June 12, 2019 Approved
FAKE - F# Make 5.14.0-alpha-1085 309 Monday, June 10, 2019 Approved
FAKE - F# Make 5.13.7 509 Sunday, May 12, 2019 Approved
FAKE - F# Make 5.13.5 447 Wednesday, May 1, 2019 Approved
FAKE - F# Make 5.13.3 360 Tuesday, April 30, 2019 Approved
FAKE - F# Make 5.13.2 498 Tuesday, April 23, 2019 Approved
FAKE - F# Make 5.13.1 313 Monday, April 22, 2019 Approved
FAKE - F# Make 5.13.0 447 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.13.0-alpha-987 284 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.13.0-alpha-975 360 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.12.6 693 Sunday, March 17, 2019 Approved
FAKE - F# Make 5.12.4 584 Wednesday, February 27, 2019 Approved
FAKE - F# Make 5.12.2 348 Tuesday, February 26, 2019 Approved
FAKE - F# Make 5.12.1 511 Friday, February 15, 2019 Approved
FAKE - F# Make 5.12.0 992 Saturday, January 12, 2019 Approved
FAKE - F# Make 5.11.1 642 Thursday, December 6, 2018 Approved
FAKE - F# Make 5.11.0 379 Tuesday, December 4, 2018 Approved
FAKE - F# Make 5.10.1 671 Sunday, November 11, 2018 Approved
FAKE - F# Make 5.9.3 645 Monday, October 15, 2018 Approved
FAKE - F# Make 5.9.2 403 Sunday, October 14, 2018 Approved
FAKE - F# Make 5.9.1 338 Saturday, October 13, 2018 Approved
FAKE - F# Make 5.9.0 410 Saturday, October 13, 2018 Approved
FAKE - F# Make 5.8.4 528 Monday, October 8, 2018 Approved
FAKE - F# Make 5.7.2 602 Monday, September 24, 2018 Approved
FAKE - F# Make 5.7.0 342 Sunday, September 23, 2018 Approved
FAKE - F# Make 5.6.2-alpha-494 337 Sunday, September 23, 2018 Approved
FAKE - F# Make 5.6.2-alpha-491 311 Saturday, September 22, 2018 Approved
FAKE - F# Make 5.6.1 535 Sunday, September 9, 2018 Approved
FAKE - F# Make 5.5.1-alpha-403 373 Sunday, August 26, 2018 Approved
FAKE - F# Make 5.5.0 420 Sunday, August 26, 2018 Approved
FAKE - F# Make 5.4.1 450 Thursday, August 16, 2018 Approved
FAKE - F# Make 5.4.0 380 Saturday, August 11, 2018 Approved
FAKE - F# Make 5.3.1 461 Sunday, August 5, 2018 Approved
FAKE - F# Make 5.3.0 482 Monday, July 30, 2018 Approved
FAKE - F# Make 5.2.0 610 Monday, July 9, 2018 Approved
FAKE - F# Make 5.1.0 564 Sunday, June 17, 2018 Approved
FAKE - F# Make 5.0.0 651 Wednesday, June 6, 2018 Approved
FAKE - F# Make 5.0.0-rc018-248 412 Tuesday, June 5, 2018 Exempted
FAKE - F# Make 5.0.0-rc018-244 423 Saturday, June 2, 2018 Exempted
FAKE - F# Make 5.0.0-rc017-237 363 Sunday, May 27, 2018 Exempted
FAKE - F# Make 5.0.0-rc016-225 406 Monday, May 21, 2018 Exempted
FAKE - F# Make 5.0.0-rc015-196 390 Sunday, May 20, 2018 Exempted
FAKE - F# Make 5.0.0-rc014-167 381 Saturday, May 19, 2018 Exempted
FAKE - F# Make 5.0.0-rc013-141 333 Friday, May 18, 2018 Exempted
FAKE - F# Make 5.0.0-rc012-95 403 Saturday, May 12, 2018 Exempted
FAKE - F# Make 5.0.0-rc012-93 336 Saturday, May 12, 2018 Exempted
FAKE - F# Make 5.0.0-rc011 490 Sunday, May 6, 2018 Exempted
FAKE - F# Make 5.0.0-rc010 359 Tuesday, May 1, 2018 Exempted
FAKE - F# Make 5.0.0-rc009 314 Tuesday, May 1, 2018 Exempted
FAKE - F# Make 5.0.0-rc008 416 Thursday, April 26, 2018 Exempted
FAKE - F# Make 5.0.0-rc007 412 Sunday, April 22, 2018 Exempted
FAKE - F# Make 5.0.0-rc006 352 Sunday, April 22, 2018 Exempted
FAKE - F# Make 5.0.0-rc005 419 Sunday, April 15, 2018 Exempted
FAKE - F# Make 5.0.0-rc004 391 Monday, April 9, 2018 Exempted
FAKE - F# Make 5.0.0-rc002 326 Monday, April 9, 2018 Exempted
FAKE - F# Make 5.0.0-rc001 363 Saturday, April 7, 2018 Exempted
FAKE - F# Make 5.0.0-beta029 499 Sunday, March 25, 2018 Exempted
FAKE - F# Make 5.0.0-beta028 328 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta027 385 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta026 356 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta025 437 Monday, March 19, 2018 Exempted
FAKE - F# Make 5.0.0-beta024 614 Friday, March 9, 2018 Exempted
FAKE - F# Make 5.0.0-beta023 498 Sunday, March 4, 2018 Exempted
FAKE - F# Make 5.0.0-beta022 352 Sunday, March 4, 2018 Exempted
FAKE - F# Make 5.0.0-beta021 360 Friday, March 2, 2018 Exempted
FAKE - F# Make 5.0.0-beta020 459 Monday, February 26, 2018 Exempted
FAKE - F# Make 5.0.0-beta019 437 Sunday, February 25, 2018 Exempted
FAKE - F# Make 5.0.0-beta018 419 Monday, February 19, 2018 Exempted
FAKE - F# Make 5.0.0-beta017 360 Sunday, February 18, 2018 Exempted
FAKE - F# Make 5.0.0-beta016 354 Saturday, February 17, 2018 Exempted
FAKE - F# Make 5.0.0-beta015 318 Friday, February 16, 2018 Exempted
FAKE - F# Make 5.0.0-beta014 392 Saturday, February 10, 2018 Exempted
FAKE - F# Make 5.0.0-beta013 445 Saturday, February 3, 2018 Exempted
FAKE - F# Make 5.0.0-beta012 405 Sunday, January 28, 2018 Exempted
FAKE - F# Make 5.0.0-beta011 357 Saturday, January 27, 2018 Exempted
FAKE - F# Make 5.0.0-beta010 647 Saturday, October 28, 2017 Exempted
FAKE - F# Make 5.0.0-beta009 355 Saturday, October 28, 2017 Exempted
FAKE - F# Make 5.0.0-beta008 443 Monday, October 23, 2017 Exempted
FAKE - F# Make 5.0.0-beta007 383 Monday, October 23, 2017 Exempted
FAKE - F# Make 5.0.0-beta006 382 Sunday, October 22, 2017 Exempted
FAKE - F# Make 5.0.0-beta005 500 Monday, October 2, 2017 Exempted
FAKE - F# Make 5.0.0-beta004 391 Monday, October 2, 2017 Exempted
FAKE - F# Make 5.0.0-beta003 474 Tuesday, September 26, 2017 Exempted
FAKE - F# Make 5.0.0-beta002 376 Monday, September 25, 2017 Exempted
FAKE - F# Make 5.0.0-beta001 373 Monday, September 25, 2017 Exempted
FAKE - F# Make 5.0.0-alpha018 355 Sunday, September 24, 2017 Exempted
FAKE - F# Make 5.0.0-alpha017 346 Saturday, September 23, 2017 Exempted
FAKE - F# Make 5.0.0-alpha016 362 Saturday, September 23, 2017 Exempted
FAKE - F# Make 5.0.0-alpha015 630 Sunday, August 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha014 473 Friday, July 28, 2017 Exempted
FAKE - F# Make 5.0.0-alpha013 438 Wednesday, July 26, 2017 Exempted
FAKE - F# Make 5.0.0-alpha012 403 Tuesday, July 25, 2017 Exempted
FAKE - F# Make 5.0.0-alpha011 413 Monday, July 24, 2017 Exempted
FAKE - F# Make 5.0.0-alpha010 563 Monday, June 12, 2017 Exempted
FAKE - F# Make 5.0.0-alpha009 529 Saturday, May 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha004 621 Saturday, April 22, 2017 Exempted
FAKE - F# Make 5.0.0-alpha003 492 Friday, April 21, 2017 Exempted

This package has no dependencies.

Discussion for the FAKE - F# Make Package

Ground Rules:

  • This discussion is only about FAKE - F# Make and the FAKE - F# Make 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 FAKE - F# Make, 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