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,346

Downloads of v 5.0.0-rc017-237:

363

Last Update:

27 May 2018

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-rc017-237 | Updated: 27 May 2018

Downloads:

57,346

Downloads of v 5.0.0-rc017-237:

363

Software Author(s):

  • fsprojects

FAKE - F# Make 5.0.0-rc017-237

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-rc017-237'" --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-rc017-237'" --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-rc017-237'
    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-rc017-237'
  options  '--prerelease'
end

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


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

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


package { 'fake':
  ensure          => '5.0.0-rc017-237',
  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-console-l1-1-0.dll
md5: F4604E259459F5A0D5BE6914A6D4C5FB | sha1: E17011A4C93F88D558A3DD606D99E78FC58837E2 | sha256: BCE066193FEB60B08EDF4CBEB490AAAA5DFFEB8A63A720CADF948748A9AF4B8F | sha512: 3320207D4E2B25C0B77062DF7A7D9761CA04E92D08E1435F2FA0CD040C7631C02BADDC8926475AE109284BC78DA5C16840B439D29A17C47792123350746E2461
bin\api-ms-win-core-datetime-l1-1-0.dll
md5: E205DE17A85B0C3352A6857EF9B3C6DD | sha1: 5FE8A292A9D6653136F612FE2C9B45F2F1B08C96 | sha256: 29B23370474BE0C459CC47863603167CC7191F58318BD29877225FCBF2454215 | sha512: 6279922FCB3ACCBAC15406815DDC557735346245172285CF1C368434B45C9EFBAFDF8215CE6112292BFD4B2C8EB4642A0560CAE17337D6F51D86137C41B12D6C
bin\api-ms-win-core-debug-l1-1-0.dll
md5: 405BB6A7CD56CBF5276C3A8DC631963D | sha1: B4CF791ACE3F6790D45B54A0E6AEB6EBAC748C97 | sha256: F654E56C4299F507BC34271B6BAA29290FD4919B853E17D7470596CAD779F063 | sha512: EC892ECE3EB6A211BB8A03F5C5FEBDC4D2F6667079E38A17E3D59195D519E95B03063A3957D4F1180B232A67A2487F8A2D3D2F9312390FEABBD78FADAD1E9FD4
bin\api-ms-win-core-errorhandling-l1-1-0.dll
md5: 9A4FC3727AAF02C3285B47DF5EE56244 | sha1: F88E1EA0BA66D1615D7E1D53C95D8E8DBE6BEBE0 | sha256: 891CCFEB349116283326262C27B8894B43CDC89B8AFD5BA7D21B891814A68075 | sha512: 3025CCF26BAB11AEC6476C8091968EA040BB37BD9244F6F9DD4AF0FB79D543266420876A64A9FDCDEEA0BB10932E416EF6909D6ECBAF6577D7AE86F17A71E4B9
bin\api-ms-win-core-file-l1-1-0.dll
md5: 6B937FE1EFF0E440B124BBB9334DF34D | sha1: AB3982AB9D46BAA67B1D59728BC6E93C45872B2B | sha256: 71C87C14BC1BD0B20D9F68D4943E93C4C6DDC1B6CF252938BB15FE562552F93E | sha512: 13D58EACBAC1D97F780BDF87A29CEEA047F6AC1002C6D79FC661FE7AA759C654BA14842D840887B41C48A15E06ED8358FC1A7E124DD6123D2145F1254364B82F
bin\api-ms-win-core-file-l1-2-0.dll
md5: EA4AE42721460002DC31515F295AD1C4 | sha1: 8A970D589AA4C178083EE8FB65798A6DDECDC1CF | sha256: 668F91E94E76DB4457184909E6A1AB4655E81A8EF37DC37B4ECFE93146C29A88 | sha512: 5EA1F2FB8BE9FFDF80250B47A440DDB3A41E46A8CE73B6F4834E59CB8D30A1B474F6A33D716EFA43AC7EE52D37AC941F3D51021792B9D1439C831B8A368781B9
bin\api-ms-win-core-file-l2-1-0.dll
md5: AD895B2A99A3EC18F1690BBAC1E2037A | sha1: 19FAB11CA8D2AB4A3C1A863209CBDC77A69E1AED | sha256: A11C772B2451B0C9C706B03381819E4A1DEF3E2FBBBA8362509BBE57DBD5C666 | sha512: D021A5B8451BB8BAC27B4F496A1A25E0A2B2F90C93A7E27850303C5FEB9441F9B926B13EF024C176827E190F2DC04F401205983510DFAB0946674D18994BBE8F
bin\api-ms-win-core-handle-l1-1-0.dll
md5: 0A0084D4B3635E4D8EBAB587DCFCC16C | sha1: 5619483328D58AD6B4D2A8A860DABED1BBDB8091 | sha256: 5089484C8C56AC8E095CADC3DC971DF71EDEB52F856940632821FD37E81AE5CA | sha512: D50989131E3B66335F9972E46D056FF1CE585AC90877C388B35BC66E285D24CC4FBC6688F62543CAF3DF86D3E3D1087BDC2822C9F69B0978E35BB727FE47B58B
bin\api-ms-win-core-heap-l1-1-0.dll
md5: 0AEAF9CE58CBD0AF1E30D03B45C21F81 | sha1: 1EC04DCA23EB4D28861A16D5CCA0D4FEB91E2E32 | sha256: 9A5952C82CBCB1A8ECE9C51C258667D9AB96D13EC6455873999FF0BF78C3CAB0 | sha512: 49F9D30694F6C272E6CB84F71B3801DFF5256D25AC9479ACC6577038783E8B62E36BD0A5A8D07E618830E64749F92DEE0454DD88E132B333D558319FB282EF7A
bin\api-ms-win-core-interlocked-l1-1-0.dll
md5: 13BBF7740AFC464172B00F9638BC4F81 | sha1: A92D84A10B161342FCF0E51AD1C287F9B8890525 | sha256: FF482F69F2183B5FD3C1B45D9006156524B8F8A5F518E33D6E92EA079787E64D | sha512: F572E67384EF07790AAAEC8C8E5CAB6C4E9ED954CAF95033CB31121185780A9CD74A5AB123F744F1AE7F889D8DFC9F8AA3BE70999224FD6A1A37FF27BD8AB0D0
bin\api-ms-win-core-libraryloader-l1-1-0.dll
md5: 8F239C629F09E1B49CF1F03304AB8E69 | sha1: D54DBE7E79A8389B3BAE3273487BC22D4B99781A | sha256: D8D74FB87F94A587582D56934816362B992B712E47C39F13D957058F17724886 | sha512: 130D1BB38C757BBCE7B3C558624028C771FA1198B8D02F0BE1F210A688E5779F8FCBB44154678E898D6FBA4EC31D03664CC84D063816E977361D4ECABAD7911E
bin\api-ms-win-core-localization-l1-2-0.dll
md5: 41A0D67BA3833D230F1229FF058BE057 | sha1: A66FDA76D97D059067F11C3E03869A1B9DA439A0 | sha256: 4F11443A2FA6C714D3E33597F0D08DE4E11A6A2FDB7DE2E4A01ADDD5977665C5 | sha512: A4138CC25AC899059A702F4E078E7662F15B7059089E53B6EB1A78A1BBEBC03704421BDD0A5FCBDFFD48BE2842D587E4E3E56D881F0462F60CDDC5C75FC14F2F
bin\api-ms-win-core-memory-l1-1-0.dll
md5: 536F07C04C316AAC61AB64A492ED9191 | sha1: 0A2F45D0BA54C4FB5DECBB111BBCC9088FC3269E | sha256: 50BF87DA10AE3F442C457E42D6666993B0FCA7C5D4DF521E8CD0959995FBCDDC | sha512: B0EC28B75761494A6121C56811DABC297B8E1EA1D56EE4B06A4488D36C16BD26015F2CE945BF9F74B455864828D321AF5DD8B66F839A047458A98984B9343819
bin\api-ms-win-core-namedpipe-l1-1-0.dll
md5: 87B1814412CDAC3D08FAD8DD3A79EBAD | sha1: CA1946721D023BE9825A5AFAC4364248A56111E1 | sha256: 2F4690B3C2587C0BFB81AB701D50E497406994613151FAF007423C59CA5E2281 | sha512: 999D6EEB454760A422FAB3B1F1D3DE6B99789838FDFE88F78A3AF52842672F67BB4CA05AE157BF68CEE6D96A1F4B0924555DA67A4FFAD9DB9044E411E071D206
bin\api-ms-win-core-processenvironment-l1-1-0.dll
md5: 87E0EF2D5DF6F6E18E6EA9171E3D77E7 | sha1: EB6A1D8D169A683BD1357877AC94BFC98799FEEB | sha256: 9B5A5536AED84D45A00DA1056AF4762FEC805EABA742C6BF2D2FCA60993711BB | sha512: AB0CB69F13793604E7D3BB97D6CEE38CCA0CDB4889C10F228119713902211C0AEB8A493307FAAC614D05A669BD2E172D83C0AED494751D50DE1874D4AA90D379
bin\api-ms-win-core-processthreads-l1-1-0.dll
md5: 066874FF22E1C100DC56C4AE76D2E1C2 | sha1: 896031A6BB845525A6AAB4B56A4DB2805E797A65 | sha256: 979FF0E25E7EA00B8714C9EF2DC8417E69AFAC137EA88F77F8F5A9FFEAA31923 | sha512: 0DCF7F1956C980CDBBA6279C7E4D80F30D85AA37D3507166E0B67F008FCFABD00CB8E27532A362218EF3EBF66D92CA3D97A23D1028B83DFFE36AA6E953F3D83E
bin\api-ms-win-core-processthreads-l1-1-1.dll
md5: F43A8E9CD787B6D91BB29DBB8EB1A4E5 | sha1: 336B61853627E6E64A10FBB930577D30334E615E | sha256: 5BACBBE62E36AD0F6D7742E70361F26BC56A44DBD28CC0291F588420E0C218A6 | sha512: 1FDC1170907346EF0ECED900DE9091136A6626C4BFC8B4416DFEBBE356F35F9C2BE0D2CF6C37E3DD231F3DB8B5A3AFE8973F15A45544C0C1C10682FE03911616
bin\api-ms-win-core-profile-l1-1-0.dll
md5: A616102234EC5AB394FF1C77DA34F6C0 | sha1: 51E54AAFF7F4902B40E657F31775E50000F8240A | sha256: 619E5120BFDD11461672CE8798DA00166E57C528B9AFD80404D2C9CBE87E2C07 | sha512: C360C045D7CCC3D61FFDF35C3253D7F9C59A759A2EE1583519405D2751C12BACC7B26FA383EB53A0156797905F16F26E28293944A0CA31955E03CC07412F822C
bin\api-ms-win-core-rtlsupport-l1-1-0.dll
md5: 0AE94670FBD69ED5F8C923B75CE2C0BD | sha1: ED53B6E73B867E23881244926B0DEA1524515672 | sha256: 6D541B215CFA452E54DC6AF9317A7FC24043FA465EF2B561E0F245A4870B2705 | sha512: 64886E61537830F013A576E40F83D5BC057EFBAB1F3839D5F30A98CBEAAE62F916EF2AFBA6EC9F7CEFDA89907DDA9F704105CAE59CB880F8148F34F3F011562B
bin\api-ms-win-core-string-l1-1-0.dll
md5: 4C745DC13735B4822FF160CB18B61E22 | sha1: CDC23598548A2F1CBF9AC2BA1003B6D6AF0471D0 | sha256: 550D4FC902F25F2A0C09F475B5CECEE43FB3A0A042126479560B0001DB5C4891 | sha512: C4AC87FCD7F2130651C69D939929C013E663EB14502452808AB887A735F3DE34EF28E9C98491C3D427B936D3E53C2840F3195ED6EE62D10730DA29267D78149B
bin\api-ms-win-core-synch-l1-1-0.dll
md5: A0DFBD2A68A979D1152E2B9153BB497B | sha1: 9BE79E52750719AD7B014F803CCF1C8D04C932DE | sha256: BFF7EA28E198C7DBEE45D35FD98AE03696E9E252D46BEC9FF7B7823CBA1681F1 | sha512: 238239FFC9034618DEC8161E15CBDD3B727F1615EF057193C95CED158DD42D876398CFC4854CB790B9DF0EA999F53A980D475ED4827335880D2A47CEA10BD7B5
bin\api-ms-win-core-synch-l1-2-0.dll
md5: 2674310F6FC087862B215B26A5D6DA5B | sha1: 6E226A29124716FB6C5C54CBBF3C2B6F727C9E5A | sha256: E29EAA099BE15958CB65D03D47959CAE2DAC342402856C5F0E4DA672193C329D | sha512: 86964E2A71A32D7FD0C6F3061ECBE66DD10D4938E0F5E3572F962B53107524259F62001BDFF7E4C9173A6B8270F46B76C1037DC69B8343F10E4B4E59BD8D6782
bin\api-ms-win-core-sysinfo-l1-1-0.dll
md5: 1A16AB59D63A2D6A37D3ABD032958631 | sha1: FC76579F19ABB0F24E1AFEA30E1C85FFED6CBC0F | sha256: 81926C2B97A7B01061C5042DA0005F0B64FE9E07852478B2A65E8A8EB5560B1F | sha512: F3808B1566193AA9024B30477A530CD616174E8B310D455A368F89B2BC6C90D998F4CC611030F7801CBBEB3598DDF78968D628C56C44ED1631A3262159AFD4D7
bin\api-ms-win-core-timezone-l1-1-0.dll
md5: FD14FCD1550F17701FBF239645B606FA | sha1: 0D7B1DE80DB94DABAD3CE91D31FDA1A8A1A6CFAB | sha256: A5453CD2B5E98D40CA17DD20A8F5974F29DE7236A076867A3BC3CBCA441BE928 | sha512: 162559D9E6E36BFFE32BE41F75075E711E6947ADAB2AD3BB37CF03E02E787AD5A6F3FB93AF4B6C3F82E1107DC401D32DBD53FCBA39F85839910E852C1109DB5B
bin\api-ms-win-core-util-l1-1-0.dll
md5: 1B5A116DAF8D01FDD0488666803DB17F | sha1: DA47F3A722A75AE04662B5A6C486DEC6AE7379EA | sha256: 48D491B08D395A8AC47CC22A70D1C3F5E84D716AFE2678E825F24492E8FF2ED4 | sha512: 4E4FDF0AEF5DD17F314A4B93AE521FD3E9E6B5C06EE17688DDEB280BA5C42FC72C75DB745B83ECEB740E5A747C0ABE07627457D6CCB0692DC5E65C96BDE96509
bin\api-ms-win-crt-conio-l1-1-0.dll
md5: 93FD7C2F4A8007521E2D1A73B6C21E6F | sha1: FA2F6A112876613C8DB0276644F229F0C13EDAD1 | sha256: 3737D7875668EB4812AB01FE82226D758D480128C76BC234806BFD40694CF048 | sha512: 2390C17625E3377980E0B267E14EF572CF0E88F30A392C7E64A941F2FA98ED9D054B06ADC583FB44CD777D610F7F3CC4D5D26982D297D7DF938263F92AD5A876
bin\api-ms-win-crt-convert-l1-1-0.dll
md5: BC0BE695E63548171105C57D2E9B98E7 | sha1: 0C4506B330487C4B45900B06DFE0A3249F6B9D88 | sha256: D16C5B0E19870E86354B5E6CDC4C81E80777749F6BBE6B675F680CEC0FFAE35D | sha512: 095EF210F55233A0C0EB80FC2D94646DE96CB2E66D1994D631FA82E5A71A5C26B32D33ABC19AC69E64BD3E4789EB1A7595818A90494038EA1771C210CD81CB2A
bin\api-ms-win-crt-environment-l1-1-0.dll
md5: 6BFBF95B7253F32A77BACDF119B678F3 | sha1: 3E3522A9D62940E1E3C0ED6F785AF0B5E3A33600 | sha256: 9FC2486ED5D3FFF78DEB69A7386F4575451D43B67F759AFB056AC66B82041E3D | sha512: 603A5A199A19028B2E496051772517C488FD3FCC05DD6BEC51E15C58DAD2981F7DAB44C3D7E1BE836AFE8F3CF35AC90E574F0062737C353079E33096DBA26F10
bin\api-ms-win-crt-filesystem-l1-1-0.dll
md5: 07BA5F40C64134E5749DF0E8CFEE082E | sha1: 5B872A7EA316B6B3BA604B88045B9B6F34BA4C8B | sha256: 136E5DE4B535AABF6368C06F82339D2EF6C34165661F40433BCEF4EBB90B30FE | sha512: 55B5C739D08F5627D9453709CC0D3D20C3FC08E9A1168F70381B49F8FDC8D91F15DB85DB51D47AAAE612CBE920BB3BA83075E74888B2D62E3A962F181B3D2C12
bin\api-ms-win-crt-heap-l1-1-0.dll
md5: CB4E401CE4FC657CCEBB85F96840CC8B | sha1: 359910F84B5FAF0D194D534C2F631DB5074EA28D | sha256: B90BFFA9E03FFD4ECF1D0D709C60F61D13490E84C4550EF06586BC9B1024ED00 | sha512: 382DF8909DC347DD86696756CD22650EE9BE45146FFDF3B400DA4E370C7C42BCDD4C7FDB807E5A9161211B975B9750EE6CB2B2E2132AAD9D3F90DB9956C2275E
bin\api-ms-win-crt-locale-l1-1-0.dll
md5: B53D96644F5774FE29BA8BB12D6E5F66 | sha1: 260CBBADA90E29EE8E308996E973CE635496D53C | sha256: BE19250A19ED49CE247999D6F0B953EDC2AB7C66B46F1CFBD0C24BE91B84B297 | sha512: E894CAE26EA86325A9012EC2A00086E136AFE64F38F8DA8B3C5EE1CCAD87B1DCF502AD41E050C1ECFBC1C45D2C69A3C35C5322765EF92DDAF00E5E9953F3436F
bin\api-ms-win-crt-math-l1-1-0.dll
md5: 49A69484B524C6F9FD641E015DD15154 | sha1: F6EC9E38D05ED66E8431B909ABA0451EF8C9B540 | sha256: 69C637C0BE7DDFE0690D8C642EC6D0850085617C3C3DDA9531CAC818F06F66E8 | sha512: 802D186F4B580541916C038999C0653765F2CB01C345549F6D927F7688B671B234C7EE05F2A9EBA6C139F25C459E579DA4437EE2AC03ED3FE3EBEF849F178553
bin\api-ms-win-crt-multibyte-l1-1-0.dll
md5: 66F65B59DFF2F8927DC3C8045D8C3A0A | sha1: AE459D1B4D6615587D8B9133EC72162C717287FC | sha256: 414A2BD84B042E2CCF758270647BCFA02D78EB0125C0584DD53F7245481D66B9 | sha512: 4FA559F7E3B423A736081A67C8A19084288A870307547B19B2DCCAD935AFDC56311A2045CEB4791D1CA33A05F7F1F906C21363A2076436431A118667F298D577
bin\api-ms-win-crt-private-l1-1-0.dll
md5: BF090F2290C18F96FD359A6596EA4233 | sha1: BA1FD71AEFFB0E9629CF0DDC5D5E4704627FB0E5 | sha256: 5710E3ED5819CCAA9CF558AB57534BC880C610C06F2A44ADFAFBFAB5BFC38C2B | sha512: 01B3D02B6FB7B6ED7302903D8E2937372A5BA582755CCD73D4FAE2B904F278BD4F38C3C2B0CC12F7DA8AC4DBE204976CFB492D8AFE7497F39B800ADC652BAC64
bin\api-ms-win-crt-process-l1-1-0.dll
md5: E4D419A1897B507E01F75EF88457979F | sha1: 5C769D5E7FCECBF384D09F340E7DCEB951A2F9C6 | sha256: 3A2355A23874342777391B4A06C5CDCD990DED287CC4A27FDF0A071AC3B229AD | sha512: 65EDB60FD6E897EE2AC74976C47A8B55B8C45BB707C8F1134D78517D0883A16634A3C6142F3A925BE0441D594EEBE90149675D38E4A8DF23D6A68F163F60E611
bin\api-ms-win-crt-runtime-l1-1-0.dll
md5: 11218C9F81404A51D1EB6B56BA60F9AB | sha1: ACC303D1B1A5822ED7BCF8F666860A0A7AAFFE91 | sha256: 882DA90B6368056908E9CD21C4719A016E9A3CA597ECA9183892A5806B4A8D4A | sha512: 86928D70AEC7BD7170863C0CDEA110F8A4AA244EFB30577310AD1908D71817B8A2AEB45833D5F710B15DF8FE096234CFB069819B0F2B706CFCD15B5614615929
bin\api-ms-win-crt-stdio-l1-1-0.dll
md5: D67520BFF673CAB4B2ED1AF12DE37A1F | sha1: 752DEACC54982012852E68C37253E95B8BB89AEE | sha256: 44BBB2AEC747E1CBC63FC7C4D2E8C5EC1CA9F9D026835AC2CCB0D60971B6107A | sha512: A960EC529E6889B0F3253869FC72C4F65615141D23F42D808DE99E192B89B15DBC24B1D37812DC89F68576662173F18BC047A46B92598567E8C7E37E51821AB0
bin\api-ms-win-crt-string-l1-1-0.dll
md5: E65F76759251845FA1E6A3CF41B5F231 | sha1: DE4517EB0D8B330D3C2717E786F485150CAF82EC | sha256: 034A8ABF2BF027AD950FDF8FBDF488188C8D02EBA8E160AA95DE376FF1F32FE6 | sha512: AFC7D0A26B2FFEFB43846D621585FC35A2CE280EEF1D046DA5A327F20AE7B023CCEB2BFD64176787AB86A76567E233215427686243E62ECA5DED1AD14B19B5B5
bin\api-ms-win-crt-time-l1-1-0.dll
md5: 1622347A34EBA068916713CF28F46B67 | sha1: 18B3960E88118195F17C4BEF47DF1F7935CEE459 | sha256: 9766C4200B3F51630097FCE8D4F10B33383E663601802ADA72660604876C99E9 | sha512: 90B2398918487E0CCFE8F859AEE6E729A4063A110204644A75649331F10895B6C4DE09E57B6E20E8FAC04AC413F54A82889E602D05F5F42690B87D9C2253FA2E
bin\api-ms-win-crt-utility-l1-1-0.dll
md5: F7AF6BB63229721005C8AC85DC86F5C2 | sha1: 35DDD88FBEA433A7E934AB0CA64907F8B0A85D9A | sha256: FA10F7E2AB54C2EBCD4688E39BC4AF1544FA21B73BE7FD0562B3FF7CFF041F7A | sha512: E4F242EC6204DD481EA5B8B1EDBFB9A7C8B136D9869FB85868325B21248AA170FECDF43075361E188B20A6F138F3760226B4CFB302929E04CD3901E6CB03961A
bin\Chessie.dll
md5: B5AE1290B559675E28546EB000DB94B0 | sha1: 607A156129BDF9954243802DB35BFCF392EA595C | sha256: 1D7ABADBB1231FCAD053C40F17C5C0931F64F517B8F007D6368E7640D31AC069 | sha512: B8EA6028647C758519A556CA249CCE3E108363C15C34819AF647887FAE147CFFCBD9A809919601DE239C057BC9F1DEBA60AB76034EA639E94372A86260F0F237
bin\clrcompression.dll
md5: F5A694ED71D1A4B230B53FC676E570B0 | sha1: 1202256246FF6960E5BDDA62A03EBC87A4F23065 | sha256: 1BD430B26754127C0442073FC77C1C5BBA8EAA82B29025D3FB14D7274DE3B05E | sha512: 03ECCFF38ADF7A2AF0D641FED92D7E92E510893FF49AA677D9C6C46FBE556C18BD2ED30983BFDCF1AEE48B906594ED095632BD06E7A3E3016CDC29DB8B4F9222
bin\clretwrc.dll
md5: 5DBAA297E7CF922CD38A73594D2886B5 | sha1: 925AD0C7E1D47E5B542275CA9B069D34816F5FD0 | sha256: 157B2B9BCBAEF97A9B5BB642BDC423A81F1B58C087C1CFA3E9223C7676DF1D32 | sha512: B73C22A2930E21E6D8800EE7FD5742E89942535187F9D32D0C373B8294BAF58EE54773533F0AB4511057DE0F7AE01A83906124F892C69B88B134BBD044208E79
bin\clrjit.dll
md5: 81B3EEA5E32E3BE92EE61D1B2EB4AE9D | sha1: B4C509FB09DF136B37C3C999ED6378BB4A34AAC0 | sha256: 2191A7899F38066B37C0351D3637CA26F5AE6359C763F4359BA641B092334855 | sha512: 01D339BDD554356BA9AB5F66940A621DC9814BEF54FBEF732B2D0D3C06922A1C851084E43856BD27C65F7C1E0792922E50AC20F555A3C0290D35494F7EBB009A
bin\coreclr.dll
md5: FDFA81939A4648FE09C54A7802E6B245 | sha1: 8F2BFA3182C339630DA502AA28C4279DF7708B71 | sha256: 02484B74E0756E2B256748A1BC6F16A730BB8A1F18282AF55E72605877254A8E | sha512: 391A51826F97131AE5B7D9017BD4BDD3DB9395E0AEBF5F65FA127997B4E0A91D198B00DBEF438146516CACA41E2DE8A3029A7E482AA0AE33BFD106C04D62D1D6
bin\cs\FSharp.Core.resources.dll
md5: C105D738D0DB67B2948BDC448388CBB3 | sha1: D4ED4432CD2EF5B49470C1E5EF397F557E8FC0CD | sha256: 89D4A5B0C6057E66DE01FAFBBF9607A787D878214C264A765AD4CE26F5CE6AD5 | sha512: 9DC84B92F88E5C1C047063070B0CFC8D68D523E2880AECF34949D1C2AAEB274E3014F19CCC43E3916AEA00F4BC064F19753643863832AA78542D159CF6AB78C5
bin\dbgshim.dll
md5: B9244FBC26EABB3213A6553A2786E0C7 | sha1: 1DDC610729520BCB5D98454387793840E2802B67 | sha256: A3990D482D610612103FFA31A587E72E8A2A0B75B4CB0B653E0958DC6F455BD2 | sha512: 07E06E1196F28AE29073758E57ECDD0A4806F30FCA03F770B837EDCF40983CB7CA370FB0D573FC70BB4232A67D8CC5E053DD936DCA0F6F1EE8DDEF6354871E18
bin\de\FSharp.Core.resources.dll
md5: C2AFE221DFDE571FAF869489A300042A | sha1: 8367104A37D4E1B5E3E398175DABB0800EAE921C | sha256: 397557CDB209122FE3129F4B9F8BF87F487EEA9660AA81E97F23F7CBC18A256E | sha512: 4B7B23950BA47B6BD7C21A492207DE60254139DE67B4BF1D8329BDD8061F5C2FB88E3AB6267E26BB3E0B0C50588824010FB7C191764F881B6AFD16C4C65520E1
bin\en\FSharp.Core.resources.dll
md5: 52C9B72A36E5C5274C7C18A55C11CCCA | sha1: 9970A3B6BC3E846216AB8DC863B21A7DE4B79080 | sha256: 615BD01344090C88A7C3A17B4FB75EAE784B46ABFDA86B46C6A4FFB495C4F0ED | sha512: 0AF2242E779472B8E4B47808642CC588B9EBCA16CBFD2DCB271855865C04D8550FD7620F125E379F76CA13D286F296A7836DE91782ECAAF56865966B4C71EE50
bin\es\FSharp.Core.resources.dll
md5: 307681C8687354FB2A83A055B7059FC2 | sha1: 96A74FC2DC46C96FDDF72F56F297482A6B314AAE | sha256: 0EA43EB568FACA08105D4FCF4CF92EB8023FB71E24245789175A09E42642A651 | sha512: 065E9FE0018B7DFADA89A0E2DCFD99BB10E7A97DF8B90985D946CAC48AE950A561695C9D9CFBAAC1897974DA0DCDF9417FEEC7F668428A6EB0646CF26D8F8E10
bin\Fake.Core.CommandLineParsing.dll
md5: 87C7A3F3306344F5A269E4DCEAE0A6E5 | sha1: 0D3F47F79F577C3A5FEA380DB2505BF2E56095FC | sha256: DB05E1684CB27DAECC011F3B509BEBCE76A75A28003DAE0051E0186BAD39BAF2 | sha512: 3E8F2F72FDF1832B9F0830BBAC300C0451FDC10E9DBA067CDEDEDAA732C2920AE82A3D8A61D6476DE30AEE6E5AD629825E52ABFBFC116A070A5DF02823B6CBAC
bin\Fake.Core.CommandLineParsing.pdb
 
bin\Fake.Core.CommandLineParsing.xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>Fake.Core.CommandLineParsing</name></assembly>
<members>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Sdh">
<summary>
 matches the stdin [-]
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Ell">
<summary>
 Marks that the given item can be given multiple times 
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Cmd">
<summary>
 Fixed command, like &quot;push&quot; in &quot;git push&quot;
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Seq">
<summary>
 Sequence of items, if the items are only options then order is ignored.
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Xor">
<summary>
 Either the one or the other
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Arg">
<summary>
 Named/Positional argument
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Req">
<summary>
 Requires the given item
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Sqb">
<summary>
 Marks the given item as optional
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Lop">
<summary>
 long option
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Sop">
<summary>
 Short options
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Ano">
<summary>
 Matches an option annotation [options]
</summary>
</member>
<member name="T:Fake.Core.CommandLineParsing.UsageAst.Eps">
<summary>
 matches nothing?
</summary>
</member>
<member name="P:Fake.Core.DocHelper.OptionBuilder.Lines">
<summary>
 The lines in reversed order
</summary>
</member>
</members>
</doc>
bin\Fake.Core.Context.dll
md5: 4B214EC469D814A3BD4896454F3B2D47 | sha1: 5C423C0DF2242348839BA3EA8707C3260EC7CC6C | sha256: 2F58C9B5BB5EDC760F594B4D7E6308AFB23A60500C2BBBF43E1DCF30E393BF71 | sha512: 25929EF394992DEBC5FA76B46AC8946494B14D62E1E7AD0EF33D69CFF936B4FA963474BE98E14A629465700ECDE01BEDF64089CD41B8FA3AD0EE88BF7CAA8A96
bin\Fake.Core.Context.pdb
 
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 us 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.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v2.0/win7-x86",
    "signature": "4b6f2b27078ad661a48b1d027f2110ad79d5d282"
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v2.0": {},
    ".NETCoreApp,Version=v2.0/win7-x86": {
      "fake/5.0.0-rc017.237+vsts.3977e72853a7146eedc2680b017ff6ff555f02f6": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Core": "4.3.4",
          "Fake.Core.CommandLineParsing": "5.0.0-rc017.237",
          "Fake.Core.Context": "5.0.0-rc017.237",
          "Fake.Runtime": "5.0.0-rc017.237",
          "Microsoft.NETCore.App": "2.0.7",
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "Paket.Core": "5.166.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.4.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "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.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.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.4.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.1",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.ProtectedData": "4.4.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",
          "System.Xml.ReaderWriter": "4.3.1",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.1",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
        },
        "runtime": {
          "fake.dll": {}
        }
      },
      "Chessie/0.6.0": {
        "dependencies": {
          "FSharp.Core": "4.3.4",
          "NETStandard.Library": "2.0.1"
        },
        "runtime": {
          "lib/netstandard1.6/Chessie.dll": {
            "assemblyVersion": "0.6.0.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "FParsec/1.0.3": {
        "dependencies": {
          "FSharp.Core": "4.3.4",
          "NETStandard.Library": "2.0.1"
        },
        "runtime": {
          "lib/netstandard1.6/FParsec.dll": {
            "assemblyVersion": "1.0.3.0",
            "fileVersion": "1.0.3.0"
          },
          "lib/netstandard1.6/FParsecCS.dll": {
            "assemblyVersion": "1.0.3.0",
            "fileVersion": "1.0.3.0"
          }
        }
      },
      "FSharp.Compiler.Service/22.0.3": {
        "dependencies": {
          "FSharp.Core": "4.3.4",
          "Microsoft.DiaSymReader": "1.2.0",
          "Microsoft.DiaSymReader.PortablePdb": "1.4.0",
          "System.Collections.Immutable": "1.4.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Metadata": "1.5.0",
          "System.Reflection.TypeExtensions": "4.4.0",
          "System.Runtime.Loader": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.1"
        },
        "runtime": {
          "lib/netstandard2.0/FSharp.Compiler.Service.dll": {
            "assemblyVersion": "22.0.3.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "FSharp.Core/4.3.4": {
        "runtime": {
          "lib/netstandard1.6/FSharp.Core.dll": {
            "assemblyVersion": "4.4.3.0",
            "fileVersion": "2018.2.9.3"
          }
        },
        "resources": {
          "lib/netstandard1.6/cs/FSharp.Core.resources.dll": {
            "locale": "cs"
          },
          "lib/netstandard1.6/de/FSharp.Core.resources.dll": {
            "locale": "de"
          },
          "lib/netstandard1.6/en/FSharp.Core.resources.dll": {
            "locale": "en"
          },
          "lib/netstandard1.6/es/FSharp.Core.resources.dll": {
            "locale": "es"
          },
          "lib/netstandard1.6/fr/FSharp.Core.resources.dll": {
            "locale": "fr"
          },
          "lib/netstandard1.6/it/FSharp.Core.resources.dll": {
            "locale": "it"
          },
          "lib/netstandard1.6/ja/FSharp.Core.resources.dll": {
            "locale": "ja"
          },
          "lib/netstandard1.6/ko/FSharp.Core.resources.dll": {
            "locale": "ko"
          },
          "lib/netstandard1.6/pl/FSharp.Core.resources.dll": {
            "locale": "pl"
          },
          "lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll": {
            "locale": "pt-BR"
          },
          "lib/netstandard1.6/ru/FSharp.Core.resources.dll": {
            "locale": "ru"
          },
          "lib/netstandard1.6/tr/FSharp.Core.resources.dll": {
            "locale": "tr"
          },
          "lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll": {
            "locale": "zh-Hans"
          },
          "lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll": {
            "locale": "zh-Hant"
          }
        }
      },
      "Microsoft.DiaSymReader/1.2.0": {
        "dependencies": {
          "Microsoft.Net.Compilers": "2.8.0",
          "NETStandard.Library": "2.0.1"
        },
        "runtime": {
          "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
            "assemblyVersion": "1.2.0.0",
            "fileVersion": "1.2.0.62216"
          }
        }
      },
      "Microsoft.DiaSymReader.PortablePdb/1.4.0": {
        "dependencies": {
          "Microsoft.DiaSymReader": "1.2.0",
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.4.0",
          "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.5.0",
          "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": {
            "assemblyVersion": "1.4.0.0",
            "fileVersion": "1.4.0.62217"
          }
        }
      },
      "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
        "dependencies": {
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Reflection.TypeExtensions": "4.4.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
            "assemblyVersion": "2.0.4.0",
            "fileVersion": "2.0.4.0"
          }
        }
      },
      "Microsoft.Net.Compilers/2.8.0": {},
      "Microsoft.NETCore.App/2.0.7": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostPolicy": "2.0.7",
          "Microsoft.NETCore.Platforms": "2.0.2",
          "NETStandard.Library": "2.0.1",
          "runtime.win-x86.Microsoft.NETCore.App": "2.0.7"
        }
      },
      "Microsoft.NETCore.DotNetAppHost/2.0.7": {
        "dependencies": {
          "runtime.win-x86.Microsoft.NETCore.DotNetAppHost": "2.0.7"
        }
      },
      "Microsoft.NETCore.DotNetHostPolicy/2.0.7": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.0.7",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy": "2.0.7"
        }
      },
      "Microsoft.NETCore.DotNetHostResolver/2.0.7": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.0.7",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver": "2.0.7"
        }
      },
      "Microsoft.NETCore.Platforms/2.0.2": {},
      "Microsoft.NETCore.Targets/2.0.0": {},
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "System.Security.AccessControl": "4.4.1",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "Mono.Cecil/0.10.0": {
        "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.1",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Mono.Cecil.Mdb.dll": {
            "assemblyVersion": "0.10.0.0",
            "fileVersion": "0.10.0.0"
          },
          "lib/netstandard1.3/Mono.Cecil.Pdb.dll": {
            "assemblyVersion": "0.10.0.0",
            "fileVersion": "0.10.0.0"
          },
          "lib/netstandard1.3/Mono.Cecil.Rocks.dll": {
            "assemblyVersion": "0.10.0.0",
            "fileVersion": "0.10.0.0"
          },
          "lib/netstandard1.3/Mono.Cecil.dll": {
            "assemblyVersion": "0.10.0.0",
            "fileVersion": "0.10.0.0"
          }
        }
      },
      "NETStandard.Library/2.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2"
        }
      },
      "Newtonsoft.Json/11.0.2": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "11.0.0.0",
            "fileVersion": "11.0.2.21924"
          }
        }
      },
      "Paket.Core/5.166.0": {
        "dependencies": {
          "Chessie": "0.6.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "System.Security.Cryptography.ProtectedData": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/Paket.Core.dll": {
            "assemblyVersion": "4.4.1.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.win-x86.Microsoft.NETCore.App/2.0.7": {
        "runtime": {
          "runtimes/win-x86/lib/netcoreapp2.0/Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/Microsoft.VisualBasic.dll": {
            "assemblyVersion": "10.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/SOS.NETCore.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.AppContext.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Buffers.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Collections.Concurrent.dll": {
            "assemblyVersion": "4.0.14.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Collections.Immutable.dll": {
            "assemblyVersion": "1.2.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Collections.Specialized.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Collections.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.Annotations.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.Composition.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ComponentModel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Configuration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Console.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Data.Common.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Data.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.Contracts.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.Debug.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.2.1",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.Process.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.Tools.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Diagnostics.Tracing.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Drawing.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Drawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Dynamic.Runtime.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Globalization.Calendars.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Globalization.Extensions.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Globalization.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.Compression.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.FileSystem.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.IsolatedStorage.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.Pipes.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.IO.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Linq.Expressions.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Linq.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Linq.Queryable.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Linq.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Http.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.HttpListener.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Mail.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.NameResolution.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.NetworkInformation.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Ping.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Requests.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Security.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.ServicePoint.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.Sockets.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.WebClient.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.WebProxy.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.WebSockets.Client.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.WebSockets.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Net.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Numerics.Vectors.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Numerics.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ObjectModel.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Private.DataContractSerialization.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Private.Uri.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Private.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Private.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Emit.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Extensions.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "4.1.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Reflection.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Resources.Reader.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Resources.ResourceManager.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Resources.Writer.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Extensions.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Handles.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.InteropServices.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Loader.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Numerics.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Runtime.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Claims.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "4.3.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "4.3.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.OpenSsl.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.Principal.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.SecureString.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Security.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ServiceModel.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ServiceProcess.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Text.Encoding.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Overlapped.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {
            "assemblyVersion": "4.6.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Tasks.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Thread.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.ThreadPool.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.Timer.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Threading.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Transactions.Local.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Transactions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.ValueTuple.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Web.HttpUtility.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Windows.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.XDocument.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.XPath.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.XmlDocument.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/System.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/WindowsBase.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/mscorlib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/lib/netcoreapp2.0/netstandard.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "4.6.26403.3"
          }
        },
        "native": {
          "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {
            "fileVersion": "14.0.24210.0"
          },
          "runtimes/win-x86/native/System.Private.CoreLib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/api-ms-win-core-console-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-datetime-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-debug-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l1-2-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l2-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-handle-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-heap-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-interlocked-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-localization-l1-2-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-memory-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-processthreads-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-processthreads-l1-1-1.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-profile-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-string-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-synch-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-synch-l1-2-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-timezone-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-core-util-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-conio-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-convert-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-environment-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-filesystem-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-heap-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-locale-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-math-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-multibyte-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-private-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-process-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-runtime-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-stdio-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-string-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-time-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/api-ms-win-crt-utility-l1-1-0.dll": {
            "fileVersion": "10.0.14393.33"
          },
          "runtimes/win-x86/native/clrcompression.dll": {
            "fileVersion": "4.6.26403.3"
          },
          "runtimes/win-x86/native/clretwrc.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/clrjit.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/coreclr.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/dbgshim.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/mscordaccore.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/mscordaccore_x86_x86_4.6.26328.01.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/mscordbi.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/mscorrc.debug.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/mscorrc.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/sos.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/sos_x86_x86_4.6.26328.01.dll": {
            "fileVersion": "4.6.26328.1"
          },
          "runtimes/win-x86/native/ucrtbase.dll": {
            "fileVersion": "10.0.14393.33"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.0.7": {
        "native": {
          "runtimes/win-x86/native/apphost.exe": {
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.0.7": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.0.7"
        },
        "native": {
          "runtimes/win-x86/native/hostpolicy.dll": {
            "fileVersion": "2.0.26407.1"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.0.7": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.0.7"
        },
        "native": {
          "runtimes/win-x86/native/hostfxr.dll": {
            "fileVersion": "2.0.26407.1"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.4.0": {},
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Collections.Immutable/1.4.0": {},
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Process/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.4.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"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.TraceSource/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "System.Buffers": "4.4.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.1"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.4.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.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"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Metadata/1.5.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.4.0": {},
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Loader/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.4.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "System.Security.Principal.Windows": "4.4.1"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "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.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "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.1",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.4.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        }
      },
      "System.Security.Principal.Windows/4.4.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Thread/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.ThreadPool/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.1": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.1"
        }
      },
      "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.1"
        }
      },
      "Fake.Core.CommandLineParsing/5.0.0-rc017.237": {
        "dependencies": {
          "FParsec": "1.0.3",
          "FSharp.Core": "4.3.4",
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.4.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "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.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.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.4.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.1",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "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",
          "System.Xml.ReaderWriter": "4.3.1",
          "System.Xml.XDocument": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.1",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
        },
        "runtime": {
          "Fake.Core.CommandLineParsing.dll": {}
        }
      },
      "Fake.Core.Context/5.0.0-rc017.237": {
        "dependencies": {
          "FSharp.Core": "4.3.4",
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.4.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "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.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.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.4.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.1",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "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",
          "System.Xml.ReaderWriter": "4.3.1",
          "System.Xml.XDocument": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.1",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
        },
        "runtime": {
          "Fake.Core.Context.dll": {}
        }
      },
      "Fake.Runtime/5.0.0-rc017.237": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Compiler.Service": "22.0.3",
          "FSharp.Core": "4.3.4",
          "Fake.Core.Context": "5.0.0-rc017.237",
          "Microsoft.DiaSymReader": "1.2.0",
          "Microsoft.DiaSymReader.PortablePdb": "1.4.0",
          "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
          "Microsoft.NETCore.Platforms": "2.0.2",
          "Microsoft.NETCore.Targets": "2.0.0",
          "Microsoft.Net.Compilers": "2.8.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.4.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "Paket.Core": "5.166.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.4.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Collections.Immutable": "1.4.0",
          "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.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.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Metadata": "1.5.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.4.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.Security.AccessControl": "4.4.1",
          "System.Security.Cryptography.Algorithms": "4.3.1",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.ProtectedData": "4.4.0",
          "System.Security.Principal.Windows": "4.4.1",
          "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",
          "System.Xml.ReaderWriter": "4.3.1",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.1",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
        },
        "runtime": {
          "Fake.Runtime.dll": {}
        }
      }
    }
  },
  "libraries": {
    "fake/5.0.0-rc017.237+vsts.3977e72853a7146eedc2680b017ff6ff555f02f6": {
      "type": "project",
      "serviceable": false,
      "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"
    },
    "FParsec/1.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0VoZapcSUHsNCixYawx8RFZHJMRVykaKsks5OOUXRP0bZCpr7UCP6kIjbVFGHIqqBGPtICUMy7j521sH0ZcmrQ==",
      "path": "fparsec/1.0.3",
      "hashPath": "fparsec.1.0.3.nupkg.sha512"
    },
    "FSharp.Compiler.Service/22.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2vK3OKDTd9BotFKuaMvZmj/QinkM2WH+nKqmMg2YqASx7ZPKoN0dNGGKO1MVrNtb6NzKzXSVu8f4H4StJi10Rg==",
      "path": "fsharp.compiler.service/22.0.3",
      "hashPath": "fsharp.compiler.service.22.0.3.nupkg.sha512"
    },
    "FSharp.Core/4.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-u2UeaUl1pt/Lktdpzq3AsaRmOV1mOiQaSbZgYqQQYuqBSjnILWemetff4xMZIAZi0241jlIkcrJQsU5PlLwIJA==",
      "path": "fsharp.core/4.3.4",
      "hashPath": "fsharp.core.4.3.4.nupkg.sha512"
    },
    "Microsoft.DiaSymReader/1.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7TUxW72Hk7Ib/pimwUCix+4x56PKTu1c5uOuYnVYKYiocSKUIWbTBmiTTGgdUSqWd2+sRXrch8I8Vxo+iy1Puw==",
      "path": "microsoft.diasymreader/1.2.0",
      "hashPath": "microsoft.diasymreader.1.2.0.nupkg.sha512"
    },
    "Microsoft.DiaSymReader.PortablePdb/1.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CFqkxixBlcj+1VSgnkQNlNAuo1v9oloy4moQicnDZA2nZsXwrBmxDZsInKNL88ELq0i8IjFbP1hr/dD43fBqGA==",
      "path": "microsoft.diasymreader.portablepdb/1.4.0",
      "hashPath": "microsoft.diasymreader.portablepdb.1.4.0.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
      "path": "microsoft.dotnet.platformabstractions/2.0.4",
      "hashPath": "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512"
    },
    "Microsoft.Net.Compilers/2.8.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+SPbi7qWhCZqzYBiHFnOxoH073XzNyI18T9KOpaoPW4xI8aUqkCcob+xAS7xsV2vfC/lx7QGJO+8/s89zvA3Jg==",
      "path": "microsoft.net.compilers/2.8.0",
      "hashPath": "microsoft.net.compilers.2.8.0.nupkg.sha512"
    },
    "Microsoft.NETCore.App/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Cihy0s1kOr4qsPBrIujLVQN7RbaRK3NkhfntGox3tuyAw43hStebFligF+iznk7Ry2QfTW49qQOVklNxG+cqHg==",
      "path": "microsoft.netcore.app/2.0.7",
      "hashPath": "microsoft.netcore.app.2.0.7.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetAppHost/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2DoW/Z+QhZJkOo/Cp0GXv34598SqwZ+TfmydkPL/vTUd6nqCoBAEOkycZ10jmAj4jENRGR7GsBMlbWbiitbMgg==",
      "path": "microsoft.netcore.dotnetapphost/2.0.7",
      "hashPath": "microsoft.netcore.dotnetapphost.2.0.7.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostPolicy/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lsi5+I2qLirSjUyrQTpgzqka3NRad01jwDKkEdmZNjUGQ8Dic0selG7IP90hjbqi68JtLsvQE/6x4hqSmPHbcw==",
      "path": "microsoft.netcore.dotnethostpolicy/2.0.7",
      "hashPath": "microsoft.netcore.dotnethostpolicy.2.0.7.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostResolver/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JvVMc1P8hpKI0EiCXcheM5v68KOMnJM5I0LnbUK5U/0DUw1i4KfIMN8YoaS1vnr21M5o9ly08LOODh8z2jS8dw==",
      "path": "microsoft.netcore.dotnethostresolver/2.0.7",
      "hashPath": "microsoft.netcore.dotnethostresolver.2.0.7.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/2.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gID2fXOUeeLy8EOlYDchQITTwhsTAjZ83M156Yci4XK/kNvc+TNl7O/rf72+Xh0IayfNoDcf57Vevmkg689Faw==",
      "path": "microsoft.netcore.platforms/2.0.2",
      "hashPath": "microsoft.netcore.platforms.2.0.2.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-odP/tJj1z6GylFpNo7pMtbd/xQgTC3Ex2If63dRTL38bBNMwsBnJ+RceUIyHdRBC0oik/3NehYT+oECwBhIM3Q==",
      "path": "microsoft.netcore.targets/2.0.0",
      "hashPath": "microsoft.netcore.targets.2.0.0.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
      "path": "microsoft.win32.registry/4.4.0",
      "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
    },
    "Mono.Cecil/0.10.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nHSF7wvyZRPAGXl49zgULPFubXHpsXlOH9RXFRUKb0TX0/tKkKljci6yBszVNI09PIDNQ8IP9WJTYvmBkMbbHw==",
      "path": "mono.cecil/0.10.0",
      "hashPath": "mono.cecil.0.10.0.nupkg.sha512"
    },
    "NETStandard.Library/2.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oA6nwv9MhEKYvLpjZ0ggSpb1g4CQViDVQjLUcDWg598jtvJbpfeP2reqwI1GLW2TbxC/Ml7xL6BBR1HmKPXlTg==",
      "path": "netstandard.library/2.0.1",
      "hashPath": "netstandard.library.2.0.1.nupkg.sha512"
    },
    "Newtonsoft.Json/11.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
      "path": "newtonsoft.json/11.0.2",
      "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
    },
    "Paket.Core/5.166.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bbSvX7plsUrV8/3TdJZGrnQvOYZzGE7erMl2G1qAFqgLxYUPhfXEaD0t21SVRbyGnOa2lc5/ReKDGafcdmHKBA==",
      "path": "paket.core/5.166.0",
      "hashPath": "paket.core.5.166.0.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+XRQ372qQAkjJf1TYv1BRLGxPfT4gbFtwAbpuJ04ReqqYWove1yJyY/vSHXxoIlMJHdnPtyyzIJvYEQNGzUnEg==",
      "path": "runtime.native.system.io.compression/4.3.1",
      "hashPath": "runtime.native.system.io.compression.4.3.1.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.1",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.App/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kagoMK/fVrrrTgt0pzDY85JfqsPRn0e9R1c49wa+T//XETCk144YSynNMp4ijvvkaTSTUEhteL0+v8RdaLO2Ww==",
      "path": "runtime.win-x86.microsoft.netcore.app/2.0.7",
      "hashPath": "runtime.win-x86.microsoft.netcore.app.2.0.7.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-84m81mleZBHDR+dtHtwG+o5OPVLMYDPoxl+r1WYWLrICFd8fmcDgWf4vXk/WVf5VknMNvfbnzXCm4v9WxaBPCQ==",
      "path": "runtime.win-x86.microsoft.netcore.dotnetapphost/2.0.7",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnetapphost.2.0.7.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vSpjmMZCS9MPlLrZ0+b55ntMUXMx0yPmrPn2naP1X08jOF1GocEANw1N10ykvPZO0WemvmKQc2XkLvys77GMJA==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostpolicy/2.0.7",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostpolicy.2.0.7.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.0.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6q5OzcU0IGAnvMmdQoCn/w9jEkpgUeTAxi121dr+efGJRy6gQfAdktuI7hyEWbTz9nz8rnctAvAHuVgvUR1LIw==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostresolver/2.0.7",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostresolver.2.0.7.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.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
      "path": "system.buffers/4.4.0",
      "hashPath": "system.buffers.4.4.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.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-71hw5RUJRu5+q/geUY69gpXD8Upd12cH+F3MwpXV2zle7Bqqkrmc1JblOTuvUcgmdnUtQvBlV5e1d6RH+H2lvA==",
      "path": "system.collections.immutable/1.4.0",
      "hashPath": "system.collections.immutable.1.4.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.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.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.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.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression.ZipFile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.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.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
      "path": "system.reflection.metadata/1.5.0",
      "hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==",
      "path": "system.reflection.typeextensions/4.4.0",
      "hashPath": "system.reflection.typeextensions.4.4.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.Security.AccessControl/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-M6JMYDOGldrqRp3GrGIt5KRxzmEqh1OqBImgtw8B8PejkY3UOkMpwhpera76Thrv7nr0SDc+jXwv45isNDMbrg==",
      "path": "system.security.accesscontrol/4.4.1",
      "hashPath": "system.security.accesscontrol.4.4.1.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
      "path": "system.security.cryptography.algorithms/4.3.1",
      "hashPath": "system.security.cryptography.algorithms.4.3.1.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.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.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
      "path": "system.security.cryptography.protecteddata/4.4.0",
      "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-h3ah5DRH1dD0WbtLVZrLAUkkMYL9N3gQ/qrJuc65GzyR4hsaPD0YjEwmpu5+2tNT8BQktW5xw7KlgoY83jqd7w==",
      "path": "system.security.principal.windows/4.4.1",
      "hashPath": "system.security.principal.windows.4.4.1.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.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.Xml.ReaderWriter/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
      "path": "system.xml.readerwriter/4.3.1",
      "hashPath": "system.xml.readerwriter.4.3.1.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"
    },
    "Fake.Core.CommandLineParsing/5.0.0-rc017.237": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Core.Context/5.0.0-rc017.237": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Runtime/5.0.0-rc017.237": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
bin\fake.dll
md5: E22C68C997725728A9BA301F29946951 | sha1: 7209EDAED6DEF095985C85A7E683E683AE5AF753 | sha256: 2D509583F4D0C100B7CB98850178858B9145ADC8F8964825CD3C9FFFCC1462F6 | sha512: 94E7C2AF5151B9176C5802F9B1DB33846BC973AFA29EB79150FA7C7F7FA92B527FEB7BA74830FBDE42643489E6D4F02792BA8031F3D4C815C87E7EB6554135A8
bin\fake.exe
md5: 07C4D698584F40E58C3D2618C3844271 | sha1: 7711CDCB9CF8B83A781DA049705C6B73AECD10F4 | sha256: 55DEDB1124538E43E8FAE4C8F970DCB0A5753D4D346FFAD57D2A57FA75C69D51 | sha512: 54BC95AEDECE459A398EAB616E6B90F01D6B189FC9116A4B82166BA922B222A3DFF0CBE3EA02257821D48EE95FC18DD03478B3E688079CF0BB6EB69B9641B035
bin\fake.pdb
 
bin\Fake.Runtime.dll
md5: 440E0EC4878DCC69B70C12CD4C6C1C1E | sha1: FC66B26E99DF4F2D53EDF0C70F7E6071182A26AF | sha256: 4789D38ECF4E6526B093D7C844EE88076D0F4D4E3C181BF53BC751CA1D939C7F | sha512: 0EC7DAD7659C6D6FF0E9E7C325C8881B1722FDFBCB2F1255C4252BDE5E7EF4ADDABF16012EAB01BBAEDDD38B3C768941DBC41A8C0CEC36C0DC0C85F04BC7F03E
bin\Fake.Runtime.pdb
 
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.WithCd``1(Yaaf.FSharp.Scripting.IFsiSession,System.String,Microsoft.FSharp.Core.FSharpFunc{Microsoft.FSharp.Core.Unit,``0})">
<summary>
 Same as Cd but takes a function for the scope.
</summary>
</member>
<member name="M:Yaaf.FSharp.Scripting.Extensions.IFsiSession.Cd(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.FSharpParser.InterestingItem">
<summary>
 Parse #r references for `paket:` lines
</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\fake.runtimeconfig.json
{
  "runtimeOptions": {}
}
bin\fake.xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>fake</name></assembly>
<members>
<member name="T:Cli">
<summary>
 New Command line interface for FAKE that utilises Argu.
</summary>
</member>
</members>
</doc>
bin\FParsec.dll
md5: B508930BA7F4E87F295EC5057E522255 | sha1: E160F283C4C86FFD6B115D1B9B7C7C7216372F46 | sha256: C5E63264FF4D209E0C45B93F7BB8732FA5050F21B5C5944B740D9743052C87A2 | sha512: 186B7EB6BE544C1E12A9DC1275CBC9E199CBAABC8E8B1FF7CE8920010290585A51EC3C8100329E6160F517B033CC45BF5AF2F61299AA981AA7FD5E7487E513B2
bin\FParsecCS.dll
md5: 9429089F36FDBCE49285742E22418923 | sha1: C4C21B40950FCAD7648BBEC2918FCA1B528E0F29 | sha256: 69AB2AE85FEB972C3140B01E1B1FFEDE6D0E037651E89F13281A978098DA5E07 | sha512: C8A7C1997A495606A68BB4FFA54E5BAC94C249A59C7960F5A1BF129F285A17C5AC81F00A111B0FBBE9A0D4CCB16B965CBB3F37FCA9C911FE16FF73B0723B9125
bin\fr\FSharp.Core.resources.dll
md5: B7ACC35C7358F8FA57CCADC4455A0814 | sha1: AE17A4A42B122E486E576B19DF2EEEA753C5F6B9 | sha256: E46E4C9C9DA372512BB6F71EE751A1E5AF3D0DAC8AA1346B45B7686B6F21A55F | sha512: 7DBD25F691AE5A7D2E8EF2FA3BB4EA7505636C4410AD976ED6538A43254E1C56900C41BE99423505B746FB95CEF5A6E44170323DB3A5EF7E44EEF2B9EFEB826C
bin\FSharp.Compiler.Service.dll
md5: 511756B408B03B1D6BC35EDA7456B8D9 | sha1: 30DCC6B224ACE630B158FB2FC53EE0570DAC3FB0 | sha256: 90E0ABDF6BFD6FAEE7C36CB53981FA18BB07EBD286D48ADC8E8B8658D2083C9B | sha512: D00FCCEF9B6546A6F04ED9FDAFF3E2A095EBF17AE9CD715796876343F38CC55FDFA63E4ADD05242B0DB33FD0378833999B41A931845266E05EA2898226E37446
bin\FSharp.Core.dll
md5: 6124B24FBD07195A67447CB5579A398D | sha1: A0699D8D8E779BF4D2E940F1D87AE9149CC49D37 | sha256: 5CEE76754FD70B5E7BD5C892668F2D932DED70C9F51A7788A97F5884F44E59A0 | sha512: 6F7CD81EC175635639E9088A0D466EDCE8A7E0F0CCCE6D90E7C78E2C4E9071C3F76D9A05C2621E92943DC9CBBCB71E79E348687BF0C579EF9272469289B4D9D3
bin\hostfxr.dll
md5: 841F129B0A5A08B789A3BD3D3C2C9386 | sha1: 7F3FD6E6B310C6F17F9084D2CB9CCB97FB260C05 | sha256: 060A7EFE873DF819B7B0432EBDF7EBD940AD30E517D51DA5CE2BC7D5DC47070F | sha512: 8D2C4B87DB7AEAA032DD3AA88EA16153751361286A0F22DE1DF07170722D37D87236A96437A31714E49810D395310EC883B45CCEE85650CD9F59DF113CF9D502
bin\hostpolicy.dll
md5: 319F07CEB276039FFD3397E6FBF86134 | sha1: D353D0115628CC1A8EE1EE785246EC88B80F5FCC | sha256: 7D6DD42A0FEBCC4C939BC0C5D390BE77D128E01E4171D82AAC3060B34943F978 | sha512: 4472709DADFA30EF06CCB46A2131C781D703F8D7321E392FCA3C94CAECCF98528FC93E8D51DBB538E3AF4792F678FDBFC55F735C0AAA80D978E375A56ADA3182
bin\it\FSharp.Core.resources.dll
md5: 945D55C9A9D980715ECD04D360952C95 | sha1: C509E04BE4257A90202701C909C8AC625656E328 | sha256: CFEF6401990EF9CEA72D6444236E822540C88E641337EF0EAA920D3D3CF99E6D | sha512: DF7DF3206C1A0798CBA33CE729DE9B51E7DDE2D1532FD203FD4206271E8C032A92E9674CA8DB3E51EA75C31F8AD2B62363107C648F39A66A7E889380FB5D2459
bin\ja\FSharp.Core.resources.dll
md5: 6E817A38BE63931D1A98E0CE6EA50358 | sha1: 60CF4B5E5D44ED3F7FD4C9EAF7BE391B033C39BD | sha256: 5740B3E775A9570C2164A562349722D89753406C7F8733DE0D5A55901C5EA4DD | sha512: 3020CEC23B27871B0FEBCC63ED9C40598175FBDABFE180BEA2C2C153779BF1DF20F6640C0B354EF74D95EC40CC101FD9D0FE2273F6126C8861D392C93DC32D92
bin\ko\FSharp.Core.resources.dll
md5: F81763A794FF58D92638F97A43385009 | sha1: 76471919948053A3151957E0A42CBA19FBE916CE | sha256: EE12F8B2C194D9D7D5ED9DE5C1A61600D6C0508747E96849CB8068ADE982702C | sha512: EFD0F53E3FAE2D8C59753AB7172CA9C5FD0583FE4BB7A41684501CC90803ED25A98EAC1DC5233B5F4A1D86561BBC7AF416778D5286407787660F8F06C97A6F70
bin\Microsoft.CSharp.dll
md5: 3B25646FBAE084B69F5C68B2616197C6 | sha1: 6C61D533D16B5364F73B9C9996959230FBF0D196 | sha256: D10F3D0A1D841197AAC94DBCD7C81EFFE14EE9E0BDC7C514B23C0944F6D74170 | sha512: 0088C3DDA9548F2DA706A2C696401A31FCEA02DB39E8488C7E1007D5F70233B58F966179F098DCE27AF73BBE13E806B3544E2BDC1B7D937D83BC90A555FE3419
bin\Microsoft.DiaSymReader.dll
md5: DCFC0926CAE9C982B0E6D0DD05C76612 | sha1: B2BBA7E74525EAD6EC6E9A6E122050C528A915CE | sha256: 18D61714F4472310D77FCA6DA9C9ABA36EACF6638FCBCB6221AD5575DC935A74 | sha512: 660367E55B8EF812BB1E5CD14DABE3CDAFD29FF71A10546857C9A0F912F7BF9C7E64B71097583B4A8C482821C9AC5B1991527635F676E8CEA363B4CAEEA9B6CB
bin\Microsoft.DiaSymReader.Native.x86.dll
md5: 14C7BDF37EFD821C3FB2999D44B11539 | sha1: 554B1310BE1818FB770703C7A095C9DF076A176A | sha256: 4EA9AC46897947F0D4B201BF37E2762ED0756A11019EC5C1D227DB6BC07FAD2C | sha512: BDCCD3827BB1253EAA7F6CA7EF4C772DF56079E9F3A70AB5E216EC8BCCE715EB44BF84BE63337387D2C935FFC68F5647D60085CA709C11D7033ABF3B2BDFD31B
bin\Microsoft.DiaSymReader.PortablePdb.dll
md5: AD37115DD28E016B63A03136DEE256AC | sha1: F06BF1233812BB0BE82134D9A285292BB18BD79A | sha256: C464916C44405B3C137C32F942C5359B454C17E6B64058B554D4191B0FE4AC90 | sha512: 00DE7B81847948848A8F45A820E7628B5E910F692159D29D7AAA580ADD1A70D7693B2843513DB2AF20D0DDECD02CF7084F1685023B8697E95C1476F2541B4C74
bin\Microsoft.DotNet.PlatformAbstractions.dll
md5: 2C71DC88237C2DA73672F773C9F4C5E7 | sha1: F63837AF2A98D408F59ECC640D46AD7286FC5620 | sha256: 1E31F8793861C7CB10621A38F3FDA6B787D15BAC348B70E38E80E3544A086E86 | sha512: 0E9332CCB1A40A16CF6A4C4EE68C2961E956C1B6AE2F2327B5B67989538E153935BEBE6CA0533EED968FC778398A46BB7B6B2C82EBB7777C49B7713C3F943590
bin\Microsoft.VisualBasic.dll
md5: E564A1225BD98731C868313B22A90A27 | sha1: 33A0E9F429F9A2DE7FD68361279A520AAA1D1A8C | sha256: 61C622DA694E06DC8AD5A636B289FA4EDB883EBA7C42049B068B7885CBC248E5 | sha512: A06C997A40BC3035A84A42C487A22B237D68049D7D1B865BE6C0AE9CBD88F1A4A49B007EA5CD456737C8159E22E563ED7D41A9D6E3932BA2E7FFFB5CD4696A6A
bin\Microsoft.Win32.Primitives.dll
md5: E70457C5633AFA0841AEE0E06207D36B | sha1: E7D8D575F0D4CF4C638400A765012116306397C5 | sha256: 11AF2EBCCED4A4353CFB7132C7C21EB528F49C12A26C6DC7A872DF2E47B603F7 | sha512: 6EAC4B5168260D5310E5D7CDD473470EF93338B59FDD5E0CA8F985E728C5B98D2C9F8BB382858F7FE2DF23049DD30BE6DB9E35B50A57AE5301E1A1C4DF168B38
bin\Microsoft.Win32.Registry.dll
md5: 381AE862595AA790B59E6EBA616BFDB2 | sha1: 6785EF2C6F850E9476CA339AB02B009A22BFEF12 | sha256: 29149B34894DA8B259CAA24E0477CA0808C692FF6EE02CFBEFEB79CE88D2CB31 | sha512: 0819B554CBB0F4EA6B7DA6021A2DDF4B5917DCF0FAF483ACBEF8199A7EFE27B610556F93A1BA6710D0475F1510401E0E72666B100AE43B6D7489C9BBEA288725
bin\Mono.Cecil.dll
md5: A2FAF9D8021E79B1CD01DF83B73532AA | sha1: 8BEF12EAD0DA484851E42F4C81208AA2764DE754 | sha256: D49C61EDD30450A25B8CF223BDE50A1FB1E5F3542B74F41C2AC3E7B8AE5CB65E | sha512: D9868E3247A8F5EB6E5019E8FAB3042FE459E613FE5FEAAF714A1E314CC1CA15CEA94B5CF5FDBBFFAC5B7DFFCBE724AF4D5B591586ED2B3580E34EE9C0AF9DAA
bin\Mono.Cecil.Mdb.dll
md5: 816F33B28157A25C0E78C4167C952546 | sha1: 13149DA2075548F120A30F868DCD82E8B0D279C3 | sha256: 5644549A62DD329B053A5EB900EDA850FF87E56301DD7C8B326F1EB58728B795 | sha512: 55C8144CAD54CAE9CAE45D8326383C962992DDD488A0214012E90A23A8558CAD7642DB10743E31ED646AB0EA84C08C0D4A4BC7DECC64F5E429390661E8A37B54
bin\Mono.Cecil.Pdb.dll
md5: 3DF61D114BB8C7154B069CA3870CE6F3 | sha1: B5474ECCA54033AC8598BF73AE5509E751B9E2E3 | sha256: 8CE50C963D0B04B9923CA6511BB26F1CA954D8073F42201E826B15FE9366BA82 | sha512: 76F55A26BFB7F34AE60767F9C97F7A43BB0985B5F491225A06092C2589D629B05503F81C5A8AD8C13A9032FBE5F7CFBA39290DFED1C8AE7C91ECB8C61B16EA51
bin\Mono.Cecil.Rocks.dll
md5: CDD467421D75F3597F6E84A8194AA45B | sha1: 77F9658BCD53D2682F78BC38ACC75DDA5B0AEBB5 | sha256: 980ED875BF105C2EC1D5BD46785DF530D076D39959D8D170CEB489FBC358822D | sha512: 3AB5BDB067304744410C4BBDFC21948E59E0E9B73B1C5BE39F68CA0DFF48E620F2E3FD53B91FB9FBF91442190C45D294CB7930D309CBA7F801598909E3740BCB
bin\mscordaccore.dll
md5: FCAB6F74AE10D93432BF32FC3FCA8025 | sha1: 3F39028667FB4558C595F059DACACAAD2FFEE292 | sha256: E8702F782F91B29F728AF693F43843A465B398CD7EF6328C2C17FDEC189436E0 | sha512: 95A9526FC28FC0B3243160EC79507CB2B9F31F3311B08834AD25ACC5D1B262E4CA66CF3A76EECE04C828036979C8D8227F9D9F37E400899C17A3BEEB2321A4D4
bin\mscordaccore_x86_x86_4.6.26328.01.dll
md5: FCAB6F74AE10D93432BF32FC3FCA8025 | sha1: 3F39028667FB4558C595F059DACACAAD2FFEE292 | sha256: E8702F782F91B29F728AF693F43843A465B398CD7EF6328C2C17FDEC189436E0 | sha512: 95A9526FC28FC0B3243160EC79507CB2B9F31F3311B08834AD25ACC5D1B262E4CA66CF3A76EECE04C828036979C8D8227F9D9F37E400899C17A3BEEB2321A4D4
bin\mscordbi.dll
md5: 28D51A9CB95A193312C5214D195BBD0D | sha1: 7ED23E0A2C617865AFC46878104E430E13201D15 | sha256: F46A02D0E37F2816136B063B5304BDF2FF1C3C648ED5A8501DA141012EFAA52A | sha512: 794EBD46EF64724FDD288A5CB2992051DCE8DA5B42FCBB889F413A3D6289BD261A08A0AA44B272A6C077D6EF3628C7A580CE61A75A4DB3F97C6A335DA010E3DA
bin\mscorlib.dll
md5: 571B978C200077950D3E61D324E1B36C | sha1: 778987206DE583DD5CE2EDF2757D6797C9E9275E | sha256: 01682C9553AF0037A8ED732759275C463276D35D607C73895369136F77209B4D | sha512: A19EB8D0E204E3EDEA7F66F3F1259B638D0DB01D6F9DB20103D1B17AC7DF6F425A001A840A91281E9C40A25594F0AE7524FC7BDB2770807981A3C1985F38B10B
bin\mscorrc.debug.dll
md5: 1B7EC2DBF02123D16E08E33EF18AAE4D | sha1: 923F960D5D5684237C024E39EBE31AD614AA761C | sha256: 264A0046C9A341457CB7D618561904E21C1C05C1987F6CF45413FAD99244A28C | sha512: 01EBFAF17FEA33C15121457504F68797CFF1F8708D307F33B014A3BD5FC9610BEBCDC51025A0223F0B0F025961507AF9E1DCC599F39EEAF57B8D99303840521D
bin\mscorrc.dll
md5: BF9F4DC113EC6469F5F8FE71CB45255B | sha1: 8E0067A64E5A33E94278119F7FE3E560B626C201 | sha256: 4F5EE02EB69689DEA55263E2F4B6067B96F85444DF9FF296A9CE8600724FC976 | sha512: 412960FE840F8DA03335FE432834B7E22797EB9421F4B6D65BE01A7DFAEA887EF05053948969CE793FC2E4051C2D25323D0771E2A1375F9B678623028BEB61E3
bin\netstandard.dll
md5: 42CD61AAE3A37D05020E59CF3180787E | sha1: 2CA1C2D415BC57C7A4A01EA0ABE17CCF2F3F464D | sha256: E1667FFF0F107AC66F16C3CBBB9BC3CDAF418A5C771DE00AAF6960CA8D482981 | sha512: 23E624D30155D23AF6BCD56214FE2AB492345922D7AE6D315090FB813F54D533C4BDBCAF89D4B824BADE306155C0833AD0651165204AC356FEE1D48E62F5E826
bin\Newtonsoft.Json.dll
md5: 328D3E4D99E47F36F3530E1EF9E6AB75 | sha1: 9A5133F9315AA76ED0ED132FC4A64B41D950E774 | sha256: 824222A6F8BDDE186AE8F13E5AFA0A53CDB109F05C7E5D8F4C73630F77A7C6DE | sha512: C61AA344DD0E196EB65C3F014BE8B03E47F9FB0862B7BE5368785990754E1CE2132A80D6A6FF81F9C45758F14846EF83BF41D3B0CB549C8DBB9E5E3FFB4C07A3
bin\Paket.Core.dll
md5: D3A4B4AB789133D823EDAF6948F9005B | sha1: 1E73549FF74AA4ED9F4EE2919B6510F62A36C22B | sha256: B88274AB86A0C33B9EDDBB0D83ABA8BE1BF7E1C6A3F74F257D7980153706CA5A | sha512: 4BD3431E19F2A0345B45841A62ECD25FCC9BF1D20C21095894614966E0C767152F4A6120A259FE9DF3A45A6B86FD7B09932A14D393EBBF613E0CC8D453F88586
bin\pl\FSharp.Core.resources.dll
md5: E826B37F524B4A6541EF3E750ECA1C93 | sha1: 36C43A0BC771A0B39B39DF4163D6BDFBE8764CC9 | sha256: 1950045B6747D4BFBA268E5C2C8EDFD6ECF581BC730205A4B0EC4C0DFAD59D62 | sha512: 52FF8CBF9CA3FC92D39947CFA384021CC6676240A41B820E59BEB484CFECFE08649D760DD5205F0E1731D0C24B6BFAEEB923E04C8697D689ED6D040EDA4AD0D6
bin\pt-BR\FSharp.Core.resources.dll
md5: 061C60BAFE5D20190A588A33E72DDA9C | sha1: F8AAA7B4417523AE8C9E83B460E95E2C1AAC8134 | sha256: 0D6ABCCA68A4203944B6E45FA713B2C74A127245E3D11FED1A480C18A782BAFC | sha512: 9F12E8CF947E7E5CC108696B2C6626BB339FD0FF222A9E052333AF602631EC675579D13DBC514F472A9258ED48A49E5103D36704A3AB0938E7576C7688FA9D7F
bin\ru\FSharp.Core.resources.dll
md5: A2E3422E38D5293AD382E68C8E4E064B | sha1: 916E7B12E19883C6A2ADE8A4FB5AF8CBD1C66E51 | sha256: F542F65A13A204102BAEFBC81942DA08DF20752D3851649EB2E6BB12D8F4EA36 | sha512: AF83D01863EBF4EEFE0ECCDE1685A3337094D016265F0998408091AF9EA18760BE7E92459F459D743267E86EF5A1AAA6FE6533089EC86851B3BF1D23BD0CC17F
bin\sos.dll
md5: 78FE66104A44BAEFCF490D8F52DC19AF | sha1: AF820DAEDBEBAD4213D8FDD8DE331337255C38DF | sha256: 6DBE8FC8B7025C29F605D87E8C11E6BAC4B913E222187479B37495821EC46091 | sha512: F7CF4625A21542ADDF6C6F76F4B30E68976D5873BB54A44692E03631470881B4696DEEC43435FD833E10FE6F2A0C91840F1A08306B533966C0BE79549FDF880F
bin\SOS.NETCore.dll
md5: 2DD729262579B8DA5D9AB9CE8285F316 | sha1: 46DC89C937F339AC68AA9FD76AB1734108F8662B | sha256: 8ECDFA1B63D622A2F4F0D68E00E6E11F53881ADC9251F67962CDB604415CF48C | sha512: 8EB4DBEC431F3A4FBC13522735EEC47D7557A8ED1C0AFAC0F6D2FB8CAE20B4A8DD97CAE4B8ECAF37F25FD57018BBC2FB4EEE68E889F31F8C6A0439B33823C3EE
bin\sos_x86_x86_4.6.26328.01.dll
md5: 78FE66104A44BAEFCF490D8F52DC19AF | sha1: AF820DAEDBEBAD4213D8FDD8DE331337255C38DF | sha256: 6DBE8FC8B7025C29F605D87E8C11E6BAC4B913E222187479B37495821EC46091 | sha512: F7CF4625A21542ADDF6C6F76F4B30E68976D5873BB54A44692E03631470881B4696DEEC43435FD833E10FE6F2A0C91840F1A08306B533966C0BE79549FDF880F
bin\System.AppContext.dll
md5: D5551B6EB52FEC342587E2185FA85848 | sha1: FA49C9CF17C85E2D82F74BD3FBB83FEA5F269C72 | sha256: B01666E46482729D51C838EC334D377BB589D962B0C74817D1232119B17DFB23 | sha512: D7B10C623EC4B77017764908D79DE9545D21D4BDBB0F058787DEFA06BD9E536AE8B83E93491637464AE3B69F2A2E263730F05D62F88C8F6BF406FC0946572E98
bin\System.Buffers.dll
md5: 9117FE87C7A3C8B9B99BDD08676C1E12 | sha1: C112E6FD6FB178ED5865BDECA14D4D8F85AA460C | sha256: 103390BE9D1CE91BCF81D84FC930AB8811E583F5DB54BE10B81CAC8F0350BB81 | sha512: 8BF25E5FAD2F24816AE3DE19E85EE7CDDA31EB0DF43B04A97B7D326FD8959BFB455F80AB7A6D1F750CB887291141ED4E6B548CD83CBA69100F40DD90944EE00D
bin\System.Collections.Concurrent.dll
md5: 27F2BEE2A1C3AD7B53B4D69A3E958213 | sha1: 805073A0619598C2D19DB5AFB0FCDD460699CF4C | sha256: 5BFDB533529241D04ED994000A807A7DA068B5AE2763C7E60BAB7CF92B686E41 | sha512: E252E5E125FA8967B9F274B1234F77CC82041F6CCB705FFD66CA2F7898A81EB6A8C0D6A7188DBBB0B4C204E9E48F9D4D3C3BD78B732CA71331E27665D7938123
bin\System.Collections.dll
md5: 3E4370F540FF33239E4AD1D35582E0B2 | sha1: 48423389A1DAA1195933A51691C5F37348A32B7D | sha256: C7358D373302D1B42F1634EE7C3947FF01F609E5D142E80BECCAFACD9AFB4034 | sha512: FC1E7105E98EE4BB9C33366E80D1955CA4955211FC712DF1FFC4839FD11391DBAA6206B1FE4690778D6A5C4858542F88100C667DF9B1E647B37DB31C52C0026A
bin\System.Collections.Immutable.dll
md5: 75DD513BBDFAC1D313734786E1F31290 | sha1: 805CD1C23CF3D0175681DA575FCE9C0726CBEA69 | sha256: D7D2A527B15497E3D0069458FC56108D0EC2D9002E5F19BB6548AF5EE2C61E36 | sha512: FED09BD71DA250E08AEE08225717878E997066E294F7BD8A1FA26D8B1878D3EABF6661A626457C465FE8D2499F942C1308A3B09ACB9CC957BA822E6037A43C1A
bin\System.Collections.NonGeneric.dll
md5: B83241CDC8693B50AACD71290ADAC970 | sha1: 162B90678FD62ECFF26EA0672949FEB641380636 | sha256: 83B3749802257AE1DAE12E32C7EC45C07CC5BB738EF9B4FEA00959CAC22817BE | sha512: 60260391F04A9F934DBD8DB1664DB4986C134641F9011FADC74FC4AC719E3D7CA98984D293EFA90BC8B2212DDF655014976E0548D186C0D058D76331E6A5AEE5
bin\System.Collections.Specialized.dll
md5: 1BDBEDC4623C8A02EAF1855F88F85D5B | sha1: BA3B46140CE6EFA2B9A7AED1156575B4ABBD2471 | sha256: 72E4395946B68CE93B27D63FC028B594D0C52A97B8DC79836FAED4FFA808D2FB | sha512: 458FD2304249CA9318EF75961D15254A0EB490653C19159DC33EC9E9D7E1F4178B698B44A94ABA1FC2CE0665835BBCF99DEE7A5DD3D855CDC0423B83FF93D5CB
bin\System.ComponentModel.Annotations.dll
md5: 713D058C2D264AE94A5A57E061FC9B67 | sha1: B43D292F35B479C7C84F2EDD61D4193610B60057 | sha256: F8330F4DF24B64DB1F59E5A2232571BD7B5340CFF01AF6B84230334873C65A0B | sha512: 0493DE3A568CF38C639969AB49D23E7C209B801BD216E6AC8D5C029003B7CC398356396702B196C4980620FEB070F60C0DE4E8580731251EE127EDAA94285EE1
bin\System.ComponentModel.Composition.dll
md5: 879373FEA8EDC98F28F3D883373233B7 | sha1: E67B575A7F3B50E7AFD460C2CCABBF406B504635 | sha256: 5B9DE7B26CD354B19B839AD191D7DC39FC629A89E6CEA8B52479C5D13140AEA4 | sha512: AD189B9C712BAC19ACEB3A9B4D566ABFCC7F14E4A571B8D8DB97DE0E916093297E21BD29331E770A80B4BD4F23110974F33FD74435843DC9E9BFF8146C0B893A
bin\System.ComponentModel.DataAnnotations.dll
md5: 316988B2A6089F0FF6AC30304D6A26A2 | sha1: 52AD28756D7F396A1652D7A091BC8C1624F4CC8A | sha256: 873732054559B40490527EE260CA6F548226A575DEA4C01A63A7C6F03D18BB12 | sha512: 28303334938AA359BD62766AF586E91D78C9E94B94F0FB0F1830A701BF8E2D914CA53552B919603FC1A1BA074D53D53441C3272A18049D91F7F8C7A07C613F3E
bin\System.ComponentModel.dll
md5: 495748BAD69B70BBDDE4783E059556D1 | sha1: 50AE221A86949AB11C9207F825A5B7C7493EEB5D | sha256: 79A272E2894125A7E70CF01F484774D42B8285D416E9931F96DE84217ED63AC3 | sha512: B0041C10E6CAFE919A9A40C3EB61BE7E58CD56FDECD3467655FEB18BCACA2FBD59209133B0AB3703082553B729CE606A70CB258B655608E2A2914595157770B5
bin\System.ComponentModel.EventBasedAsync.dll
md5: 1622AA0D7E7A812C44DA23009D5A49B9 | sha1: 6DEBAB85853A38FBE4E49BD6E05B871426C245E3 | sha256: F0D5444883D94356E251C1116CE07BD3C83F759EFBBF4BABF88E4CD02CF66EB8 | sha512: A47D423D378E34BFFB4764A1A250AE1A0661BC3F4E4AEDF533F4733BEA7F7CCC3947C48211BB9EB060AC011553D8225D8E14A2A1026F4AD66952BBFD03AEC1C3
bin\System.ComponentModel.Primitives.dll
md5: 2435465E2AECC9FF87EC61624CEE5734 | sha1: 8BB0451F037F145933FBDFB704FB364C00644F92 | sha256: 94B761CD851FDDFD5494FE17351DBB514B752C59AF660FF017CB9334B288BF9A | sha512: C68B9A3D53F8A77AF28E9A3F66183C00C57E6B1D6E48D61BABDE358BDD5B86DEB420CD59C56945E54DCBD57B535182BCDCC8225D4CA71AC71BCF45D31B02ADB1
bin\System.ComponentModel.TypeConverter.dll
md5: 36B1472BED536C09F5BD7122034B4EEE | sha1: 7E4D09CB845764FBDC6DC383EE65F7A66725AB75 | sha256: 25510073DF20461C363D9A0595FD004EED3E1A975D445F02C2B9446E388C57C3 | sha512: 2C1C75F8D0B1981AFA8B47067A9A60FFC04E83AB752301DC4ACACD77631FA11D277326EFF1DB40C3DEA42E2C43D8A06DCD5BE3E3BC284C14A33D96607E89586D
bin\System.Configuration.dll
md5: ED7BB3B127067EF372BBE4F6B5735B24 | sha1: 88E8523939AD06354E3357F1157D3D3355460019 | sha256: 90CD887BA100B6F92FC271F2041E5B83E968B5D258EB0EFE594770B03F1D09E4 | sha512: 9C0A5AF3B44F988527EBF8C38D7384727F22A4B57817E830335E96B1CCFEF405A1B6F277087BBD28EA2E7E471237676380B08EE0428AC76C569F5794A08201EB
bin\System.Console.dll
md5: 2D8B52EE8D10136745E0A67855F5742C | sha1: BEDFC5FECD2619F6525F5A85790FC92683F12334 | sha256: E622A0BF5429892E6D83DFEAF4767797501406A066EF3367A798DFFA7C186085 | sha512: 3489ECB7BE40CD5ACEB5853F02D642775EA45BF8C78255213796FC3AFA2687BF96717F13549FE0F9140EB08824FE90C0DDDF8EB5E91D7EDE283FB033BEBE2112
bin\System.Core.dll
md5: DD6FA53A887AA0D5C1C45E11BE908C05 | sha1: 8E130A638D65E55885D048E441C5ED4309E0AF36 | sha256: EF9025B9F17EBCEFF8D04DAE2F63DAEDBAA10F8B551AD5A1ADF65E341BA36DC2 | sha512: AFD5769533D5DBAB7E1BA9D90A45B1AB8A2D5874241A14CAA1E53799960CEFF1BCF03FE41807A8B0CD86819E568D99E5F4AE33B70C48D7B245F0A58E883B6632
bin\System.Data.Common.dll
md5: 210963DA5D7EE2C1039FDF30B3E245F7 | sha1: DD3F2339A872F73E2077D53FD0F000A4F7F51B4A | sha256: C2246577D02FF5272442C73BB207B30ADED46DB94457E687CCAEFB127DA0F1CE | sha512: EEFB169168CEA6E81E8DF085950A4C8C7B550ACB204437F0F7B9A2C2FF581723C04354AD78ACBDDDC728E6A3C4486DADD2AB99F4653EE24CA7630B46424A6AFE
bin\System.Data.dll
md5: CF786B5D9B17B61F2A6D2755EF904F77 | sha1: CD4B68C32C477E9CABC26781350BD79E63DCA0C7 | sha256: 1B5A6BD08C3056FC7CA91140E3D99E66C53E948AFDB7454D58C2D9C143529146 | sha512: 288D2D14A7B32ED877541271395D389FDD38C961D92469AFBD42CCEA2A18F7E7A887BF938E68595F7FFD3EB9C70D69BF49D4E237F6907CF87187955662F6F3FB
bin\System.Diagnostics.Contracts.dll
md5: 0A6E8B5565DEA43B12605D2ED4CAF53F | sha1: 31DB7878ACFBBC708D37C89626945BC3FF517B26 | sha256: C5EB31B1F6FC497348D7D5D64B616968358268C334797D454639214E610ADD84 | sha512: 724D6B842EDC55438EA182A19FBC4DE601B70D0F3D2707BC49FDD8DD3ADA9DE0929CFCE46D617FA9A0E1A83C658F5E95E838F48D3A7A6AC574BCCC15F05A1C49
bin\System.Diagnostics.Debug.dll
md5: 730BDF8941D2B68298748EB4D5F53C32 | sha1: 083C87D543FFF6FDDD4645872E7F522EB2370708 | sha256: 01FA2FE7B3D3B5D972C8927F572FF053DBF387CF42918CF963121069B669CB49 | sha512: 7966D7B2739D4F9AF3F8CE083BC99023E05BE2790FEEB9A59A4526DF417D2FA00F1B9C7A837EEB24638E40C5C9131AA8842C884E81F193CC665E2E6882DB0079
bin\System.Diagnostics.DiagnosticSource.dll
md5: C4348F6EFD584B9B32E9DA8FD6741839 | sha1: 278B71447D7FA70A9DA8929A770DAC4F8B39F14B | sha256: 185FCB193AD56CBB9351C3352D3B553C9061999A6D9E870E1760A6BA5EA53FC6 | sha512: 052BDE49393D16105478E9182CD52D27D04A1CB39B4F6A1C291759B7B38C032E8AD88AF1AE53C032F51DF445899D3EBACEA49E8E4B5D12BD08C020FFF3FF0F1C
bin\System.Diagnostics.FileVersionInfo.dll
md5: B2B02029F001BD903F3496FAFA04CCF4 | sha1: 379FF8F7967C170E7FB0E0777A68E57882AB3CB7 | sha256: 15B797A4D8D9A69DD07182B3D3A236731D11022D391D51F4919E259A956D14A1 | sha512: 029D7EC33F10D44A510CD4F1B35B6517B06A987DEB7DDD2551A8EA80E0FDBAD6A2375FAD913C4D3A340B204E5027B589F169D8D952002561269AFE1429C3F77D
bin\System.Diagnostics.Process.dll
md5: 012749B28563D06A08A62E401E0537EC | sha1: 12E97AC6BFFAD375C5F1F1EF7575139108BC16CF | sha256: 1652DE89B2D046016A0308C668AB37E229ABE73309AC179274721073323CCCCB | sha512: ECCC8E00136D20F54CE84BD7E829829BA76F9A249BFD1B3AEDBD712DB6893B2EDF15D2564AB5694F78A7EC7BA7B1951F40A3C45768F98B6435671BCB9D0FF286
bin\System.Diagnostics.StackTrace.dll
md5: 2E7CBF7108592CF164CF5374AA5B48D3 | sha1: E339EB9E05FBC488CDB907AB4281549F96E9ADB8 | sha256: 066B5D3ED5BA13DB323B02AC85262FF908B1BA5B99247C620110CA8BF35B356B | sha512: AAF797C9471F3C85A4723B38E940A719056E8A0F1ED6A8B774E174885A631FB7AB5ABDE41BC75051DAB1F68C4CB0542B130374DB88BCD5CF044674F8714AD7A1
bin\System.Diagnostics.TextWriterTraceListener.dll
md5: 8FCE9E4BCFEC097D50246F0A8ED66C0A | sha1: CBEC8DF52F611D87CB6EDCDC916BCBA1A340074B | sha256: E570CE8ED87741D18954446296A4A9C3678154A912275740D2CE01B1403DAD55 | sha512: DCC06A3D05E7A01B8031653E2CE22015DBA39BC955DA793AB3AF5299EC75293F293455228D036725EB02E9198BC93F3ADD10ACED92973326FBAE443FBA0DB71C
bin\System.Diagnostics.Tools.dll
md5: 2E85BA6CE10A09CF6AA5A75937E85820 | sha1: 16E6580488F9E6D3DFB6D68595270F1DACA82DFD | sha256: 211ADB3077895F95415DE9725DA4EFD19096D2FCDBEF17BB6552BF44D7954BA1 | sha512: D50EDAC311E00D0DDF91591F2D17D3377286B9970758FC438BFA9487A838416221A67B3980BA79F778F90C921AE412FEDD8D662DCB093C732655F3849B06373E
bin\System.Diagnostics.TraceSource.dll
md5: 196024EBE5C3CE614BB2B1E9F373A1A3 | sha1: 99675A1F27217792BD436577603AA7C9FF71FAB5 | sha256: 5FFC1322DE5AE42E4DCB482FA8FCBCC2A6027F7CFE3229F7DA666DAA221A3304 | sha512: FF2E86908CA1D4306C0A6D29CF81811025AEE4329C642C919E74C14EC4AF938CDBC96010646D6696CACB403845BEAAE97500678F5A0C257D3127AB95791EF137
bin\System.Diagnostics.Tracing.dll
md5: A7323F01CA9D4F7025F91EEAA96231CC | sha1: 3C92899C7EE7F0D73C03625669AABC015DBD97EF | sha256: 2D631D7014BDCD93D6D96FA38D77B9BDBB9D422F6496EE5F925F66AC89F63554 | sha512: DD74ADBE5DBB118319BA4BC96C3DD7B6838A683CDB48EE735DBDBE0BA489401886DA8394A27A9BC3A030F6E34093556385C927E5D8284AE994D16E57F78C0F0C
bin\System.dll
md5: 5A28FB03EAA1E564FE109599B25F5010 | sha1: A76F8895964B97970F183F6CC6E37FBEC7B57FD8 | sha256: 8371ED97A33444AE1DA5E10DFBCED06FE8A71B204EC41394DB6C564DB4686A87 | sha512: F43BAAA6E8EB66C32B9C83FF6CE2DF0BF971AFA2CCFCBA72CA42CA6827A63CB8E926F729C4D2EE0659BBA75381A10A6656651894F7C51866C0E5B474BB87A601
bin\System.Drawing.dll
md5: 8E6A45D150DE0B6AF6A91D836B2A9EF8 | sha1: 6D1E7DFD44BF0FD54B4807B784EAC69B644BE054 | sha256: 5805FF73493F4D5FFFBAA64357F3C438BD4A005CE2DB985A8049AABB8848C0F5 | sha512: BE507A6AB838753388B1E47D459F034FD9ACE683892DEBF89A69D4B3E42A9F7C884B0870154A96DACCEDA46365F24A484851966E7C0AA9936C7D3FDF21A6B268
bin\System.Drawing.Primitives.dll
md5: 5F49D9182C67A6F2B24B2E213AE7BA70 | sha1: D804D5C00184C76C7A36740A710DBC7070833FD6 | sha256: 346E90D0F0673FA4357065C62A1DE6CCEB4CBCB14172B16F300F2D3AAFE2A7FE | sha512: 319F027EA5DB1A92F1C6DDA08936058AE15315CC1D617B98E734920E0CB7EC9C564C4C7F85A0DA88FA9E33C770453CA7AC9B93CA31403D0A126878BF59AB48AF
bin\System.Dynamic.Runtime.dll
md5: 1F79E4D0C34F87CADE9A04312526DD26 | sha1: 5509AEBF19F44CBB148F11766E5E4CBF0D47C005 | sha256: 9DD719FD6FBD0D27DD651BA33088E37E4D6DF659CDF6DD446C1438C80CA6077A | sha512: 0EDBC5E327355C30DEC3916DB4FD2FCF3C7B1D630EBED5C87B9E2B5CC3316EE458A737390FA3DD32021FE45127DF11B053B67BDCD3E164182633027CC0DB2B32
bin\System.Globalization.Calendars.dll
md5: DBCBF0D6F0FA5C1F1757DFEA7CEEF549 | sha1: 5ACC672DCC4B318BB0BA6E3E10A4EE746D9F1BD2 | sha256: 90CAA5D91B419D70740A03E79A9223DFF4E5C7CD6F27AA48424BC5FF65315E96 | sha512: 26C24CB9C8B85DBEACFDFAB937B2F27B93806CB7237E4EAB539B547AEDE56C42B9560C7ED44839C2DCCE47C04C86C4D8E7591C698508BBE93D35A23EFAD0DB93
bin\System.Globalization.dll
md5: FD024DAC590253EF3B14E785D65F1FD4 | sha1: 4B25DC77E1DECE3753991DAA267552D8DDF56E8F | sha256: 3C46E59730E112DEBCD2734965AB77D1DFCEC43F617149ED09EF65CF0D432F2C | sha512: BAD7E06EC53E53CFD0A23E27DA4FD2C518C0AFC583FE9393474D76A85386B48C455BA86D08A87A62F29B47439FA6794EDC41F4026293309141E77EF9AAF2FACC
bin\System.Globalization.Extensions.dll
md5: 3C822DC52E581638DBDADC48BB7DAC90 | sha1: 06F66B1674B103BAF05730A8D4BFA8E1098255A7 | sha256: 032DBD22A2F97EFDB5CB95C5877711DF7B46E73E6D2D2EEAE1BF1DB9192170AA | sha512: 926150A165B55C9889843CB9804996D5A7D1B896333930139C55001401EE0A4357579E34675E417FCC37136B3D982D33878E610B6E5EA76851663D3087B448C5
bin\System.IO.Compression.dll
md5: F678A66E80281580FD5BDF93A0A1FF17 | sha1: AC7C3272EDFD8D83C705C56D62A5F55A768A7703 | sha256: 45E243309434ECEC8B9710D650F1C3FD3F6EC80262976488B4BC733025C2587D | sha512: F0612327F2B9DEA02C151E9640CE9FC9FBCBEA8599CA9148C6E838BFA42EF54897348661D4227CEE5BF468438E8ABB16918B6586F0A52DBDCDFE000177B9DCCA
bin\System.IO.Compression.FileSystem.dll
md5: F93C66111C0D5B872FEC8FC011D8E379 | sha1: 626DE9856B628ED0E242685D46CEE6473F602251 | sha256: 5635FD4C8DB8CFE198129DA380E3119BF8C2A1C09AABD6A98863C245C57E2C86 | sha512: A01BED4CEE7C0C2B3D79B517450048EE166380BF4B3A027237A589B58B15406CB32D44F23061C611B512BDD72917A068F27D57951A11417DFC3B1B8D66E8067D
bin\System.IO.Compression.ZipFile.dll
md5: 98FE27D66C773F4549FC5D6C61630439 | sha1: 717D905ABF41398D26E833811D3AB1EC5F4A2D14 | sha256: 215695675C7847603C2C0171594E9777F083BC80AF6C46442ED0F79F69AE4B72 | sha512: 5B73B5DAE1BE8C7C1FBB768B089DC764C75DF9BAE7861CCCD8F66A770FF2F92D22564AD3C44A29A6A1A531A09A450EB5855CC6D818F3F14290E03D1DCAFCA7AD
bin\System.IO.dll
md5: 544EBB1E2B75A263982CBE51A5995FBD | sha1: BDAEE683F620C842EEC0259F59D3316FAC56B977 | sha256: 586FF514CFADCC74E5C7B9EBA311B3A7D243C26831074B4CDF41633A99455A31 | sha512: C1248BDF6BC777B67C33AA9A1BCBFAE4B3A54E4CE88ACEFCD568F9C500CA21896D6C24EC99EBC62626935CAB2FA53381747347EA012424486382A24FF6BD9F37
bin\System.IO.FileSystem.AccessControl.dll
md5: A7CB75599D86D7CF6C36928B4F30C0F7 | sha1: 207917C29A073590EB096895D60305ACB0B324CE | sha256: FB6BC85EDAAEC31C205A1198A960B099BB53DAA9A376190BAD6354873EB90FAA | sha512: 589B858DF24CC46FD64AF863D38D8A1F51FC719A3B2145743E5FFEE7F61907BEFB33CCF753C6284F5D20851C2F0DB532D0C0BB93F9D319CCFFAB57618DFE4997
bin\System.IO.FileSystem.dll
md5: F57B8CCF5774EFFF85876441177A855A | sha1: 5C337AEA6FA310B6CB1E909DB5430097C720D423 | sha256: 87C21F6581B284F6299694E7657B6659258DB6858E60E8D72C75BB7E94587CD0 | sha512: 5575160F47367436F9714521D3D71907896EC3858B77267BAB205EC0C6FC24B7C4636BB91C4BBF8B4B0263F293FFE4FD1A84D8E79473B7E4BA504112BEA08D8B
bin\System.IO.FileSystem.DriveInfo.dll
md5: 05FB8F64AFEFD132CF6FAFD9123254DE | sha1: 960D2CC188EA46C59A640BE4DFF2B551BAC64623 | sha256: CAA683BADEAF263649634D25B995103728212EC4417F66D55A203CEB1EEDCD02 | sha512: 3B618E6B0CAF6E0D8A364BF9A0625377103096A1A37FBB62E9A4DDDCFC5A9718AA5F0E7666DC80DA9943714C90035459DADC24A2B45589B737990CC8C09F6C3E
bin\System.IO.FileSystem.Primitives.dll
md5: 75D1A3D37C36D70B2EAEB4EDC9809D37 | sha1: 5F0A67A4FDAE217E0DF040570A7911FF991C51EE | sha256: 72D33CA476FF6A3EFE1B4D1AD2D188AA445246B8DD75FB54781CACD52AB54D0D | sha512: C37E3A6B8D351E24591084FF1A89551472692178251E6B4D2926250525AEDFB03B0879CEE5F9771BEFA908C28BB2FCDEC9D44B41A74D12CA8031175AA8188EBB
bin\System.IO.FileSystem.Watcher.dll
md5: 9964131C62E4D6E5B10ACEBDC431DCC5 | sha1: 17A1BCB50A3A89133574844C7DFBFAE4C7B4BFB8 | sha256: A60720C3A052E036DBC2658FBD6135C34797EA4511443944101A2980E9DC675E | sha512: 32AAD69A0312CBE88BB596E3E49FDA1B6F81EBB1714DB1D9734F7A43F8B928823F44AE7E283C2D7CB1629C2DE7CA1FE371A75092467E73A2FED2D17F548C395E
bin\System.IO.IsolatedStorage.dll
md5: CC97A1D8F4B2472939A6097EA2C0C573 | sha1: 955EFB925260091BB042F3C5E1BB20D474F67DF8 | sha256: DD33964FE2F24ED68EBD9C0BD13542D93E6CA689F5CC00891DCD6C2D80F62F94 | sha512: E07559C9AB1C8DCC751319B22265BD867B654DE476B1A5C7E40BE5ACCC803185DF2E0DD167AB527DCDABCF924FC3E15ADED940672B792AA6CA8DC88A595B3316
bin\System.IO.MemoryMappedFiles.dll
md5: 12C6CB86BCF17BA1146892FAA0D46BC8 | sha1: 61C120389F6BA266174F14CD51A572074A4243F6 | sha256: FD1652D6CD6BBCD8D34AB4E7A7B3ED56858365DCE8104FF984EC5F787F2F94CB | sha512: BAE527CAEA5AC31876D50856CE8A74F32AC56F42DBBF731AA7BA78CBD1C35E93CFD8CB51CB72FAC0B804C013C9528872AD660EC47CFC6731E2644BBD89740108
bin\System.IO.Pipes.dll
md5: 745EC91E7424CE71F290F24E532D282E | sha1: 01CEDFBDF56A85E40D5F6176D11187F32154CDA5 | sha256: 0350F3BDC6D3223FEAEF716598AC95A3C011E397B08DC901119132780D9ECBC9 | sha512: 7367A34D1F20F49FDEBFB576E6C80FC4027F2B7C58C884983F84CB885E58C99BFF12203C184B7281933D7BB9CE95A9378E4923DF7DCF8F5476F2897AC7573947
bin\System.IO.UnmanagedMemoryStream.dll
md5: 7599BF9196D3F4498EA5F97C418A7D1A | sha1: 3A0EFB3C3F522ACCBAA061D6ACCB4437B025E32E | sha256: 3D047853975D8276ABA88AFAA6EB2D470AB579DF27D356CBE86AC7379D4FA2D9 | sha512: 2BBB12FFE111F61C47DE1A047A8E80C51E57640CFFAF4F38FBF07F367F06ACBC368F3A930980F2F4772F6C74C67FCF6CC4E9B6EE48122291595E3E5FBE02B06A
bin\System.Linq.dll
md5: 65A8030230574E62781023D75D82DE8E | sha1: 1DD19F3587EBF8A93C43F8820C9B8B7F24E8F23F | sha256: B151A50FAC89D886C12A7EDD58432ECB623260D339A17FF6A28F486B925C61AF | sha512: BA1FE3091B643F5AF242B35C1F0591E5B7D47FF99C07B7854D244CD9FD08ECDD79359046E51E69806C13E6957F0C96BF9E319C8AB91F5DCFD47D356F2EA2DBE2
bin\System.Linq.Expressions.dll
md5: 6A41A42CB5C6755B77B36F2929EB8692 | sha1: BE29E442AF33F3DF0FAF33046C4ED4BA11A66631 | sha256: 77FD2B5BEF992E189663A1C59CC11140C1F1E0FA3424C484507FF1A0B40DA82E | sha512: 065C7298FB8514FF706B208626353EC2E9A94F7F9EBC31D7D05F59B1D6D94D257604C66952012740EFAEA0871056A4E21CCB94361DDA92D566CD4DF2C44B2712
bin\System.Linq.Parallel.dll
md5: 7139FF5BDB47653D38ADD1BB28D19038 | sha1: 6C3C1F3752D8F5B825E9B8D7CBD39E531B43E23F | sha256: 79E4D8CB5EB0A33E0FFF169B08D71C9A40170877FB16F5EC84E23A98AF7A1F17 | sha512: C97363A51B6FA4538E7A601C24B7C306AEF0AAC4100D9876BDB13F221854E8AA8D7CB81418504B8143E3369AB3313E239C9D94D7A5B7256B7641EDE79DF2BB3A
bin\System.Linq.Queryable.dll
md5: CE41A7F2012C3D019938128390AE2DB1 | sha1: 3903723DD8A8FB1B355A7CF3A973D31FA7BA5759 | sha256: 7FBC00FAE921F0D01473485B2E131879E465B3CC23329B68D02F39B10CA79970 | sha512: 31A1C0513C8277060B3D006D467CDC4CC56C0D02DF8BE902B85ECA5153876A3B36E944D227C3AB2646BD84419359651636450704964B167CEEEED87A23ACE2C4
bin\System.Net.dll
md5: 4CB3BF4E6FF9A00C8EDCCF6B31A74B26 | sha1: CA37B3AB7CA11C385EE26E6A5F38A95CB1094BFC | sha256: 458405C99AE19960C82EF6008423E9BBC3A94199D43B67BBDD2F079F3A68CE65 | sha512: 61EF05C69920AAB495FAAC4E7FC79681A6F58CAF113B9FDA848687179BAD3AAEBA3883393B85B9D797E1792C09A1EAFB934B1C42B7C26034BCBA8CADCCE77CF1
bin\System.Net.Http.dll
md5: 26B7CED7BF86C8FCAAA33412AF52931A | sha1: 9E41B8BD86A22B54A8BC5CF715C8B400EDF797FF | sha256: 3309F708E8D425A53FCDC2CB01359C4D858975E582656F9E6ACF74BFEAD6E803 | sha512: 7E10595FED8569FC1029D39B48513A38A84EE74F8F7A3505E639A5228C35D51A6959DF4761064BCB43A4DABAF03DACCB9DA6A09B16CE0800FA5D52BEA8A066B9
bin\System.Net.HttpListener.dll
md5: D28697388C3DAA4200CBEF696B1E25A8 | sha1: 6BD9A1E52AD73DF457C4C6B3446CB83AE5FE5779 | sha256: 5BA3234F40DF139A734784C238E3A373FB793D79760FDF28AD45EF1E3DA42E9A | sha512: 0F5132CF7C2AA7CC1E56C01197AB3374003AFEF3A24D3581F1B804076FA2D01F6AF5AADF24932204CFE4FCD774D7D6941A21EA6B9ABC2C5E9A95380C24BED837
bin\System.Net.Mail.dll
md5: DE9D3E26D580322B8873111C71411923 | sha1: 80963A1469605519D0F8AEA43F4296257D918B2E | sha256: DE82DFE98E35B839371A52B33F294630D9A01305FF1DEA64048BE36E257F1B78 | sha512: E8249CFE1CC5BB92999D2BDF3DBF4A54711E4A4F2F9F2DA5CADEEB60AFDD95961DDE9546BEE6226BA0FE5C98AC19CAF9DE4C16F4E6C020F1D11B9B2949BBF5E4
bin\System.Net.NameResolution.dll
md5: 2B7F124E9F5A506D753F39B29B495FF1 | sha1: A1EF3FAD09A84AD0B99CAB2D04615EB734C4A7EF | sha256: B1CD5C23DD0DF53D6BD8ED419F7BEB66B47DF1FD8C10C9577F41B1DC0133C1F4 | sha512: 631C308B89697EFB9EA102BA95F1382D98F4CB802B5F0968BB5D941C296B8AE0D46BABA680A78F88ED3FDD43E075F634E849B3FF0B9D127843A933CBA0BD3D4C
bin\System.Net.NetworkInformation.dll
md5: 3CDF14306CAE5212EE32388C0269F427 | sha1: 49BEC5ECF835B382E6E9CB420A1C2FFC33B49437 | sha256: 726C7CD32D216938391E23AE540DF1259CFD6266AEF749EE64BD448D863FA695 | sha512: 9D1E90585E9FCC65AA123623C15E15DA8D24B8175F8E6E07FF6341FFB4670E9C51C92D0453D24488318670F58C663BA702F40B2E4551BA344D40AEAA7F6E0CBD
bin\System.Net.Ping.dll
md5: 8E5C8FF60A3EAD646C60AEBBE241D595 | sha1: 8F1B836FEA5A3C43639A86B908BACF93D266E3C2 | sha256: 9AE1E297B1F0BB17969099A01B5B3844C015A528988482A286EF583203BE4B7F | sha512: AB8CB13D6B83CAD1AEF68F4DB660121E70250F5FCB4B13D34BA9DF6F75156968D25953591C6110613AA175F91B02E13F386B6C89DA17CB1770944C50E5F84911
bin\System.Net.Primitives.dll
md5: 17C8BB9FD717E27502115691B7A896BA | sha1: B7D23F0E7FEF748503D304DA29A9E328CA26A209 | sha256: 43EA0745EC5221B9D092E128B6E29C7563DB5E6FDCC71BAFB16651EB1F51F619 | sha512: CCE3137589E16EC4FF710100C8FB11AB0844AD98FB5EE9D04C1CA29A7C295B07F88F96AF93E3EDE3D7075126A94A61FBA8ABCF770E96C9EDAC5E00C724FC73BE
bin\System.Net.Requests.dll
md5: F55DFE49B06F894C7F9C1E1CFF9DE1B6 | sha1: D84EEB8339B6DAED010DF82D5E33F3E511173549 | sha256: 01A88FB7FA6EB35907B915417075A1C2D7C1D74285354D96B7C4B38CD111F5B1 | sha512: CBA19A1868CFBE14D0F9086F559B8189FF7D17F4A0FE7E2BA9D0E655A309428469C34E7675E950CB3B6715A2D1E5B2313637458E8774778026D60296BCE9BF76
bin\System.Net.Security.dll
md5: 23088F3D5D714DB320EF4D0B1937FC7B | sha1: C4EBA6F76F3FFE2630259C216D0AA60897F50217 | sha256: 3248929D1E564E5B1F1BE454307618025093CF31D26306B0F5BAE926040B0DD2 | sha512: 4985050F59796266D5654E5BA3E53CE867BAA65F4722CEE83311814E420FEB0B02C796B9E91103EDEACDCC8181332CAEEE019D6981C17C32484FC52305974EF3
bin\System.Net.ServicePoint.dll
md5: C928C3E44552A3A67259D1A625997F1A | sha1: 882EA7BB29FBEC3D5D8CA7BACC8BB1BEE0FD5AE6 | sha256: 0C0231644BFFB3FC707D929ECB57EE711D7E4DD57CAB1AE40DE3751178ABD3CA | sha512: 90AAFCA64438E89E59C082503F0DF77D9FD9A162B268D245171D0D7703FBBC63B72F3318784E76B74AB6C21725E17BA2C4DD9D28A53DED384B715F4E53EA0A0D
bin\System.Net.Sockets.dll
md5: EF5627A256FD709FA852305939DA0209 | sha1: 05C37763F50BC70FBCC130422F001F464AD15D09 | sha256: 1DAA594C1F055A558727F09546E7DD93977235D6F898BAE3972BD26E745E7150 | sha512: 731505BBE64A0E3AC0915B441CBB3CB80A7F077B548B7155C146BC9A82283C2F2B8E25D311884D3AE326C01902F45D032E172B186596FBC07EA69DA4ED3B031E
bin\System.Net.WebClient.dll
md5: 84FB1BD6375BE1E93FA394BF90746685 | sha1: 1DEF30FDF3F247CC238D932A0AB116CBE905C018 | sha256: FADFEFF5CCDF2181EE6F265195240E8E03C0FECB233CBB247622A243AD652E77 | sha512: 4ED18A45C7CDA27989F51C33FF64D344A767400CC29F2C2EDC4834F518861BFA71B7388A2A985B8B9B655F948B28394E1325584A95D9FFEDDDE0C3FA4604FC80
bin\System.Net.WebHeaderCollection.dll
md5: EB4C32442C19BD26E9282F657226DB56 | sha1: CBF1CB4CD11E11858C6B3412F44F0CBFBDBE3511 | sha256: 1D8DECA544C1F7F1E99C13102497182255D48FAD717AB59CCBCC37AFA05F638B | sha512: F099D6B0B337FCF6024471356C7E55BA07BF92199165E29F7E188A626DFC38536404ACDF48548C1B5A19534570AA8ACADE9E440E91D118D64F2DC760AE450D93
bin\System.Net.WebProxy.dll
md5: FE14F57D90D241DAC01AB6DA7E0F36F1 | sha1: 99F96F5BA980CD25E63AFEC8ABDD285F5AFB345F | sha256: 39E520AA4A8E23FD0317296930DB51BF9F0AA3612EA13EFE7EC067EC6655711E | sha512: E2B36511CF7C6BC9EFC89EF50F7515661F8928E12C8F5948E39BA700098DA337AF754763E2D0ECE05DF848DF49B5D52A01672D2D673ADA6990AEED11D77D26DE
bin\System.Net.WebSockets.Client.dll
md5: F358EF2A085E74B31B82BB8FF9D63EF2 | sha1: 42D5773F123F24F784E07C455C983D4C2297BAA6 | sha256: 48010888097FE0ABFB4247C8D792E8F0C61D0F9EF69B4E48B1E8CC84C8DC8F2C | sha512: C2A0E459555D1FB532C87A6A623C256A058CE1AE06A03842E51E7158088835874654F755E12173893ACE55E06EC12371F6EA8520B8B353CB0F71CD5E8E5A2BB0
bin\System.Net.WebSockets.dll
md5: 813DC0BB0633A804B494110E5226DC66 | sha1: ACB1DC8F9B3A667E8ECBB2E2722960CFD9A11F24 | sha256: 7FFA2DCFD503BD666798A7ADB816EC69365041505F19867CFF17002A92E10766 | sha512: 67608E76A550B9CE60E8C3649AC2DFF72CCAA3A4CA3E8351D0E36689EBBB58AA095C1BC200721A0AF16CDEC04236C551ECCBD7E69D268709E2020A11396E26E5
bin\System.Numerics.dll
md5: 0F6FF4997B46513534A542FDCBFCEE1A | sha1: 81E6E415D29BD01E30D31977536BFBFE4036DB18 | sha256: 98B943F0A53E67A65DC504660B0C3D00FD1572F947517A57042E6363392CE3BE | sha512: 6EF93347FF5623766F07E1C9C7CE9D9C8C570A1FC6376FD84791136F43328B29934FC65B24E354F3C9B88FFC2696DAB55A2EE0A969FBD5D801FDC0C46CC25D35
bin\System.Numerics.Vectors.dll
md5: 37F487D80A0276681650E32367A02EF0 | sha1: 089B8D16A3FBCBF19F19434495488A5DA6025BA3 | sha256: EF818F59295CA29E6FEC220D8B5EC72B98CD19F710B988C4B8D62C41A9964E25 | sha512: 82BC0356B2FA37C360991E10889E4CAA7668891F230BAC70DB6B2E6D6EBDECC65EDF094E0B35AA0BA5EB64FCBA4A66BFC0403BFA1806567EAB3172063531982B
bin\System.ObjectModel.dll
md5: F768D652401D9AB70F0EE80A1F36F4CE | sha1: 8A55F6221327AF8B37C54C554F1A592D21A43706 | sha256: 143CAA8D03DAD508C5678E48BF697A0FCCC559084D35F3D55B9DE7A412CF1BB2 | sha512: EE7D9D2ECF9C0092014BCF37909355624911A912F11E5A2C6BFA0D5C79DB75D926347BA22DACF4F8861B7B9F091EADF7EFAE0DABFD036388A82E9383B5745E60
bin\System.Private.CoreLib.dll
md5: 5EC15F7595738759869FA69F6E1B39B3 | sha1: DF0560FC9BC1EEE06013C22A31E144C6C7766194 | sha256: 4CD578AB4E75D36BD895AA5DA8C49DF76CFE77DAE365C9351BCA6164F0F8DEB0 | sha512: F5A5954973FF127735E4BDA0C2CF7A754134250AD48B6C0A46482940F53A8DC3D538CD2B4EBC6A04217BC729C7A390E9D78F6BC4FAB8BFB422BEA65C1D66780A
bin\System.Private.DataContractSerialization.dll
md5: A575A357E99702EBFDCFB1FA3E068F49 | sha1: 4EEF00BD0D0AF66422D9FE5CDCF2327E67C882BB | sha256: 395336B95FDE6D44D59ACD029B163DF89535199856A82CC1BA364C454529FC56 | sha512: FE9989CBE9AE0F260B571AC0987E6353E3E89FB496BC6FA2EB4CB68C62938B3A25109F34097C6C9C83992D40FFD5F252FC47A5C315B101B510E773EC90843045
bin\System.Private.Uri.dll
md5: 8029E4D04DA4DD4D5CCFC86931F2056B | sha1: FEB08D0AD2768BDFEF07A031B640DA4CB90B3EDF | sha256: E9A8DB7D14F2C91CC4E4E4121D13F65D39C7A617FF9759F1C435217871A95A9E | sha512: 273412319C371ED5BAF2DA71AD874699D69B5E152452B8175F214B606FB1B098CB1267C24B8DD8C93CA0CE910A18C1CB4256A576C5C58C2594D49DDEE17F6B8C
bin\System.Private.Xml.dll
md5: F0C5B767A0F0BD3F13527AA0B3A678C0 | sha1: 854F1B79D764B8040965E939F96ECA4308E3171E | sha256: 376795350F29512DE9D0D8949AB9DBCD6CAAB4CFFCB28FDCF7783F9666DB7140 | sha512: CF04C242EFFBA1C356DC1B031DB1F7E88DF2813596DEA8AC959298154C526D3BE33A3E2FF8A250B12EDC882FB625713A88EAA02FE4A225D64159821C6B86D29B
bin\System.Private.Xml.Linq.dll
md5: 8955F743DA2C5D2ADB577B01D6CA48A0 | sha1: 134A84C092211AFC22BD32090FB2B259F2515030 | sha256: BAE509C0262F31AB9EC6566C4B926723714A7F07FE7E55F5B5677DD6CFC7CDF8 | sha512: 348EC14CEDAF4A8BD2F57517BF0AB155CD7DE1A34F958347EA0148F1C0F260BE73B167776806989212A5BF2C1878289CC423AD2995C1277D8254A56DB92A74FB
bin\System.Reflection.DispatchProxy.dll
md5: A700FBCFDC2FFA4E8B9C2DE84C6BE4EF | sha1: CC367332A316837E30B6C432CCDE53E1F23EEEC1 | sha256: D8613591B451F6F898E3EDFCA3DCE1D40C57F5DB8137B003EC9AA13A342C742E | sha512: C79C8B435E84E86DAA5437FF3D0292913E1A9E5ABAE3DFA1C8892C9F2126AAF6E8801BF6AECFBD3BCA945FAEE4804F04FBF0F608253296F3AE0B5FDBA6E9EE2E
bin\System.Reflection.dll
md5: F71B120CCD1946D9EF5437DB87C720E9 | sha1: 21DB6DE336AA4905A7DD08ABE5067A0C44365E33 | sha256: 5F36A48A60804CEEDC2E8D6D6EE252FD56CAB4C91B0E2E4055AB7BBC743D1A5A | sha512: ABF6F9CEFDA81B92607CB05A7B87F20073932FA506B322FF5BF1B1438CB5590E39A90D5A9406E5934B4925C7864FF24756090666DC8306B16445828FE1AC5804
bin\System.Reflection.Emit.dll
md5: E37BBB7416346411CD2B54A87347D228 | sha1: 7F394A0D48DADDAD6702C96A5FF84688F81834D8 | sha256: FA7BFC04C3B830B134983A03808E95521C69AA66150EA7C508D03051F8463828 | sha512: BBDBC541ED38A382D4B3462A2167BE0CC4EF19BC65BFEF1EC397B22B6C306991DEA957F9692FFB7ADDB981CBA57296CDA1706C43DE79D6B380C37E1BF3FC198F
bin\System.Reflection.Emit.ILGeneration.dll
md5: DF71F4D7ACA3CA8547A6414BF672E29B | sha1: F6EA5365C685288A915BD3810C758CEEA71E6DE5 | sha256: 90BE144A912F5D9A1B56DE572E51946150970B958074B5873C99C31B8E86E55C | sha512: A7CF87540525B445FEEC6E8DD519336B1601D88F32B314B769B7F3250CF050BBE74FE393F24C33122890EB0D337A2C8083DA5B3A3F4B1A6EAB43B080B41F5831
bin\System.Reflection.Emit.Lightweight.dll
md5: C44A874A4D1A86DE1D6EFC78041700A1 | sha1: C2E0987EE0143A3BF1EE5790CACBA15422E1C813 | sha256: 7FC26B2C5A63FFCE9477D970CE71F6C586DB653E5BA2F9EBE8CEEF8F3634AE66 | sha512: 47C4E237771BFAEBD00AF9250A6918702EF130F328112A4F6CA0DC1C5DC1A72E10D2F7208F183EDC994F1269DDA8AFD1ED1CD7CE3EB842F208643571C97EB39F
bin\System.Reflection.Extensions.dll
md5: B7536367149004C821A6C4DAB197C6AF | sha1: 45ABAE53A3D1EE687100B85D7A3CF155EDED73B7 | sha256: 215BF2B9C534BEA1CC6CD0B4639C078FB2708BA0BB2D6BBD87A9F28120FCED38 | sha512: 6017D1DEFDFF44F968A55766A58E21A771D3F76B522812A0FE82DE7F98768DCB4F3385DF700F3E970E9817B71856BAF80289B4FD06899CF026636E8053C4F400
bin\System.Reflection.Metadata.dll
bin\System.Reflection.Primitives.dll
md5: 5A24CD82E9EA73F0A3C5485EFD0CA487 | sha1: 6CB136D4D771B4F572AEA4FD32DA5CC3B55BC3F5 | sha256: 38248066B433F006D814F1D638A57117E49112B69632ADDE525DF763ED867BC9 | sha512: 728ED29E630A2199F0C66D90FB9B0E6D6B1DEE6E678E729EFF09CFC7788A06C352689FB0B287619895E126C586C24A3CF720F0B318E7F3E568897E65416F0525
bin\System.Reflection.TypeExtensions.dll
md5: 4E65F9F5CE390B245DCFECB54C96CFBC | sha1: E3CA5C6832A46F84B6F3BE2BC6A93D21F855CCED | sha256: BFC29D6A0FC9767738DECFCAAC3100249C53C61CB0F977EA52E88F7CAEE50BD3 | sha512: C8484CE46738C0FBE1A9F3EAA660949684FFA0C93EB15E4A864B1D5C9065F670405A37C64CB60340554CB876FB173E942B704784012D6AD2D573CC309CD06DA3
bin\System.Resources.Reader.dll
md5: CADC10CA158D64EE0860E98C6285092F | sha1: 9496432BEA5EB0022E1C9DFCBB51ECCF2CD39939 | sha256: 172EB44A008C9DB6B6F67364FC236F5B40E88E6E3848903A78AAF5BF86964A2D | sha512: 914C3895721AFBB8998E2E021B75BE45BA8CCABB374E83CF0800765F8A2776671CE987E040823197AB702CA5E151ED6609B34766D3DFFF5A6971791551D43BF9
bin\System.Resources.ResourceManager.dll
md5: 3971D9F86488570EB435C44A3059872F | sha1: A04C3710912E2B230D0D80EB9B87581A8F368AE6 | sha256: 8F4E2A9BFAB35D8AABBCAEEE7C02F62E2C2DB3E807B101C23F5FB7C27596674B | sha512: B00FC30389EE9DBF0A4CF552A01D92421D31E7FD07A75E5468B03D521C3FF26F4730EB15DB264097F72D8FEBD14895BEB7A6CE93C2619DAD439CA3C0A2375BA8
bin\System.Resources.Writer.dll
md5: DB30AA7742917F50CBB4F6FAB2373DFB | sha1: A53A44BA50FA64D9B7749E0BBC85FF77DD44ED6F | sha256: EB6A1A37A7C68E2172FB2D53FBE261AD2F1935D69B9B5BCB91010604CF5178E1 | sha512: 8322774D39E75D6D2D8011356F0419BAB783F87AF9FA75FE7E26DD910FF40D355968561ABCA45138EB0DA0C583631B4C34B62719AD352F361211DCC58D91355E
bin\System.Runtime.CompilerServices.VisualC.dll
md5: ADB42AE10B4325BBF9800291FDD6DD0A | sha1: 55AD83F17C47CD92450A2938FC0E48232DA9C0D3 | sha256: A3F8D932FA7E4B07060BA9D977B78C9C37A41E8EB6941E52B584D50646CF05BA | sha512: D492D437423DB5CCEDD6EC8C68B981DCCE74AAD657F70A27863E683EC117DCAF630222E2A99BCBB6ACDCF085D68E6C71CFD9E02198F191E34188EEE3CEDECCE0
bin\System.Runtime.dll
md5: 059B1F863882B73EEC5FA85C0944A597 | sha1: 861D9E536C1658884D1CE18E27C295CA9B6F0682 | sha256: 789B3C70FF210A5D2247137C1D8115A7ED9222F4AEC5588A177A056CE291CFA5 | sha512: 072434CCEF1F19490050A615558417F21915A10803AB5072A708CFCCB31A00982CDBF8D9CF65D9169B8C8BC1A10462EF8447EDD3DEEE94EDB637B0E7A93D5FF8
bin\System.Runtime.Extensions.dll
md5: E9FC35978D991AE6CFEA3EF52D7C6E1F | sha1: 6AA4E7AA317B394D71F8373004099ACF522775EF | sha256: 079C84EDDC0362281EA04CBD49F3804BA7FDFA24B024E56D24D2B2B44CA4208D | sha512: 119038A51A54E915A4AB70D7806E2FA140CA5EAB12607C2394B31EC91743E61A0CD5277E19550D0E4494C670F294B19B078D6A1E4D43F9F999942896FA3F0EAF
bin\System.Runtime.Handles.dll
md5: 7DC8CAA71ABB6088A8FAE5A31867C6E3 | sha1: BF05D3EF0F37A95CE75619962034D63404263648 | sha256: 5255CF173F0B1B8C5CAD2DF344209C4DF92E4850936768334347DA9B2155F847 | sha512: CE0906001AFF6BF43EDEE549E8C3477D4F62C05183EE0411CCE90A90C5EDA5B9902C0EE6836D69F0C6EABB71BF5A3E9D57E8F450D90121DE145553F69FED2F2F
bin\System.Runtime.InteropServices.dll
md5: 27EAB6A8AD0FAE1E89D3194B59F8F349 | sha1: 46DE768461AFD18F1C44028D6EE0212809F5D514 | sha256: 04A782F4660EBB81EA90E6754F7D42F2C8E29D01512D8EB1C3F82087942CAC90 | sha512: FBD9CE81B84A8A4A0A247A3B4F28CBF94F8319943CAB4F1A8DD029188858C9A706C9774A87B7762CC87AF65F7F4A11410ADDC23EF07A54318A8969C2F8936CAD
bin\System.Runtime.InteropServices.RuntimeInformation.dll
md5: 150A10759EAFA34229FCA25FED2A49E8 | sha1: 94BD68C4F920B91D6E4D7649309C583580D70EB8 | sha256: 35A48E9D7440AE901531480CCD7EE52B2E18279117F582D810AC84B60C313855 | sha512: 7FBD471724F5B756AE4D1EF1C3F6B2A3347D36D35965AB36FF6E0E262DEAE7B22B81FCFA1F17BF63B840DFA322B062D3A1AA59459B3B8AABEA8231355CF97820
bin\System.Runtime.InteropServices.WindowsRuntime.dll
md5: 3E9F982D7FE29F1C4E1DFFB021D98D4F | sha1: 8439FFFB64C28E82453B434B0BD792AD118D92A9 | sha256: 9E0ACA2E771B4D3721A5D1F70B1CE2487A284478B7BBDC8C68886C2BF698FADE | sha512: 56207D788BDF475D6C8A80FEC21AA246388BA25E55D187B1378013E3FD3E31753B48BAF449C8BA297CC5F42CC9C281CE31721C0EB05E322A8F6209F18902F6CA
bin\System.Runtime.Loader.dll
md5: 66C43417A98B114E0167307665640B03 | sha1: 0D89394A5DB2037EAC44FA1C032C530A61C93DFE | sha256: 32C65E39D4B32CA5D2B2B33A870B5293BA0C54A1B858F6181A1F089102759F51 | sha512: 288222506298A065CFE068C89367730FBABDD3A5446316C81E7958F5F5A7F130890AFEFA35E2CA5AE61F941D43FBDE2F3A12AE3954B77547FD8061B39DC9BCA8
bin\System.Runtime.Numerics.dll
md5: 1BB89117EB625EB2932DD7BAC34A67BA | sha1: FC07173A8142B975224AA9E0619D2B88B2F0DD9D | sha256: 969EC839D3EDB1DFC267D611B335D4470D8F4414ACB0C8D4282106349D9D9A48 | sha512: 5388CD37B387DC88A2BD5E5F5268BC8A89D3208756CC8F5977876F6D94DDC7E1CE5BA8F64783F96BCB3F58730C6D86F5D315ECEDED7969DC1B408E7835622A97
bin\System.Runtime.Serialization.dll
md5: 690195C8B94E44727F97818858601EBC | sha1: C4D67271AD0BE738A8FFAD8A9D47B6815F04AB53 | sha256: 6B3FD1F3E0DFCA877B4F6D434D2CD3AAF9D8A010CAB1450CD1699C3E67E37FAD | sha512: E639B68011AF97E30C3144CA8B07D328CE3423D7C14035A7EFBBAD2127C1E9A30C7E51EE47890B714B09E73EAFAC940644365C232391B71051E66B19FE6A5813
bin\System.Runtime.Serialization.Formatters.dll
md5: 7ED7FE97BC937E3C593B1D1E7F0E0371 | sha1: D1D042BF98316777F39FCE0F1CF8F8D2BFEA5170 | sha256: 3D9DC6898F8D1AB41DE064C5C2669A1F2042147DE5E2BE80F324E30524397419 | sha512: B99D4C2BD3D98869C8C64D18F5D496BC20C7F688AD33BB21B4BE5A1C74B9AD01270316E3658116DC468571504FEE4578C6DA5685775FE8D45ED3877ABB74973A
bin\System.Runtime.Serialization.Json.dll
md5: 2AC8D483241C74EDBA4517956F031928 | sha1: 4D01AE964818F626FEEC9F8F4DAA5BBD579F8202 | sha256: 4CCC4251A76F25C40C9F27D0A2DBCB3206627FF9D2A58644430DFEA771B21D78 | sha512: 9891DB70210CBF36F8012D4E85C4D7F366CFF88036B2BD97164E5B699050CFDBA737FA847D19EEBE78DB95C757FC7FE1B36E597A6F9A2A75D86E249709918B2E
bin\System.Runtime.Serialization.Primitives.dll
md5: 497CEA14D3199A91298911313C6B7D2A | sha1: B7BFBFD3C345ABC6A7F0BB4BECB3082B3A4F1E77 | sha256: 215B04B8A907C830C74B1DF8411BBF10134321031FDB05CC7006437FDA50FD4B | sha512: 954E9679309F1A6FCA4FBCF587B8ED9B6BD0E259625C1D8007432A7AC069B3ADA2B10D52D53C104AC14790C023E3237B234D0F410BD6923C42389C2353C33A3F
bin\System.Runtime.Serialization.Xml.dll
md5: EFF8B22BBE3BB5ED6F367E5D09FB7138 | sha1: EA336A648B56C6008DCBDF8BEFC5E637263B21D1 | sha256: 36467518A165447E46DA74E33BD5F2576B297939FA7455DB2784887EB0357E4F | sha512: 0B53320CDD23D4CDED23FABB410AF3009F5728783D4908787B8EA99F80B6AC5176237A9C0F66D3F7A67575DCDB828842C44467117384315C19E0AC650493CEFD
bin\System.Security.AccessControl.dll
md5: 3757CF3ADCE7BCBFB8F65C531D127510 | sha1: 6F8A2BE011985418AF0EC8C7638C1FF9755F23A7 | sha256: 13B23878C8E6EA76E82AF8ADF9EECCC6517284699915FC2BB3BD2F8E5D625163 | sha512: D8C51FDB782EB1B5F0054AB958C562E0A87BB9AF24BF9FEC9C08F59D2BB22A3A837C5E44E66B1C9738EF7D35F45A956D72AD5A78076B4649C4A9B727388E1F99
bin\System.Security.Claims.dll
md5: C4DAB971F7C1C11A8552D738EA2A636E | sha1: BB30EF8B534F714896C4C79A0299435B0D9A9EB1 | sha256: C16B2831AE0BC2FDBF18FFBA72EFBB1579F87A2ABC9D0981294042D2AA1AA276 | sha512: CC60E9834467137D9FA7552F0814377F7C4EBACE86330277DEB031BF936D8DF15A09F6C8605F7FD4B482D0D62B113F5BF7142E32960C7FE64298D9A56E208606
bin\System.Security.Cryptography.Algorithms.dll
md5: C7711784AACE81405BE778B771973172 | sha1: 4B23FE35A26DEB8D6B4D39F32673F028A42BCE92 | sha256: CC63B5B55A1E9BCBDFC22314837CCB54A40752807E94D1E1093E33266B830C0A | sha512: 6F26CCA886045189A7940811B0F4736332F2F3AED425C5896DEC43F8F01C252C726B07E67C8E925F401E92844A95F8F6D544D95A435744D63CDFACEE490C0B34
bin\System.Security.Cryptography.Cng.dll
md5: EB52BDC5528F2A52AEC043B2F8B5F348 | sha1: 711D8AECACEA53DD91638CD5F5E8D7E16EB00500 | sha256: 3ADEBBFF2E0CB7E59EDA36C96CEF05BB4B7D472382CA5B8762369E1298B91DC0 | sha512: 06DDB561F0E3C51FA717EBB0672BA09DB14D0E0AE30CB18D9DB921F4C01B4B456B05C1EF8B4B6355147FF861356CF94C5D7AEF0531753065B3F1C1478A17BA82
bin\System.Security.Cryptography.Csp.dll
md5: 390A056FCC6533C4BAC39AB2E12D5179 | sha1: 6457442E35AD9CB0D846F7AA7C10AFC5D8547165 | sha256: 8F2BEC46433B64C64595934C08A4157C8AFCD3F430FDBDCEA2DFBCFB5DFC14D0 | sha512: 57999D7898BC6EB31ABE3FB489B01C76BED08F5D78A5BD0B28985A46A924FA37039064F4C2E13A9469A727BB269D595AA5C11548B19D2432286A590F5FCEA962
bin\System.Security.Cryptography.Encoding.dll
md5: 45F626ADDE294A31415845149D3BA183 | sha1: D289BE3144C01DD6787DF44884A4456FF8F76686 | sha256: 20844AA737DCA9F953448AC6E842E476DAD98E9D4B614B7085E72373A8A2B01A | sha512: E28401C80044212C079A6F89A541DF1C90F2F846E916BA1C58263B548195BBCC8CC1DD303061DA46F65062A01564D81B638708F91747C70CC8A56CA1E9B0A2D8
bin\System.Security.Cryptography.OpenSsl.dll
md5: FCFB40217587853106E2162F5D0FE7FD | sha1: 7295DD6C1A19B44603707004D056A0EADF1E3D89 | sha256: 470CCB9E2683166AA7D8E382F2595D2845C971DD2177E2B61E1C0FEA799E1B07 | sha512: B82C8B531ECDE329072F1084BACF6918B1664B80FB81E0CB841407B94145F17052F0E0E0152156806D3220396823C59ECBCEAA1D1E07ED5292B3C1A67F4DCAD1
bin\System.Security.Cryptography.Primitives.dll
md5: 7653400C5B6BA29912EE157D0887011A | sha1: 85D6B6BAA5478B09ADCC425DFF242BC6417B4FDF | sha256: A14A4B755BC5573A855ABF4BDC399AE7A1E805D130DB9621091640868F49CA3D | sha512: C8B5BBB387608C66C5E258E4E94B78569BDCFDDF4A736FE2739A1819D7B8FD12E2BE71D7F9EE897588AF58AC80A117BA4E95E33F3767FCEF4220F9A19A9D4C85
bin\System.Security.Cryptography.ProtectedData.dll
md5: 91B5141F40E650DF9F24959E002E6C66 | sha1: AC8675F91A4879042ED660C1D800058185552A57 | sha256: 1C73A1B016CFC8D497106EEC08AF07616F2F4C07E4DDC807C9F120CEACD0A53A | sha512: 6E1F88FC7C1ED560C4CA6168FAE9275583C7D664AF1A70F2A0A97A717D4B7E1D40A33F06B2782BB4ADB47AFC8B30B136DC28C0487A9DAEE183D8156DE5E5161B
bin\System.Security.Cryptography.X509Certificates.dll
md5: 3914164F155C321AE36A79F3BB0FDFAB | sha1: D9A1D34D472B986ABE3D0F34D9CFC2DD72FEE42E | sha256: ABC259E1917281BC697543C97EE92CFA3A42B7C04744731A6D29EF978F768D87 | sha512: F4FFF25B9E72289532B213B3DF14BC6DDBEFD3EAE5B45762FEF9E10106B9E919FE4B7FF7D487B25CAFAD92D68F7CF10CD308C174F4DA32CEA9F5ECCDBC1BA56B
bin\System.Security.dll
md5: 7253CD82C632A681C8821099B0B30F72 | sha1: 62106402F7D28C4D78A2D5FDD551BD230471DC65 | sha256: BCC4F31643F1DD86ED638A6DF24BF90881FC0D11AAEE02232F2B8489CDBD7CF3 | sha512: 07EA172510BEC437721B224129F59643BB9C6B706030D2E8A4A468E2EF7029A0D06D56DE92F71EB5496782A9943F018264A10BB1A51C5E1603659F7211DBB6D5
bin\System.Security.Principal.dll
md5: F3645E9FBED4A8809492606CC16CA3FD | sha1: B32670B6579CC07D33D0FDE478368CFFB79DD66C | sha256: 07FD8AF63D85533179DCF56A8C21237502AD320B93B9C6F012233FC137BFDE6B | sha512: 99313D27A00D0CC8A9EA17167179B1BC03E4A1D7E009F0837A8AE2E476B9833A402C15CD90ECE9E5D48FDF6B5967708B01FBCF4C4096FF15EE713334B5728973
bin\System.Security.Principal.Windows.dll
md5: 64D5A4C3EA476ADD3717CBDC9A808EE7 | sha1: 3B484A5AD365A05F26004581088D9D916F15A768 | sha256: 4DC4FC598F5C0F98101D15C6A0A07F035D0481B61FCD0CE6A17A496B07A1FF1A | sha512: 959277D74C2CC48B71DA99AC4F5EFD10C0B49F4EFCDF70C71EC6FF916B241D6FCE735F32DA78BF6146AA37C96B41F0C4D4FC020300526B0809340F7995D724AD
bin\System.Security.SecureString.dll
md5: 8DC90904CE5FD3200B2CDA36F3DA6C5E | sha1: 006188D2F17F18C2EF7C9F57A774A3001D8C49B2 | sha256: 0CD93DB8CAD7BE6E5DDB221335BCFE58F0F205B8173EE14DF6CEFDE909E04A33 | sha512: BEEBC53382E8965EE8BA5D2EC1E0FD55DD620CE9358EE9A78C4596C1CEB09228292E6A5671F9703ABA87A406E5303EEC5358814EB767346C7281D100C35426C8
bin\System.ServiceModel.Web.dll
md5: 55D518CC46038B33A384EF6AA1DFBE41 | sha1: 7D28C4D1C6ACC75CFEA8E900C6ADBD4C38D118F4 | sha256: F450996D1F689EC1A7F11B23965CA4F30F1CD18057FDD4781EFAF84E64774228 | sha512: 714E396E476E7B147F7CD02D49CCA69A6518AF6FC1A326D98C332D7B794E9C6AE09D69C44069F1D3A01DC12C5F7BFB0D0EE7B2F6AD2F7B1C203B1B5C562BD875
bin\System.ServiceProcess.dll
md5: 5BB8AB3BBBBBFA83088108669603A961 | sha1: 2477C9B1B5B3B742B8C4C54DA5821C3FA94052B5 | sha256: 2B3A8E401662C285C677D0C1335CEE13F4A983A1DFC10BA982CC2BFBE1EC8BA4 | sha512: E7FF2BCC8545AC6C643E486368A6C866BA417AFE6BD6C4948E1B107FF0A15413748428175E0D1843C6BD36939D10CCC8F1471DAE6E9EA38E5E7921652213BF39
bin\System.Text.Encoding.dll
md5: 5AD1A4ABC496BDC9C7CF5620817ACD50 | sha1: 9A8A63145AEC3E7E7D9E0060361B771481502F20 | sha256: 236B913FC1AD411C779F53C24B5562245BB39E94B00E8C8DB81C419EAEE0A7F2 | sha512: 4DCC795C23A9690C00BC6CBFC2F2DCA270D874DFE2D7BEEBA3D723F58394BF026C0FDF81DE8B717AE06D6187125F6E5C690C7322BF2C874B4B7E0901A88BEE21
bin\System.Text.Encoding.Extensions.dll
md5: D418FA037471526C9B5C3448BF6D6047 | sha1: A90521BEACE99022AD61DCF51890459CE914C428 | sha256: D667499C1D91937C321283FD775A13B5FB19C6D7FE68AE42D9F4354855152149 | sha512: 4313144D79BCE7F759F9EE1D15FA0134277927D747CD73B7BD2753F2168A764FB6AC71961826591BA2A324531FF48C41006A7C710035390BA1F1255D7562DF0F
bin\System.Text.RegularExpressions.dll
md5: 5C4CE0728B81D3EF128F054379F16AA6 | sha1: 9990D570AC887B6D0B09E04BE05AD360F74F7DB7 | sha256: 17539065E8101B7A6EE4AF201BC55C15FC89A3B01B4DB2255D218EE45BF82711 | sha512: 0F609250E125AB3716CE48ABB88BFD661211895440E6D27C470AD1357A9EDB0C4029C49CE07487BA80C88401D95FBF83966CFFF738AA13DB3DB8A3396CE62C46
bin\System.Threading.dll
md5: 86A92797B4E6FE4D09FF9E652AB788C6 | sha1: 751DB168FFD93717081296D26801874E4BBF259F | sha256: 04D02C0020F5BE65AE9A8D94F948FF739B7DBBC7157CEF8766470EE610640137 | sha512: F42B13266153E4812D8B2CD9969A8535139F17FCD061F3D27640E0BDFE71BB37998E6917EC8B25C938C5AE2341DFB2AFD6A26B91A5C45968966ED7B236039CF7
bin\System.Threading.Overlapped.dll
md5: 1D9830396D35CE1007AACB162B897DAD | sha1: 1573A2F3C253FF8A59F20FDAB5F14CB57DFB08B5 | sha256: 3CD446ABD6BB70A0A24E88973641484823E82526E512990A9BEDF80B92012E3F | sha512: D063DF30A6827F7E97AEE0E99ADA98891BE427B7BA1006D00E50ED5E5B1F5F1A184F5BF4AB412D3F2FA4420C0F4C1E132DD14C0FA27501CA0986661BCB64647B
bin\System.Threading.Tasks.Dataflow.dll
md5: C0E586C18AF57F76E6611973E82D4FB5 | sha1: 380F8E80542E3602AEE6E47D6C1ECC5EF4C119B2 | sha256: 1FEA8BC67BC2FBB427EB206F03333894F2565292DC483CE78A619B3F53FEAEC4 | sha512: 232B9F06A243A49104A84397E723DB206CE094F0C77F773A92E3508D639DF7417C2EBCEF8ADFCF91B41756F140D5CB05EB93CA4F88EBF43E4D5074BF99D329C2
bin\System.Threading.Tasks.dll
md5: 7042FD17209468C3370112100F34C417 | sha1: 13143DD827896B34FEB31AC54B57C89FC486AC58 | sha256: 3022FFFDDC3EA0D00A1F4B94CE3AF1A7972E998AC625ADDF68AB4A6DCA2F0DAE | sha512: DFF297A1C68D1BE259AD63101912D16596AF049C1590EA462B574129547211355D8472C5C0F0B627A596EB0BCB1EE7A3FEBE572CA073828E6B49B0EA4C795471
bin\System.Threading.Tasks.Extensions.dll
md5: F5AF23AE8223EB829BBEAC184B9574FC | sha1: 5BE705C0BBEDE57AD17D74AE5E6C5C683EADEFD2 | sha256: 4FD16CD4829B9A4ABE48B08742F102133B9F0C3E3E73EFEB0F4905CF7D553DB8 | sha512: A927D57D5086B73E52EF4F986B798E0EA2733A2EFF256C1F7534F60C853F8F89868ACA041ABD408C8211A83DE3B02615E67037A12435E8AA71F39546E2A1DC56
bin\System.Threading.Tasks.Parallel.dll
md5: AA753729FF994677D793EA6A336D2126 | sha1: 9C575B8AD3B68EBA934983DA25FCEF6C8805895E | sha256: C6AAC2C35272B423E769BDFB5D39480CA71A9D5B91B34FE6FD771F7CA9AF011C | sha512: 291CD1AB1B8235F082DE1284D4ACD050E2033945F9CD115EF576C4607EBB038D537A86D6C717AB28AB6E55B8D8518D9426C0742E1403F56516B7BE26A513BC2F
bin\System.Threading.Thread.dll
md5: 681C99454C03DA68E2CAEC5DBAFEED40 | sha1: 1A122FE548BD1BF242EBF402CE210C5907A6D036 | sha256: B87B2BD8F98E36F4B7960064B9F18A6718E1F482586E8D4DDB5A0AA30077BBD8 | sha512: 9D358D05CA09E77262D93D79D30C64B346A2A4C9993E6931A61DA0DE4F354C9218249BD6F3A4A0AC9853807A9D7316C43DF7EEE5786ABC2680DE21B1119BD238
bin\System.Threading.ThreadPool.dll
md5: 3E0B1798FE9D42605778D02BCBD56BEB | sha1: E5FCC216D94F821F0059EDBD0F69D804C9FA212B | sha256: D140A9946FF07BC6D682DDFADC82E285403F4CD90CAE4BF97B03728C7072B790 | sha512: 0549A497456C537B2F8A285BD562FA4BA8FC1A79F1868ECE232F4AD97A4DDDD4DE3D2EEFD15B8739E23C24E67752D45D54A92A57CA153192B9C41D5CC1A15D6D
bin\System.Threading.Timer.dll
md5: 724821A1BE1BA1869FB7E67B1127DF77 | sha1: 861742A3DFFB6F1ED822CC2DDA785B9E0FB61AC1 | sha256: 7CC18ACA80898E4381ECA5FA73222FE6F2B6AABB0D20E73D5ADC6D0F1F9B833D | sha512: 793596D5F8C41FD82979F7CDA94E76B12CCBBEA68ACB28154F089F7A22894C85027FA9095898265F69C538C4FDB18C03F0FB3B0741506FFC186F48622AD8FA6C
bin\System.Transactions.dll
md5: CAE33B9479118D430C2F716CAABF5C55 | sha1: FB88C45D4FB4F9B94F208F3498332F39D38066A5 | sha256: 9946B2232D0473B34CC92AC4D866CE6DE6F0D59D119E6651E963F83D73650915 | sha512: 207495DF14A89EDF72A1B430E5E21E3AD0882930B66A8A08514264935895D5B996927FA36462FA78521A6E7769FF329BF07CD8211534F40A9F0D7BA5FF4A73E3
bin\System.Transactions.Local.dll
md5: 7F7212C799EDFEB06C24048837FE6A69 | sha1: 65F76EF825D336EA9D8DFC473A8AFFD175213FE0 | sha256: 599ED6519F298A47BA5F4B8283C6C44BE0CDC1300E683DFF347CF4D5AB6C8BEB | sha512: 8EC350CD9917C789265E5398173CD670C1F65FBD58F8577A3FDA3C0780503F9F00C44A02E235A4D7ADB1CC45F2A744510D9A185EA664A9BD6CA003BE0ABBE838
bin\System.ValueTuple.dll
md5: AC219E3E9DA9FB0D2D962BBD611F2F69 | sha1: 1D89B0BDA24145E9215210DB6748164BF77BD79C | sha256: 7E60CF150A91C6E78F9C932504430AC44C7C0F0583A863ACD3000160569E46CB | sha512: 2FBBF6C6C2B7A596C08DCF435CFBA3DCD96DD57631FBE864E3BD5ACC4CE0EE625EAB002D689175C260E47E1E59C822F150FC62661277B650AD05678FDB3EACB5
bin\System.Web.dll
md5: 335E2747FFA5302D98EA09E022959260 | sha1: C92A1E87566B5A569C05345C578080C416CF4720 | sha256: 2767E6C505F83CD546A23CA365F3EBCD8FE3C303DE1AA5DAC3B2F24DC6CECAE6 | sha512: 268AA25DA23919B064511185E2D9BDA950ED15BBA64BF122F85A2748C3C1EAE028F1D096793F6A0F3AB92F587D66CDFB3E6B75694BAD6F68FAFC7596E6C48B05
bin\System.Web.HttpUtility.dll
md5: 797BD86B1A48D2F8BE9A6A28817FBFD7 | sha1: 9D5DE79DF06E97B27BDEC27D6ED3819487C4CD64 | sha256: 300BBE8D505AE91293974AD946D59A690560FF9C41227E1C7251D178A13A9F0B | sha512: 3652841EA0E9D17E15DBBF8FA652BFF890225052BE92B17328246198E327D3482270EC3D856498CFE7FD256AD219C81DE58B61330907053492B82548F0FB3187
bin\System.Windows.dll
md5: BDFEF392BC0FC5E393ED8235A0FFED6C | sha1: 913C630047C7B5557F5D12F7249A3583AB259747 | sha256: 54EAE9E5511A09FDAE467BFC70F9DF61C19A29429AF7545EA5007C657B4450A3 | sha512: 781482E8382759099FF06BFCD265F6ABFCE98ACF0F48F7A8F75E3B26A07740208F1BAE87CB48BFC8CA1B40838723E568304170D4CDADB18A554D6256159756D6
bin\System.Xml.dll
md5: BB7605CA2AB902C57B155A847F92A2C4 | sha1: AEF0331FD3FDA01EC3607AE676F9C17ABABB7225 | sha256: A91A51E5E74DD29A320D432889EBDEB75C5868EB71CB004DEF4268B703689820 | sha512: 9063E8B3683B42D8FA5517447EF00D23837F32A9323E94F29F3A510C57E66DAA0A3CCD5F2987A2AC07D31DE62141C7ED3E73F5E9E398D3FF069D873FE5D31127
bin\System.Xml.Linq.dll
md5: E10B54653172B4561DEE636839D617E5 | sha1: D1FC012815294CD7D7276EE909DBF3C6570E5583 | sha256: 62111306C0E44B19B0692D73D073F3632306F69C65C73AE0C81EE362F6318EF9 | sha512: 0C6E0798FFF6020CD5D20EF03DB652058A2EB935AA17B2AECFEDC68CD579F25493F2A39159DF079222B07FCE1A2864C66E406BBF065FE2A6B5608DB96A685480
bin\System.Xml.ReaderWriter.dll
md5: 5031EC27E0C650120A06D18AE1D7D266 | sha1: 48B4FCD07EACCFBB2AD39A4F8E224BF73B832414 | sha256: 1A81572CDA7E0E8FDACDB890A4EE6D00D82DD665888D2FAAC88A4B18AC97A4BD | sha512: CEB0F2A2114F8550672CC5A87E79C37ED929CD285BB57A12682782D21BC77111106430CB641B919357B70EFCB2A7C61BE41B8D64A8F3A20F9318E26516D40603
bin\System.Xml.Serialization.dll
md5: E1542C0090097753DF06CAE46849DE23 | sha1: 55112D671E446B1E0101222FB353C7D9AB40EE27 | sha256: CA4BF7A1B55E8B61116E4C12A5FFECD4DC263667C96E4467E606717D4046B9D3 | sha512: 29F430AED4E142B37DFDA7DCD157E4AC26E6B809567242895CE164D53AE05AE3F602A31B9D63BA295D22ACBBB63AF210723E419D97A23E22CE728E219681BB76
bin\System.Xml.XDocument.dll
md5: 59F07EFD039209FC1C1AF0F535272B95 | sha1: 09197C5BC6D8B455020C36212FC64601A8001749 | sha256: D58C7A3AECF1FC48EADAF94E6EB51D08B74F6BEBDC286DC485FFA84D16BF6EE5 | sha512: 9EE9443BDB2B3CCA34A5F02052D5927E25CE786DA50BF422BA4106B67976D7FB732FFFBF7B24B96317760743D5A86BD0D48AD128ABFB92A10D2D97EAABF3CA21
bin\System.Xml.XmlDocument.dll
md5: 0275C072F921B59782B7F6C41DD9B6FD | sha1: 6508A842A79F6E2FA678A0920E2303E473AE74B2 | sha256: E17336ED4CE45A5F7A6C27B0D5ED4849752A047DC621352672518CFD620EF139 | sha512: 1520360F635DCF8810BC7D2E4D9120861879EDC61286AB8FDC6AE55944F7A5E39DF460A4332C729F0F03B4C3E052100CCF61A0D299E47ACD55DF21471109CCEA
bin\System.Xml.XmlSerializer.dll
md5: F72156872436E6E347B20FC00FA5FB9B | sha1: 868E781EDBCC9161BAA6D303D205F6F9625BC39B | sha256: D83473542929ABC1D9847E15F1BC801DDB3564F044BC2B568FC6DDAD44DA2BE6 | sha512: F9BA847DBB6C5D800F0E29FA4EDF3C2287C71014F61E3A8E67268C8A1C3EA811356B3C2F0F440F691D1E303ECF5B3C040BD1E4EAAD202F1748B251FD2DA8DF66
bin\System.Xml.XPath.dll
md5: 0B724D79175395A41E2CC79DFBCE3183 | sha1: AD4E34AC4C2B28989234D1CD8B7DDC4986394CC5 | sha256: 2393657A0C0E33EDE079E265A6DF7BC85BCFE610F91B7E18F76B1A05500B475D | sha512: BC4CD268E278D5062ABC79085E10E0436BDA27EC2718E38574D2D961269A213F094249B47A953F804132C6C0C30B19BDB5A8FE951C45D8048952CAC516CF57FF
bin\System.Xml.XPath.XDocument.dll
md5: 18F1DE83E84AC83ED014FEFEED81437D | sha1: 61702325E5E3E7ED87BCCF5C9C2C384A014D70F1 | sha256: A8992AFD50D08480EF03792E19FBC8C24A9F33D3C65E0746B89E7011FA773A3F | sha512: 30F6304FD5903F74162CED6F91E269898249463DB2940B5FB7DF4705E6A11FB1F02219A57A6A8C2ED06D4B9A97ED7088BFC21496F20DCD2B1DB535E5A91DCEA9
bin\tr\FSharp.Core.resources.dll
md5: A538B3F30B857108CF7235C7250D962F | sha1: D32EFEC4FA7880857F21658DE03BB358F4D2C726 | sha256: F3EBEC50813616292001E308F48D28D2E247F4DD652ABD134AEDA8B221CE52EE | sha512: 23A1D7F915B650D0E7C2AA9D0321FEA2445D3231A52DF1D6017F3A7C07ECBC949868E5E6192B20C9F1502345561A6D92A47BFE95EA251164D4E8961510A0F9D9
bin\ucrtbase.dll
md5: D2C5233317767EE9329F470C39B046B1 | sha1: 42493597D3DED76DAA9A3C5CAD5D4343958D0D55 | sha256: F085B1B009AB89049BA95DD4FFDE276D5B1F6FA0055F58DC3FC0D4B03AE8116D | sha512: 930B31042B5DDC507D4810C10677DB9786B8A16AD8A3ED09BA0A6256DDDC9C2706D1957ABBE3071D09C8CDCC2F142914AE7F7B727DC3E9F8DD7D821D118B715A
bin\WindowsBase.dll
md5: 92C5730BDC59739D7C0693C3292BDC6A | sha1: 877ED9622CCF8F2BB95E6BCFA5F10F6AAF72F8C6 | sha256: CC38BF20BC522F3586F05D8F59615EF107A4DF94A23E9FDDBD56B231422F1752 | sha512: 16F7749F0327812B4893D0F448778878E9F12EE260026B12E7E99D099B9FB7FA0ECFD5003295BC9B1C4C6BEF19B4D611E22145C30EE5D4416A38F8904375FD6A
bin\zh-Hans\FSharp.Core.resources.dll
md5: 1BC0886C2CA050A52E65687E36FD5E03 | sha1: E85C2E2B58B391FD09636508162E6600ABCFB04C | sha256: 20400FAA3605C7BD981B556D25BFA9784C2BDE7EED9D3CAA2FA6E4D1251AFB2C | sha512: 341E4837D152B5A3D2C34887CDFBEEB599D0718F3B9188B61B8C7BF4404EE659DFBB2B826F2F525A275CFDF30D9B7EC55AC86403F138E423D9B38485FE63E1B5
bin\zh-Hant\FSharp.Core.resources.dll
md5: 7E04AE02D06672A5B36AA7087296A79B | sha1: 0E2038C494149E42EE21DAD749C20BC2620E9BB2 | sha256: 3A9D502DCB0663E41A4F8D4DC78FDE87ACD25F851549533C857D0BAD5A402A14 | sha512: 9E2C5ABA20FAC9EF070744DE3F9A9D94A7CAC82F42F33C067DAD003718C2FA4DE24D069C1A652A94C1F22BF6BA343E6F196D8C521DC84DE6868C95A0B1991EC9
LICENSE.txt
Copyright 2008 "FAKE - F# Make" Project
Copyright 2010 Steffen Forkmann

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this project except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.


You may choose to use this library under either the MS-PL or Apache 2.0 
licenses. Both are included here for reference. 

Unless you explicitly state otherwise, any Contribution intentionally 
submitted for inclusion in the Project shall be under the terms and 
conditions of the Apache 2.0 license.



                                 Apache License
                           Version 2.0, January 2004
                        http://www.apache.org/licenses/

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

      "License" shall mean the terms and conditions for use, reproduction,
      and distribution as defined by Sections 1 through 9 of this document.

      "Licensor" shall mean the copyright owner or entity authorized by
      the copyright owner that is granting the License.

      "Legal Entity" shall mean the union of the acting entity and all
      other entities that control, are controlled by, or are under common
      control with that entity. For the purposes of this definition,
      "control" means (i) the power, direct or indirect, to cause the
      direction or management of such entity, whether by contract or
      otherwise, or (ii) ownership of fifty percent (50%) or more of the
      outstanding shares, or (iii) beneficial ownership of such entity.

      "You" (or "Your") shall mean an individual or Legal Entity
      exercising permissions granted by this License.

      "Source" form shall mean the preferred form for making modifications,
      including but not limited to software source code, documentation
      source, and configuration files.

      "Object" form shall mean any form resulting from mechanical
      transformation or translation of a Source form, including but
      not limited to compiled object code, generated documentation,
      and conversions to other media types.

      "Work" shall mean the work of authorship, whether in Source or
      Object form, made available under the License, as indicated by a
      copyright notice that is included in or attached to the work
      (an example is provided in the Appendix below).

      "Derivative Works" shall mean any work, whether in Source or Object
      form, that is based on (or derived from) the Work and for which the
      editorial revisions, annotations, elaborations, or other modifications
      represent, as a whole, an original work of authorship. For the purposes
      of this License, Derivative Works shall not include works that remain
      separable from, or merely link (or bind by name) to the interfaces of,
      the Work and Derivative Works thereof.

      "Contribution" shall mean any work of authorship, including
      the original version of the Work and any modifications or additions
      to that Work or Derivative Works thereof, that is intentionally
      submitted to Licensor for inclusion in the Work by the copyright owner
      or by an individual or Legal Entity authorized to submit on behalf of
      the copyright owner. For the purposes of this definition, "submitted"
      means any form of electronic, verbal, or written communication sent
      to the Licensor or its representatives, including but not limited to
      communication on electronic mailing lists, source code control systems,
      and issue tracking systems that are managed by, or on behalf of, the
      Licensor for the purpose of discussing and improving the Work, but
      excluding communication that is conspicuously marked or otherwise
      designated in writing by the copyright owner as "Not a Contribution."

      "Contributor" shall mean Licensor and any individual or Legal Entity
      on behalf of whom a Contribution has been received by Licensor and
      subsequently incorporated within the Work.

   2. Grant of Copyright License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      copyright license to reproduce, prepare Derivative Works of,
      publicly display, publicly perform, sublicense, and distribute the
      Work and such Derivative Works in Source or Object form.

   3. Grant of Patent License. Subject to the terms and conditions of
      this License, each Contributor hereby grants to You a perpetual,
      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      (except as stated in this section) patent license to make, have made,
      use, offer to sell, sell, import, and otherwise transfer the Work,
      where such license applies only to those patent claims licensable
      by such Contributor that are necessarily infringed by their
      Contribution(s) alone or by combination of their Contribution(s)
      with the Work to which such Contribution(s) was submitted. If You
      institute patent litigation against any entity (including a
      cross-claim or counterclaim in a lawsuit) alleging that the Work
      or a Contribution incorporated within the Work constitutes direct
      or contributory patent infringement, then any patent licenses
      granted to You under this License for that Work shall terminate
      as of the date such litigation is filed.

   4. Redistribution. You may reproduce and distribute copies of the
      Work or Derivative Works thereof in any medium, with or without
      modifications, and in Source or Object form, provided that You
      meet the following conditions:

      (a) You must give any other recipients of the Work or
          Derivative Works a copy of this License; and

      (b) You must cause any modified files to carry prominent notices
          stating that You changed the files; and

      (c) You must retain, in the Source form of any Derivative Works
          that You distribute, all copyright, patent, trademark, and
          attribution notices from the Source form of the Work,
          excluding those notices that do not pertain to any part of
          the Derivative Works; and

      (d) If the Work includes a "NOTICE" text file as part of its
          distribution, then any Derivative Works that You distribute must
          include a readable copy of the attribution notices contained
          within such NOTICE file, excluding those notices that do not
          pertain to any part of the Derivative Works, in at least one
          of the following places: within a NOTICE text file distributed
          as part of the Derivative Works; within the Source form or
          documentation, if provided along with the Derivative Works; or,
          within a display generated by the Derivative Works, if and
          wherever such third-party notices normally appear. The contents
          of the NOTICE file are for informational purposes only and
          do not modify the License. You may add Your own attribution
          notices within Derivative Works that You distribute, alongside
          or as an addendum to the NOTICE text from the Work, provided
          that such additional attribution notices cannot be construed
          as modifying the License.

      You may add Your own copyright statement to Your modifications and
      may provide additional or different license terms and conditions
      for use, reproduction, or distribution of Your modifications, or
      for any such Derivative Works as a whole, provided Your use,
      reproduction, and distribution of the Work otherwise complies with
      the conditions stated in this License.

   5. Submission of Contributions. Unless You explicitly state otherwise,
      any Contribution intentionally submitted for inclusion in the Work
      by You to the Licensor shall be under the terms and conditions of
      this License, without any additional terms or conditions.
      Notwithstanding the above, nothing herein shall supersede or modify
      the terms of any separate license agreement you may have executed
      with Licensor regarding such Contributions.

   6. Trademarks. This License does not grant permission to use the trade
      names, trademarks, service marks, or product names of the Licensor,
      except as required for reasonable and customary use in describing the
      origin of the Work and reproducing the content of the NOTICE file.

   7. Disclaimer of Warranty. Unless required by applicable law or
      agreed to in writing, Licensor provides the Work (and each
      Contributor provides its Contributions) on an "AS IS" BASIS,
      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      implied, including, without limitation, any warranties or conditions
      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      PARTICULAR PURPOSE. You are solely responsible for determining the
      appropriateness of using or redistributing the Work and assume any
      risks associated with Your exercise of permissions under this License.

   8. Limitation of Liability. In no event and under no legal theory,
      whether in tort (including negligence), contract, or otherwise,
      unless required by applicable law (such as deliberate and grossly
      negligent acts) or agreed to in writing, shall any Contributor be
      liable to You for damages, including any direct, indirect, special,
      incidental, or consequential damages of any character arising as a
      result of this License or out of the use or inability to use the
      Work (including but not limited to damages for loss of goodwill,
      work stoppage, computer failure or malfunction, or any and all
      other commercial damages or losses), even if such Contributor
      has been advised of the possibility of such damages.

   9. Accepting Warranty or Additional Liability. While redistributing
      the Work or Derivative Works thereof, You may choose to offer,
      and charge a fee for, acceptance of support, warranty, indemnity,
      or other liability obligations and/or rights consistent with this
      License. However, in accepting such obligations, You may act only
      on Your own behalf and on Your sole responsibility, not on behalf
      of any other Contributor, and only if You agree to indemnify,
      defend, and hold each Contributor harmless for any liability
      incurred by, or claims asserted against, such Contributor by reason
      of your accepting any such warranty or additional liability.

   END OF TERMS AND CONDITIONS

   APPENDIX: How to apply the Apache License to your work.

      To apply the Apache License to your work, attach the following
      boilerplate notice, with the fields enclosed by brackets "[]"
      replaced with your own identifying information. (Don't include
      the brackets!)  The text should be enclosed in the appropriate
      comment syntax for the file format. We also recommend that a
      file or class name and description of purpose be included on the
      same "printed page" as the copyright notice for easier
      identification within third-party archives.

   Copyright [yyyy] [name of copyright owner]

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.


-----------------------------------------

Microsoft Public License (MS-PL)

This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.

1. Definitions

The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law.

A "contribution" is the original software, or any additions or changes to the software.

A "contributor" is any person that distributes its contribution under this license.

"Licensed patents" are a contributor's patent claims that read directly on its contribution.

2. Grant of Rights

(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.

(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.

3. Conditions and Limitations

(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.

(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.

(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.

(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.

(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.


VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
This package is published by the FAKE Project itself. Any binaries will be 
identical to other package types published by the project, in particular
the fake-dotnetcore-win7-x86.zip binary release.

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 81 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 350 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 363 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

BREAKING: Add some [&lt;RequireQualifiedAccess&gt;] attributes accoding to API-Guidelines (Target, Globbing, AssemblyInfoFile)
ENHANCEMENT: Mark Target.DoNothing as obsolete
ENHANCEMENT: Mark Target.Description as obsolete and add Target.description
BUGFIX: Includes fixes from 4.64.12
BUGFIX: Quoting in NuGet Restore task - https://github.com/fsharp/FAKE/pull/1962
BUGFIX: Fix several bugs in AssemblyInfo reader - https://github.com/fsharp/FAKE/pull/1959
BUGFIX: Workaround System.Reactive v4 release breaking us - https://github.com/fsharp/FAKE/issues/1966


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