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

Downloads of v 5.5.1-alpha-403:

373

Last Update:

26 Aug 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.5.1-alpha-403 | Updated: 26 Aug 2018

Downloads:

57,344

Downloads of v 5.5.1-alpha-403:

373

Software Author(s):

  • fsprojects

FAKE - F# Make 5.5.1-alpha-403

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.5.1-alpha-403'" --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.5.1-alpha-403'" --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.5.1-alpha-403'
    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.5.1-alpha-403'
  options  '--prerelease'
end

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


cChocoPackageInstaller fake
{
    Name        = "fake"
    Version     = "5.5.1-alpha-403"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'fake':
  ensure          => '5.5.1-alpha-403',
  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.

Package Approved

This package was approved as a trusted package on 26 Aug 2018.

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: AABBB38C4110CC0BF7203A567734A7E7 | sha1: 5DF8D0CDD3E1977FFACCA08FAF8B1C92C13C6D48 | sha256: 24B07028C1E38B9CA2F197750654A0DFB7D33C2E52C9DD67100609499E8028DB | sha512: C66C98D2669D7A180510C57BAB707D1E224C12AB7E2B08994EB5FD5BE2F3DEE3DBDB934BCB9DB168845E4D726114BCE317045027215419D3F13DCFA0F143D713
bin\api-ms-win-core-datetime-l1-1-0.dll
md5: 8894176AF3EA65A09AE5CF4C0E6FF50F | sha1: 46858EA9029D7FC57318D27CA14E011327502910 | sha256: C64B7C6400E9BACC1A4F1BAED6374BFBCE9A3F8CF20C2D03F81EF18262F89C60 | sha512: 64B31F9B180C2E4E692643D0CCD08C3499CAE87211DA6B2B737F67B5719F018EBCACC2476D487A0AEB91FEA1666E6DBBF4CA7B08BB4AB5A031655BF9E02CEA9A
bin\api-ms-win-core-debug-l1-1-0.dll
md5: 879920C7FA905036856BCB10875121D9 | sha1: A82787EA553EEFA0E7C3BB3AEDB2F2C60E39459A | sha256: 7E4CBA620B87189278B5631536CDAD9BFDA6E12ABD8E4EB647CB85369A204FE8 | sha512: 06650248DDBC68529EF51C8B3BC3185A22CF1685C5FA9904AEE766A24E12D8A2A359B1EFD7F49CC2F91471015E7C1516C71BA9D6961850553D424FA400B7EA91
bin\api-ms-win-core-errorhandling-l1-1-0.dll
md5: D91BF81CF5178D47D1A588B0DF98EB24 | sha1: 75F9F2DA06AA2735906B1C572DD556A3C30E7717 | sha256: F8E3B45FD3E22866006F16A9E73E28B5E357F31F3C275B517692A5F16918B492 | sha512: 93D1B0D226E94235F1B32D42F6C1B95FADFAF103B8C1782423D2C5A4836102084FB53F871E3C434B85F0288E47F44345138DE54EA5F982CA3E8BBF2D2BEA0706
bin\api-ms-win-core-file-l1-1-0.dll
md5: EEFE86B5A3AB256BEED8621A05210DF2 | sha1: 90C1623A85C519ADBC5EF67B63354F881507B8A7 | sha256: 1D1C11FC1AD1FEBF9308225C4CCF0431606A4AB08680BA04494D276CB310BF15 | sha512: C326A2CA190DB24E8E96C43D1DF58A4859A32EB64B0363F9778A8902F1AC0307DCA585BE04F831A66BC32DF54499681AD952CE654D607F5FDB93E9B4504D653F
bin\api-ms-win-core-file-l1-2-0.dll
md5: 79EE4A2FCBE24E9A65106DE834CCDA4A | sha1: FD1BA674371AF7116EA06AD42886185F98BA137B | sha256: 9F7BDA59FAAFC8A455F98397A63A7F7D114EFC4E8A41808C791256EBF33C7613 | sha512: 6EF7857D856A1D23333669184A231AD402DC62C8F457A6305FE53ED5E792176CA6F9E561375A707DA0D7DD27E6EA95F8C4355C5DC217E847E807000B310AA05C
bin\api-ms-win-core-file-l2-1-0.dll
md5: 3F224766FE9B090333FDB43D5A22F9EA | sha1: 548D1BB707AE7A3DFCCC0C2D99908561A305F57B | sha256: AE5E73416EB64BC18249ACE99F6847024ECEEA7CE9C343696C84196460F3A357 | sha512: C12EA6758071B332368D7EF0857479D2B43A4B27CEEAB86CBB542BD6F1515F605EA526DFA3480717F8F452989C25D0EE92BF3335550B15ECEC79E9B25E66A2CA
bin\api-ms-win-core-handle-l1-1-0.dll
md5: 18FD51821D0A6F3E94E3FA71DB6DE3AF | sha1: 7D9700E98EF2D93FDBF8F27592678194B740F4E0 | sha256: DBA84E704FFE5FCD42548856258109DC77C6A46FD0B784119A3548EC47E5644B | sha512: 4009B4D50E3CB17197009AC7E41A2351DE980B2C5B79C0B440C7FE4C1C3C4E18F1089C6F43216EAA262062C395423F3AD92CA494F664636FF7592C540C5EF89D
bin\api-ms-win-core-heap-l1-1-0.dll
md5: FF8026DAB5D3DABCA8F72B6FA7D258FA | sha1: 075C8719E226A34D7B883FD62B2D7F8823D70F1A | sha256: 535E9D20F00A2F1A62F843A4A26CFB763138D5DFE358B0126D33996FBA9CA4D1 | sha512: 9C56FF11D5843BA09CD29E3BC6C6B9396926C6A588194193BA220CFA784B770AB6756076F16F18CFEA75B51A8184A1063EF47F63804839530382F8D39D5CF006
bin\api-ms-win-core-interlocked-l1-1-0.dll
md5: CFE87D58F973DAEDA4EE7D2CF4AE521D | sha1: FD0AA97B7CB6E50C6D5D2BF2D21D757040B5204A | sha256: 4997FDA5D0E90B8A0AB7DA314CB56F25D1450B366701C45C294D8DD3254DE483 | sha512: 40EB68DEB940BBE1B835954183EEA711994C434DE0ABBDEA0B1A51DB6233A12E07827AD4A8639AE0BAF46DD26C168A775FFE606C82CBE47BAE655C7F28AB730B
bin\api-ms-win-core-libraryloader-l1-1-0.dll
md5: 0C48220A4485F36FEED84EF5DD0A5E9C | sha1: 1E7D4038C2765CFFA6D4255737A2A8AA86B5551C | sha256: 2DD4EBAA12CBBA142B5D61A0EBF84A14D0D1BB8826BA42B63E303FE6721408DF | sha512: E09951785B09F535340E1E6C256DF1919485B4DAD302B30D90126411CC49A13807B580FA2FCD0D6F7B64AAC4F5B5EA3E250B66035A0E2F664D865408C9B43D48
bin\api-ms-win-core-localization-l1-2-0.dll
md5: 23BD405A6CFD1E38C74C5150EEC28D0A | sha1: 1D3BE98E7DFE565E297E837A7085731ECD368C7B | sha256: A7FA48DE6C06666B80184AFEE7E544C258E0FB11399AB3FE47D4E74667779F41 | sha512: C52D487727A34FBB601B01031300A80ECA7C4A08AF87567DA32CB5B60F7A41EB2CAE06697CD11095322F2FC8307219111EE02B60045904B5C9B1F37E48A06A21
bin\api-ms-win-core-memory-l1-1-0.dll
md5: 3940167FFB4383992E73F9A10E4B8B1E | sha1: 53541C824003B0F90B236EDA83B06BEC5E1ACBF5 | sha256: EC573431338371504B7B9E57B2D91382B856AABF25D2B4AD96486EFB794C198E | sha512: 9732ACAA4DB773F4F99F423D9FEAEBB35C197BBD468922348E0AD086F7131D83F6D9714DC7D375183E7CB8920CFE37F3DA19B0041A9063CC60ABE183375B1929
bin\api-ms-win-core-namedpipe-l1-1-0.dll
md5: 990AC84AE2D83EEB532A28FE29602827 | sha1: 0916F85CC6CC1F01DC08BDF71517A1DC1B8EAF78 | sha256: DBD788B1C5694D65FA6F6E2202BFABB30ADF77EB1973CEB9A737EFB16E9EDAE2 | sha512: F0E4705A6890B4F81B7D46F66CA6B8EE82F647E163BCE9ECAD11D0BBD69CAF4FF3C4F15E0D3F829C048B6849B99A7641861E6CAF319904D4D61A6084F10DA353
bin\api-ms-win-core-processenvironment-l1-1-0.dll
md5: 0C700B07C3497DF4863C3F2FE37CD526 | sha1: F835118244D02304DE9EB3A355420BA9D0BD9C13 | sha256: 9F1F26794FD664E0A8B6FBD53BFCA33DCF7B0DC37FAF3EB7782BC38DFF62CD8C | sha512: 8042DBD9E80E33E41993887B0289E143E967544389500ADA9296B89BDA37BB26918E4F370F8A1BDAB8FAACC4E0A6980794D6A3B5320E170AD4EF751384C9F0A8
bin\api-ms-win-core-processthreads-l1-1-0.dll
md5: 1DDA9CB13449CE2C6BB670598FC09DC8 | sha1: 0A91FE11B9A8321CA369F665A623270E5AC23176 | sha256: 4F187F1B4B14763360C325DF6B04D3EC3CC6D2CECC9B796BC52A6C7196B0B2CC | sha512: 4E106C8A52033352C91B65CF65EC459DE764C125136333A2F4BA026EFDDE65F3F71B1F6F11E4C580150AC8A9779825BA5E2AF0E14DF999A198CFE244E522C28D
bin\api-ms-win-core-processthreads-l1-1-1.dll
md5: 95C5B49AF7F2C7D3CD0BC14B1E9EFACB | sha1: C400205C81140E60DFFA8811C1906CE87C58971E | sha256: FF9B51AFF7FBEC8D7FE5CC478B12492A59B38B068DC2B518324173BB3179A0E1 | sha512: F320937B90068877C46D30A15440DC9ACE652C3319F5D75E0C8BB83F37E78BE0EFB7767B2BD713BE6D38943C8DB3D3D4C3DA44849271605324E599E1242309C3
bin\api-ms-win-core-profile-l1-1-0.dll
md5: CEDEFD460BC1E36AE111668F3B658052 | sha1: 9BD529FE189E0B214B9E0E51717BDF62F1DA44EA | sha256: F941C232964D01E4680E54AB04955EC6264058011B03889FE29DB86509511EBA | sha512: 2C845642B054BC12C2911BFE2B850F06FECAFEF022180C22F6FFD670F821E84FCAD041C4D81DDADB781DDB36CB3E98DFE4EB75EC02B88306EF1D410CBB021454
bin\api-ms-win-core-rtlsupport-l1-1-0.dll
md5: 65FC0B6C2CEFF31336983E33B84A9313 | sha1: 980DE034CC3A36021FD8BAFFF3846B0731B7068E | sha256: 966A38ED7034F8D355E1E8772DFC92F23FB3C8A669780ED4AC3B075625D09744 | sha512: F4EBC7A6D12AE6AFA5B96C06413A3438E1678B276B1517DA07D33912818FC863B4D35CB46280F12CF90E37BC93E3AB5E44EA6F75767A314C59222B7D397E5B6A
bin\api-ms-win-core-string-l1-1-0.dll
md5: E7A266DD3A2A1E03D8716F92BEDE582D | sha1: D4B97CE87C96DE1F39FEA97CCA3992D292B2C14E | sha256: 339966AE75675A03F628C4DDD5D3218ABB36CBCF6DDCE83B88C07336D732B8AE | sha512: 31168663FD71B901B1B9152FF288D4E1567003E5FCD1F1C9DFE36D26D2EB16B0932EC8CD34833DAB25531F768A01DE45C2483F92D4E79F92A89389C02BC05156
bin\api-ms-win-core-synch-l1-1-0.dll
md5: C1DCDB0FABC8AE671A7C7A94F42FB79A | sha1: 99355912D7A7D622753B2A855CAE4F5A4E50146F | sha256: CC76A4E82E0E0CD08DF3BB8F5AD57142305E0F666CC32599D76E363D0B43EFCB | sha512: 6D92E7520AEEBFE60AAB43D6616B76A2DD385EDCAA217DB60003A0C0CBCB0E367063D240E38A19D0B8BEE2F2E7D4B982C4F08C8E9CCF34C7F670CB49F6561FFF
bin\api-ms-win-core-synch-l1-2-0.dll
md5: 6E704280D632C2F8F2CADEFCAE25AD85 | sha1: 699C5A1C553D64D7FF3CF4FE57DA72BB151CAEDE | sha256: 758A2F9EF6908B51745DB50D89610FE1DE921D93B2DBEA919BFDBA813D5D8893 | sha512: ADE85A6CD05128536996705FD60C73F04BAB808DAFB5D8A93C45B2EE6237B6B4DDB087F1A009A9D289C868C98E61BE49259157F5161FECCF9F572FD306B460E6
bin\api-ms-win-core-sysinfo-l1-1-0.dll
md5: 887995A73BC7DDE7B764AFABCE57EFE7 | sha1: 363FD4E7AD4A57224E8410154697DF5E8629F526 | sha256: F94210B39CDC812BEB7342A47E68673EA2116D0AD9266FCF8D7CEDAA9561FC38 | sha512: D088EB1C6958774E20F0E2884136B4E2B978EFD16F557DBC55E64011ABBCE0768054F7E6D881C110182824143A39101FDAE273ED614738AA7BA5C727B27F6677
bin\api-ms-win-core-timezone-l1-1-0.dll
md5: C9A55DE62E53D747C5A7FDDEDEF874F9 | sha1: C5C5A7A873A4D686BFE8E3DA6DC70F724CE41BAD | sha256: B5C725BBB475B5C06CC6CB2A2C3C70008F229659F88FBA25CCD5D5C698D06A4B | sha512: ADCA0360A1297E80A8D3C2E07F5FBC06D2848F572F551342AD4C9884E4AB4BD1D3B3D9919B4F2B929E2848C1A88A4E844DD38C86067CACE9685F9640DB100EFB
bin\api-ms-win-core-util-l1-1-0.dll
md5: 29E1922B32E5312A948E6D8B1B34E2D9 | sha1: 912F54BE8438F45E1562A47294091D522CD89356 | sha256: 34C5DEE6D566252C0CEB7D9A21E24D5F297AF2B26C32E0C7808BBD088AA9A6A9 | sha512: 837CD03EE0195DC94BAB0662FF3B8CD1BE2DEDD8A3254318D25DFEA6E88D07211186FA367F41AB864560E10A22220DEB3ED05CCF82D60AC80C71DFED08AFBEA3
bin\API-MS-Win-core-xstate-l2-1-0.dll
md5: 9E683825EAE3B6375CBD63623196BE96 | sha1: 1B30500A36883BF7E3EB63476E6B49151D51AF78 | sha256: CBD3FEF707ABF622B150DB1D10B5443264EB6DA8F4D7AA2ADC97C50A22D4D594 | sha512: C4316F38ECC0BBF3ADCF1C2B67CE79453C0C292AA2D0637BF400BC10A1751E595885083C79023BE58BD1953A5E30D8E6EBEF4B4AF849F680ADBCB9E5AE820C11
bin\api-ms-win-crt-conio-l1-1-0.dll
md5: A668C5EE307457729203AE00EDEBB6B3 | sha1: 2114D84CF3EC576785EBBE6B2184B0D634B86D71 | sha256: A95B1AF74623D6D5D892760166B9BFAC8926929571301921F1E62458E6D1A503 | sha512: 73DC1A1C2CEB98CA6D9DDC7611FC44753184BE00CFBA07C4947D675F0B154A09E6013E1EF54AC7576E661FC51B4BC54FDD96A0C046AB4EE58282E711B1854730
bin\api-ms-win-crt-convert-l1-1-0.dll
md5: 9DDEA3CC96E0FDD3443CC60D649931B3 | sha1: AF3CB7036318A8427F20B8561079E279119DCA0E | sha256: B7C3EBC36C84630A52D23D1C0E79D61012DFA44CDEBDF039AF31EC9E322845A5 | sha512: 1427193B31B64715F5712DB9C431593BDC56EF512FE353147DDB7544C1C39DED4371CD72055D82818E965AFF0441B7CBE0B811D828EFB0ECE28471716659E162
bin\api-ms-win-crt-environment-l1-1-0.dll
md5: 39325E5F023EB564C87D30F7E06DFF23 | sha1: 03DD79A7FBE3DE1A29359B94BA2D554776BDD3FE | sha256: 56D8B7EE7619579A3C648EB130C9354BA1BA5B33A07A4F350370EE7B3653749A | sha512: 087B9DCB744AD7D330BACB9BDA9C1A1DF28EBB9327DE0C5DC618E79929FD33D1B1FF0E1EF4C08F8B3EA8118B968A89F44FE651C66CBA4ECBB3216CD4BCCE3085
bin\api-ms-win-crt-filesystem-l1-1-0.dll
md5: 228C6BBE1BCE84315E4927392A3BAEE5 | sha1: BA274AA567AD1EC663A2F9284AF2E3CB232698FB | sha256: AC0CEC8644340125507DD0BC9A90B1853A2D194EB60A049237FB5E752D349065 | sha512: 37A60CCE69E81F68EF62C58BBA8F2843E99E8BA1B87DF9A5B561D358309E672AE5E3434A10A3DDE01AE624D1638DA226D42C64316F72F3D63B08015B43C56CAB
bin\api-ms-win-crt-heap-l1-1-0.dll
md5: 1776A2B85378B27825CF5E5A3A132D9A | sha1: 626F0E7F2F18F31EC304FE7A7AF1A87CBBEBB1DF | sha256: 675B1B82DD485CC8C8A099272DB9241D0D2A7F45424901F35231B79186EC47EE | sha512: 541A5DD997FC5FEC31C17B4F95F03C3A52E106D6FB590CB46BDF5ADAD23ED4A895853768229F3FBB9049F614D9BAE031E6C43CEC43FB38C89F13163721BB8348
bin\api-ms-win-crt-locale-l1-1-0.dll
md5: 034379BCEA45EB99DB8CDFEACBC5E281 | sha1: BBF93D82E7E306E827EFEB9612E8EAB2B760E2B7 | sha256: 8B543B1BB241F5B773EB76F652DAD7B12E3E4A09230F2E804CD6B0622E8BAF65 | sha512: 7EA6EFB75B0C59D3120D5B13DA139042726A06D105C924095ED252F39AC19E11E8A5C6BB1C45FA7519C0163716745D03FB9DAAACA50139A115235AB2815CC256
bin\api-ms-win-crt-math-l1-1-0.dll
md5: 8DA414C3524A869E5679C0678D1640C1 | sha1: 60CF28792C68E9894878C31B323E68FEB4676865 | sha256: 39723E61C98703034B264B97EE0FE12E696C6560483D799020F9847D8A952672 | sha512: 6EF3F81206E7D4DCA5B3C1FAFC9AA2328B717E61EE0ACCE30DFB15AD0FE3CB59B2BD61F92BF6046C0AAE01445896DCB1485AD8BE86629D22C3301A1B5F4F2CFA
bin\api-ms-win-crt-multibyte-l1-1-0.dll
md5: 19D7F2D6424C98C45702489A375D9E17 | sha1: 310BC4ED49492383E7C669AC9145BDA2956C7564 | sha256: A6B83B764555D517216E0E34C4945F7A7501C1B7A25308D8F85551FE353F9C15 | sha512: 01C09EDEF90C60C9E6CDABFF918F15AFC9B728D6671947898CE8848E3D102F300F3FB4246AF0AC9C6F57B3B85B24832D7B40452358636125B61EB89567D3B17E
bin\api-ms-win-crt-private-l1-1-0.dll
md5: 3D139F57ED79D2C788E422CA26950446 | sha1: 788E4FB5D1F46B0F1802761D0AE3ADDB8611C238 | sha256: DC25A882AC454A0071E4815B0E939DC161BA73B5C207B84AFD96203C343B99C7 | sha512: 12ED9216F44AA5F245C707FE39AED08DC18EA675F5A707098F1A1DA42B348A649846BC919FD318DE7954EA9097C01F22BE76A5D85D664EF030381E7759840765
bin\api-ms-win-crt-process-l1-1-0.dll
md5: 9D3D6F938C8672A12AEA03F85D5330DE | sha1: 6A7D6E84527EAF54D6F78DD1A5F20503E766A66C | sha256: 707C9A384440D0B2D067FC0335273F8851B02C3114842E17DF9C54127910D7FB | sha512: 0E1681B16CD9AF116BCC5C6B4284C1203B33FEBB197D1D4AB8A649962C0E807AF9258BDE91C86727910624196948E976741411843DD841616337EA93A27DE7CB
bin\api-ms-win-crt-runtime-l1-1-0.dll
md5: FB0CA6CBFFF46BE87AD729A1C4FDE138 | sha1: 2C302D1C535D5C40F31C3A75393118B40E1B2AF9 | sha256: 1EE8E99190CC31B104FB75E66928B8C73138902FEFEDBCFB54C409DF50A364DF | sha512: 99144C67C33E89B8283C5B39B8BF68D55638DAA6ACC2715A2AC8C5DBA4170DD12299D3A2DFFB39AE38EF0872C2C68A64D7CDC6CEBA5E660A53942761CB9ECA83
bin\api-ms-win-crt-stdio-l1-1-0.dll
md5: D5166AB3034F0E1AA679BFA1907E5844 | sha1: 851DD640CB34177C43B5F47B218A686C09FA6B4C | sha256: 7BCAB4CA00FB1F85FEA29DD3375F709317B984A6F3B9BA12B8CF1952F97BEEE5 | sha512: 8F2D7442191DE22457C1B8402FAAD594AF2FE0C38280AAAFC876C797CA79F7F4B6860E557E37C3DBE084FE7262A85C358E3EEAF91E16855A91B7535CB0AC832E
bin\api-ms-win-crt-string-l1-1-0.dll
md5: AD99C2362F64CDE7756B16F9A016A60F | sha1: 07C9A78EE658BFA81DB61DAB039CFFC9145CC6CB | sha256: 73AB2161A7700835B2A15B7487045A695706CC18BCEE283B114042570BB9C0AA | sha512: 9C72F239ADDA1DE11B4AD7028F3C897C93859EF277658AEAA141F09B7DDFE788D657B9CB1E2648971ECD5D27B99166283110CCBA437D461003DBB9F6885451F7
bin\api-ms-win-crt-time-l1-1-0.dll
md5: 9B79FDA359A269C63DCAC69B2C81CAA4 | sha1: A38C81B7A2EC158DFCFEB72CB7C04B3EB3CCC0FB | sha256: 4D0F0EA6E8478132892F9E674E27E2BC346622FC8989C704E5B2299A18C1D138 | sha512: E69D275C5EC5EAE5C95B0596F0CC681B7D287B3E2F9C78A9B5E658949E6244F754F96AD7D40214D22ED28D64E4E8BD507363CDF99999FEA93CFE319078C1F541
bin\api-ms-win-crt-utility-l1-1-0.dll
md5: 70E9104E743069B573CA12A3CD87EC33 | sha1: 4290755B6A49212B2E969200E7A088D1713B84A2 | sha256: 7E6B33A4C0C84F18F2BE294EC63212245AF4FD8354636804FFE5EE9A0D526D95 | sha512: E979F28451D271F405B780FC2025707C8A29DCB4C28980CA42E33D4033666DE0E4A4644DEFEC6C1D5D4BDD3C73D405FAFCFFE3320C60134681F62805C965BFD9
bin\Chessie.dll
md5: B5AE1290B559675E28546EB000DB94B0 | sha1: 607A156129BDF9954243802DB35BFCF392EA595C | sha256: 1D7ABADBB1231FCAD053C40F17C5C0931F64F517B8F007D6368E7640D31AC069 | sha512: B8EA6028647C758519A556CA249CCE3E108363C15C34819AF647887FAE147CFFCBD9A809919601DE239C057BC9F1DEBA60AB76034EA639E94372A86260F0F237
bin\clrcompression.dll
md5: C10817FA850B12CD579EC2C68F4EB9E2 | sha1: A8D030312BEE95734ABA4FB8905AD9DF74062DDC | sha256: C088C66930B6417AA2BC860A95859639CC95BB91E5645C4239966152D49DFD13 | sha512: BA01D6347EAA218D44B6E12D9AE4238F414E3AAF80A91DC75CD29E9E8C83787B4645DB55AF67825128E4EF5AE7006AE194C6A81C7243D153E2DCDD95409DA5AF
bin\clretwrc.dll
md5: 1AEFD22FD2B60E951DEF9EFB6208500A | sha1: D8D598F81AEF42008F3E830F79749F9430A660AB | sha256: 26CA646C234838EB710D114F4C286E581D5E2CB892493AE104DAA4346BD1BF67 | sha512: CE9D52BFFCF38F712ED01F9C417CE29491EDDE43EC3161420E8FA81A15D7DAA45B607766C26F21CD67B3795CEA8D94F8CB7E021D959E0F1AC1FE07B2BA8EFADB
bin\clrjit.dll
md5: EC1DC3114B503AEE3641F4169B2D381C | sha1: 05D9D3FB62F56DC7C5EF2D4167AF971CA38A34E4 | sha256: D891BEABD8A0E08FCFD9FE47B1CD7ECDE761B70FF68478D813BDC0FFE337B9C3 | sha512: AED1CBA22EA6023B070F3409A602C50E7A6700D98DA43C4722634694D96122C8EB7C0CF8DBB10794EE3B8EDED279F8B6EC85183D8F78121C59C3C1F45D0F772B
bin\coreclr.dll
md5: 1823B73C1BED4AD256952FAC43346300 | sha1: 3A2179D0616D324F8371FCCED57CE2F4DAFE462F | sha256: B88C646F6B99C267ACBB9A1D0DA9C58A05A8EEF18638E407A0F4AC731A36E6D3 | sha512: 97E35AEB1F657950A70245A74D7688CB9534C81E450954224104B4D604FC25D47E31ED1E3F5B15ED08A81D7AEB354BAC64AB4EC5A0E3F49706F7250D97AAB843
bin\cs\FSharp.Core.resources.dll
md5: 020323CCF41FE185345A38C3CB3B3F19 | sha1: 0879E73DA91F3C8EE6DE8DAB2B4544EA629030A9 | sha256: 856E9545D6DF0CA3CE133EB6AAC7FB6673CF06B3A982F391163143BB4C6B292A | sha512: 71383CBBC4AC25A37A329DDFAB62375EC5BDE1239DF600F34E306DCBA2F042D96BAF5DA5FF6D5831E9A4AAA80CC4E2231A190141C2B751A4AC07343E79B217C5
bin\dbgshim.dll
md5: D4ABC3F02D3B05C1A87B9FBC52EB89B6 | sha1: 544F0AB33F2DAD4A9CAE443649B87FE54E3FF727 | sha256: E10CB53D2543DF5684E49E38170F3228E27CE0EAFBF73613341B348EDD604237 | sha512: 9247DF1BF8C90FE7F937F8ACF66A9A2DC94F1E395517A1B35288FC0EB16C5DBC2C213D0E2E178BC85CD187950ACDE486707F34A32CB48DBF6451E36DF0F4F799
bin\de\FSharp.Core.resources.dll
md5: 1F7192FBE6909383D0D1119FB65DED9C | sha1: 8F43B6AB6D7BBBBDC13AB5743C1EF6608D17CE12 | sha256: 80374DABDD5A1A833EFC3C78186118BD709115CC173497689E4B3DD5A1A26B47 | sha512: 1D1FF8BC65DBA36E3CDBC3ACEDF157A882DA608D248976EF33439F4BB0D835BADE65AC4D14265F44A84BB9BA6E9D811D57AE6AA5160D7E3F7D948DC49378E7FD
bin\en\FSharp.Core.resources.dll
md5: 3411342A4956FB0F9D87EDD5DDFE1E50 | sha1: 92DAF9A6659DC8BCEE8C07E3502949DC13AE765A | sha256: 10C727C1D4B67717DC92D91DBBFFB3EEA9FF7FCBDF9859F667092506CDC3384D | sha512: 8382017B10DE76CC23D97005F9472E066EE1CC5EAC2F4C19F74E395B49644C8325636921797AAAD10C34CCE476E57C665DB282E86A92B5D7B50AB2EEE13B7022
bin\es\FSharp.Core.resources.dll
md5: D29D8B241E4377A7A17597A535A4E489 | sha1: DFB08D1721B6C70EE1AE41723FD50A145A09826E | sha256: 6A601DFC1720F8C0B3E8E6F1C155CC96E8038AEB19AB17904F08B8E62D0F7388 | sha512: 833DBC838D48271EF6277A8017F3C3CA325E0688D60C98925CAAD70B273E9E0113F752259DC752D5E35FB02F52111260D9422F038C8A6C12113C75BD5CF73BED
bin\Fake.Core.CommandLineParsing.dll
md5: AAD2551AFA1FCCA83CCF2A1A2744DA05 | sha1: 695E895460AB49E3E335D19EC1C12109AE1ACCE7 | sha256: EC77BF4068169FD71B0BC18345613BD0BB5366EB51AE7D984B029365ABB374A2 | sha512: F4B50AA84E7AAD3ED85B9698678621D02463DE030C562A7A29CF3F84479DCF4161DAF2804D3089B0DCF60D174F6DDE48BBC8AFA414F7DF8469E2F22D280CAA3B
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: 20882739D9E2EFCFE2800DF0ADD10DF4 | sha1: D6445FED4ABEE486324F9AFD20A939A3D639009B | sha256: A30143C24539085BCD41548BABBE7181BB6E9830AA9A6FE0BA184BBAF14636C6 | sha512: 7321BC401BFFEBA6DC38BBDD719CA54FD120B58E4641786E35F1F079B4D1C7803A19914784D80CD8E03E649AA5ABB342ACCE4BC6B46B08C5A0CBBC8C648D972B
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.1/win7-x86",
    "signature": "68f38555363a67b202faff631e4f04c04be2376f"
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v2.1": {},
    ".NETCoreApp,Version=v2.1/win7-x86": {
      "fake/5.5.1-alpha.403+vsts.828dc7d5a86476514bf58d9f9e7b8a35469348f0": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Core": "4.5.2",
          "Fake.Core.CommandLineParsing": "5.5.1-alpha.403",
          "Fake.Runtime": "5.5.1-alpha.403",
          "Microsoft.NETCore.App": "2.1.2",
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "Paket.Core": "5.176.9",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Memory": "4.5.1",
          "System.Net.Http.WinHttpHandler": "4.5.0",
          "System.Numerics.Vectors": "4.5.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.CompilerServices.Unsafe": "4.5.1",
          "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.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.ProtectedData": "4.5.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        },
        "runtime": {
          "fake.dll": {}
        }
      },
      "Chessie/0.6.0": {
        "dependencies": {
          "FSharp.Core": "4.5.2",
          "NETStandard.Library": "2.0.3"
        },
        "runtime": {
          "lib/netstandard1.6/Chessie.dll": {
            "assemblyVersion": "0.6.0.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "FParsec/1.0.3": {
        "dependencies": {
          "FSharp.Core": "4.5.2",
          "NETStandard.Library": "2.0.3"
        },
        "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/23.0.3": {
        "dependencies": {
          "FSharp.Core": "4.5.2",
          "System.Collections.Immutable": "1.5.0",
          "System.Diagnostics.Process": "4.3.0",
          "System.Diagnostics.TraceSource": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Metadata": "1.6.0",
          "System.Reflection.TypeExtensions": "4.5.1",
          "System.Runtime.Loader": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.1"
        },
        "runtime": {
          "lib/netstandard2.0/FSharp.Compiler.Service.dll": {
            "assemblyVersion": "23.0.3.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "FSharp.Core/4.5.2": {
        "runtime": {
          "lib/netstandard1.6/FSharp.Core.dll": {
            "assemblyVersion": "4.5.0.0",
            "fileVersion": "2018.7.27.2"
          }
        },
        "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.DotNet.PlatformAbstractions/2.1.0": {
        "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.5.1",
          "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.1.0.0",
            "fileVersion": "2.1.0.0"
          }
        }
      },
      "Microsoft.NETCore.App/2.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostPolicy": "2.1.2",
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "NETStandard.Library": "2.0.3",
          "runtime.win-x86.Microsoft.NETCore.App": "2.1.2"
        }
      },
      "Microsoft.NETCore.DotNetAppHost/2.1.2": {
        "dependencies": {
          "runtime.win-x86.Microsoft.NETCore.DotNetAppHost": "2.1.2"
        }
      },
      "Microsoft.NETCore.DotNetHostPolicy/2.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.1.2",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy": "2.1.2"
        }
      },
      "Microsoft.NETCore.DotNetHostResolver/2.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.1.2",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver": "2.1.2"
        }
      },
      "Microsoft.NETCore.Platforms/2.1.0": {},
      "Microsoft.NETCore.Targets/2.1.0": {},
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.5.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.5.0",
          "System.Security.Principal.Windows": "4.5.0"
        }
      },
      "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.3": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0"
        }
      },
      "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.176.9": {
        "dependencies": {
          "Chessie": "0.6.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "System.Net.Http.WinHttpHandler": "4.5.0",
          "System.Security.Cryptography.ProtectedData": "4.5.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.3": {},
      "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.native.System/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.3": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "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.3": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {},
      "runtime.win-x86.Microsoft.NETCore.App/2.1.2": {
        "runtime": {
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.VisualBasic.dll": {
            "assemblyVersion": "10.0.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/SOS.NETCore.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.AppContext.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Buffers.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.Concurrent.dll": {
            "assemblyVersion": "4.0.14.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.Immutable.dll": {
            "assemblyVersion": "1.2.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.Specialized.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.Annotations.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Configuration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Console.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Data.Common.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Data.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Contracts.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Debug.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Process.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Tools.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Tracing.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Drawing.Primitives.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Drawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Dynamic.Runtime.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.Calendars.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.Brotli.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.IsolatedStorage.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Pipes.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Expressions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Queryable.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Memory.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Http.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.HttpListener.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Mail.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.NameResolution.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.NetworkInformation.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Ping.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Requests.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Security.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.ServicePoint.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Sockets.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebClient.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebProxy.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebSockets.Client.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebSockets.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Numerics.Vectors.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Numerics.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ObjectModel.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.DataContractSerialization.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Uri.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Xml.Linq.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Xml.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.Reader.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.ResourceManager.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.Writer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Extensions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Handles.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Loader.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Numerics.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.AccessControl.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Claims.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "4.3.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "4.3.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.OpenSsl.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Principal.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.SecureString.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ServiceModel.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ServiceProcess.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.Encoding.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Overlapped.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {
            "assemblyVersion": "4.6.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "4.3.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Thread.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.ThreadPool.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Timer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Transactions.Local.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Transactions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ValueTuple.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Web.HttpUtility.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Windows.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XPath.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XmlDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/WindowsBase.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/mscorlib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/netstandard.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "4.6.26629.1"
          }
        },
        "native": {
          "runtimes/win-x86/native/API-MS-Win-core-xstate-l2-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "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.26628.5"
          },
          "runtimes/win-x86/native/api-ms-win-core-console-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-datetime-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-debug-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-file-l2-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-handle-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-heap-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-interlocked-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-localization-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-memory-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-processthreads-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-processthreads-l1-1-1.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-profile-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-string-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-synch-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-synch-l1-2-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-timezone-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-core-util-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-conio-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-convert-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-environment-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-filesystem-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-heap-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-locale-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-math-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-multibyte-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-private-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-process-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-runtime-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-stdio-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-string-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-time-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/api-ms-win-crt-utility-l1-1-0.dll": {
            "fileVersion": "10.0.17134.12"
          },
          "runtimes/win-x86/native/clrcompression.dll": {
            "fileVersion": "4.6.26629.1"
          },
          "runtimes/win-x86/native/clretwrc.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/clrjit.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/coreclr.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/dbgshim.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/mscordaccore.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/mscordaccore_x86_x86_4.6.26628.05.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/mscordbi.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/mscorrc.debug.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/mscorrc.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/sos.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/sos_x86_x86_4.6.26628.05.dll": {
            "fileVersion": "4.6.26628.5"
          },
          "runtimes/win-x86/native/ucrtbase.dll": {
            "fileVersion": "10.0.17134.12"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.1.2": {
        "native": {
          "runtimes/win-x86/native/apphost.exe": {
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.1.2"
        },
        "native": {
          "runtimes/win-x86/native/hostpolicy.dll": {
            "fileVersion": "2.1.26629.5"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.1.2": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.1.2"
        },
        "native": {
          "runtimes/win-x86/native/hostfxr.dll": {
            "fileVersion": "2.1.26629.5"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.5.0": {},
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.5.0": {},
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Process/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.5.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.1"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.TraceSource/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.1"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.1.0",
          "System.Buffers": "4.5.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.1",
          "runtime.native.System.IO.Compression": "4.3.2"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.5.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.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "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.Memory/4.5.1": {},
      "System.Net.Http.WinHttpHandler/4.5.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Numerics.Vectors/4.5.0": {},
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Metadata/1.6.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.5.1": {},
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.1.0",
          "Microsoft.NETCore.Targets": "2.1.0"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.5.1": {
        "runtime": {
          "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.1"
        }
      },
      "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.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "System.Security.Principal.Windows": "4.5.0"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        }
      },
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.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.1.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        }
      },
      "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.5.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Security.Principal.Windows/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.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.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.1": {},
      "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.5.1"
        }
      },
      "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.5.1-alpha.403": {
        "dependencies": {
          "FParsec": "1.0.3",
          "FSharp.Core": "4.5.2",
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.5.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.5.1",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.CompilerServices.Unsafe": "4.5.1",
          "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.Tasks.Extensions": "4.5.1",
          "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.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.native.System": "4.3.1",
          "runtime.native.System.IO.Compression": "4.3.2",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "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.3",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        },
        "runtime": {
          "Fake.Core.CommandLineParsing.dll": {}
        }
      },
      "Fake.Core.Context/5.5.1-alpha.403": {
        "dependencies": {
          "FSharp.Core": "4.5.2",
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.5.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.5.1",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.CompilerServices.Unsafe": "4.5.1",
          "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.Tasks.Extensions": "4.5.1",
          "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.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.native.System": "4.3.1",
          "runtime.native.System.IO.Compression": "4.3.2",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "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.3",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        },
        "runtime": {
          "Fake.Core.Context.dll": {}
        }
      },
      "Fake.Runtime/5.5.1-alpha.403": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Compiler.Service": "23.0.3",
          "FSharp.Core": "4.5.2",
          "Fake.Core.Context": "5.5.1-alpha.403",
          "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
          "Microsoft.NETCore.Platforms": "2.1.0",
          "Microsoft.NETCore.Targets": "2.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "Microsoft.Win32.Registry": "4.5.0",
          "Mono.Cecil": "0.10.0",
          "Newtonsoft.Json": "11.0.2",
          "Paket.Core": "5.176.9",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.5.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Collections.Immutable": "1.5.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.Memory": "4.5.1",
          "System.Net.Http.WinHttpHandler": "4.5.0",
          "System.Numerics.Vectors": "4.5.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Metadata": "1.6.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.5.1",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.CompilerServices.Unsafe": "4.5.1",
          "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.5.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.5.0",
          "System.Security.Principal.Windows": "4.5.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.Tasks.Extensions": "4.5.1",
          "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.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.native.System": "4.3.1",
          "runtime.native.System.IO.Compression": "4.3.2",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "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.3",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3",
          "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.3"
        },
        "runtime": {
          "Fake.Runtime.dll": {}
        }
      }
    }
  },
  "libraries": {
    "fake/5.5.1-alpha.403+vsts.828dc7d5a86476514bf58d9f9e7b8a35469348f0": {
      "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/23.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A0TDsBmfMPNjuxdxjmpPJqGeCcD9d87lAxG7qnrw4biSy/ReswSPQcP6NTL7qOOXi2kOYqlfZtdlEWfc7rOeag==",
      "path": "fsharp.compiler.service/23.0.3",
      "hashPath": "fsharp.compiler.service.23.0.3.nupkg.sha512"
    },
    "FSharp.Core/4.5.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mQlCpyv/wNZAihLBUbBu8gS4NpXpBCTw/eMQqujn8sGBukxSYH3CoE0vPABACNQEv7HoAX7CJt5q7l6Yb2E2hg==",
      "path": "fsharp.core/4.5.2",
      "hashPath": "fsharp.core.4.5.2.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yXC+5kLoJ4IohA7LKQlQRn4EYuXD4hs0F55BxTeog73UMWhd4WWu2tS/+7N2Zba5Dtfmf7sAfxUFgjlSqDYgVQ==",
      "path": "microsoft.dotnet.platformabstractions/2.1.0",
      "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.App/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-USLlQ4i0budd5mZio0vUIZYf2bYRPxXQcJ1SoCXoL78j1TadP2kzWUmjI71FnRKoHiObW18WouulEwK6HazzTw==",
      "path": "microsoft.netcore.app/2.1.2",
      "hashPath": "microsoft.netcore.app.2.1.2.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetAppHost/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KdbCZOusPTtrGaVZzG4KXeBFLXTuCg8AC0GonZwIl9xWfTtorC1xYLfIWsal2ZAEIgPfkMc45UV0jvLLCX+qMg==",
      "path": "microsoft.netcore.dotnetapphost/2.1.2",
      "hashPath": "microsoft.netcore.dotnetapphost.2.1.2.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostPolicy/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IGbWcnbh10vdBX0Qgnc404mZ1YbMOYi45AY5k5FYHvJzWpbAPFxH3IUQ+wFXhT5pad2rZpCfNmFELVuOJj0yFA==",
      "path": "microsoft.netcore.dotnethostpolicy/2.1.2",
      "hashPath": "microsoft.netcore.dotnethostpolicy.2.1.2.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostResolver/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m+Bb1HLiOkIkEMpGJZBKv+bLPXTglmrFKJwjtXM0DInqIVL6768jKeh5urhpdRhMdTlzjOpZ8N/5FrGcjIjl+w==",
      "path": "microsoft.netcore.dotnethostresolver/2.1.2",
      "hashPath": "microsoft.netcore.dotnethostresolver.2.1.2.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-F6Pv3pxQCVX8ccGOs9MrjG2QxwY5OoiMjzBvP5Tt3Pm0C9a2qwsk/IgsRcyjoWaf3eSEOugV5laNvYcOMLeJRA==",
      "path": "microsoft.netcore.platforms/2.1.0",
      "hashPath": "microsoft.netcore.platforms.2.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9WsO657UkijzsFBe2MayNa8mf9lMdrvuDD873cnd4vp+tAtl/RpLFfOokENudLMmz6kxM9eXvz6ABv0yGQFqTw==",
      "path": "microsoft.netcore.targets/2.1.0",
      "hashPath": "microsoft.netcore.targets.2.1.0.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yWVQUs1EQ5W47PdMom1SJ5QnnEMK9gw4OO0BsD2C8Eh1WTVUXvHf4oJT0y8InyNN3KHPaW3ENSxaK6p4l1vUDw==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qEalBh4qQU4323rXG+1w+mIXlnrF7qj6mfHA8CDlzbeQwweceVFsagZll6EU+Cm3dqj2lNEfcG1AudLIlY/F4A==",
      "path": "microsoft.win32.registry/4.5.0",
      "hashPath": "microsoft.win32.registry.4.5.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.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FAwo8WttWB/xP5bKBVBik3WUow1rwOUfahgTah9IpnmP4PY8wOd2kfYpvRqi6wgOVOWee5f62B3JExkTfPlz2w==",
      "path": "netstandard.library/2.0.3",
      "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json/11.0.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VwR0Kmaf2teZf4mauaTE9GX07ZsPMZ1Q/ZfVZJMdCYSWtrm2NFq1sBSWxKwflxTw9nb0KgRkNdVEuPcf5yad/g==",
      "path": "newtonsoft.json/11.0.2",
      "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
    },
    "Paket.Core/5.176.9": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fdET7BalCngNiimMCFJtV2Yk/Z8QVhpJPuRpwg8n6DXnDTggrbFNcdVHkQ7nMYK0gL0Op34VD/nnUMcHHBUmLA==",
      "path": "paket.core/5.176.9",
      "hashPath": "paket.core.5.176.9.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IQrqwSHLAjMsLXQZCb0faVAWIHIXawnrwUNJCZLE2RXPrWhro60YaEZu+Kydidtm7dHlq+gKoC9SV4iNMiaDmw==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.debian.9-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jKUOIV4QNps78j6ypBPPp9B9TPJRPDbGTUqrC6Mx1rJSFTZ5l0p/g8ZavTNskAaqcwWtLbofXRm4b4fRwbyDEw==",
      "path": "runtime.debian.9-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.debian.9-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lk2ssf8ntqv9fwgfCJhrpH4Of9lZwTp9F5HrCUYoYuzdohFEGnLbsaRaIfJ2DrESIik2brSARUTTKm6lKbrDsA==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-98eEFy8WTf/fqGWBdyTaY27rjfGIuhoKHmwer182rPW5FaGScRZhq3QqSWSXPygoIB3b4Kf9DTgei7zxBuWzdA==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.fedora.27-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8FLxraQH83fNe/T1YtCNVHDil43fLZ5lt3F6bDySFPOdyFFGdgIi3T3JscQgVLyjP/YOAxDVlOFMKWNulv3veA==",
      "path": "runtime.fedora.27-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.fedora.27-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.fedora.28-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FTa6C2SY/xAxgVcPEc7p5n6UXWZqh5fr519UPHyrra12TVbiWNRx5zyLkTSKIXFaavy+Rq24XBYD9EV/Zt9KPA==",
      "path": "runtime.fedora.28-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.fedora.28-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.native.System/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IW3K8xI3YxkMdOK+6pTETvT2ZTPe5vm45q60QLnHypI4FEefkC0Ng58OiQqo9X6vVPhoH8n43xAvjJorZ0qp1g==",
      "path": "runtime.native.system/4.3.1",
      "hashPath": "runtime.native.system.4.3.1.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ni1Bf6MC96NbAu1YEkg/fWem0rnOyztrH80zmzWWW1kY2RUcOu17gELifU3e75aIs0+Pb/ncg2pzcLsU6IRaAw==",
      "path": "runtime.native.system.io.compression/4.3.2",
      "hashPath": "runtime.native.system.io.compression.4.3.2.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.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-11ZYsyTNidzupOZO+krGYSG1JTVIelZAiW8A6KtSVqkI1kjAkJUyCRFYcY9GGPkMEROojwR8pThVIobLyy9BMA==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2c7gj8+eXcGPg1yD1sT+p0uqjdlDnXRJmrleqKlvs2oMbVQkRNrMB3ut1GaBhgEQTAq6qxpO+3r81jFtQO99Gg==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rYqzubi5mYnk/hADZbhQ0SC2NsKmE7yDCXZv9TPb5MKEB4HsAyL15qAhIIfOuw2rt+oMDvNsvDgkOcUO8Q04Xg==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.opensuse.42.3-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BTvZZb1VpsmFpGJbyr+8n6LOZ0I8mA4XiV/JS4LVws8mKMuT3tp+u4c6y8I3GIVW0P3KDo/tCYjpvoNBSMkymg==",
      "path": "runtime.opensuse.42.3-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.opensuse.42.3-x64.runtime.native.system.security.cryptography.openssl.4.3.3.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.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BChyB/GQ2mE+7zWVA3SNXabn5YvaHOHucXgwOIrmhtJ61fmvC8OJhJo7yLhog1CeYrQNhz8bKY7EyCivtWaXaQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Vt87thEqec3yCd0G5U5x6tbA6y657N45x6HSbzeG9dn7LHrBlTg1VX6isp2bgi+n5C7F4fnREvjHjrA58kgkng==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1ZSpa/xOKvPEj4nNcqcZM98osLNOvlDTlPi0zJ3eGUp6YQTZIma6RaDURxaK0ivQOxQy0dbgMpxnnbaszG8QEQ==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IdoDeIqSNl5JoDRTykYHQjSGAiXKlzEVM57yr18I/v+7HWG5i+GNLiUHfLOJErgwR7AABCGnQOTrqt0NbNBIEg==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VB4UY8Oq2S2L+fxRSc+8LfZ+3swyGEuoHvxzCXC9Ksj3Z9bq254bRLrSxzMabs1catk4IAfakImPXrEs0vqjA==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.ubuntu.18.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vVEp95Kb3iAuFF9KPjdqPpYAxbddRc1H29tfQuTKrXxbb7ekv6xfD2+WAJLPPbrcqwSOElLl7MpSoRw49gV3uA==",
      "path": "runtime.ubuntu.18.04-x64.runtime.native.system.security.cryptography.openssl/4.3.3",
      "hashPath": "runtime.ubuntu.18.04-x64.runtime.native.system.security.cryptography.openssl.4.3.3.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.App/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+zSHbXdHElHeRmAwCjteO+TOTB5Io2xnAk1il5PTxm/n9LV/1krCb6L5r/JX2uMLkYUpMuzUaCt04GfOG/hMwA==",
      "path": "runtime.win-x86.microsoft.netcore.app/2.1.2",
      "hashPath": "runtime.win-x86.microsoft.netcore.app.2.1.2.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-39DGLViMXTtz7AMqn6/aRlfGa35xTz2hs8jccAJVfvnAmH0ysmyc6bl2kEri9KVMgD6nS+PPD4G32a4wY0o12w==",
      "path": "runtime.win-x86.microsoft.netcore.dotnetapphost/2.1.2",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnetapphost.2.1.2.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cVwIrEEzTsQsPNT1y9mDhxNb2OxaP7i8cemsBgnE7CjFyYhYF/HiLwmQXFy/4CAeav9qVO/hr26rqWCF/WjiDA==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostpolicy/2.1.2",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostpolicy.2.1.2.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ne0qmewyNv2N6sM+PrOqaGG4eud0HvGAN2h9eM+QgfJKfq1M6u1hsz6lnNWTpeowlBUKu+s0VPKf/SgeEF9tWg==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostresolver/2.1.2",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostresolver.2.1.2.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-g44/ETldrUBID35hDUyrtOHIp+t1IvPvLJQZUPqbsbiJLWcHHi4phR2O6dFz4TCXc2LISUKxxE5ySWNP/E+9uw==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8oLK6abPJoLCsFRzjUZw6X/JtkmCV0NFAZJRVTFQURGu0j81Hxyx3/g5ENFORVB9DK/aFXnr2tG+IfAoSrpERA==",
      "path": "system.buffers/4.5.0",
      "hashPath": "system.buffers.4.5.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KvroUq9y71vVVb0W3F73YRB513kitpaOSO60yoluLqfObb6wnt7Hf6k3XdDiAEBncHrKvq+kI1uWy/HwK1ZrSA==",
      "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-zpZJJIPqfCg8LOL3d3OvNXBpNkg7Goz+mfcXYNtQ70MP4Zh5C/u0yt7a7Y5WzoBK5/PwUMhS5dPww5nWGBac/Q==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.Collections.Immutable/1.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oByXMTg8gK8RtFMOIDEuih/1FnEKjLecgAl73m3FGZ41Q4IfO27KTdUtWEX8v0IKLNOR5ojpFO5T/ksgNPgYpA==",
      "path": "system.collections.immutable/1.5.0",
      "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2GYX1n9QgELLykwU6BHu9tvcbzvxnm7KWQ5sS/Vz08WX2bYWQ8x8CbqhDTHKjF3iXUJSpWPPJvwdkcQX1lUxng==",
      "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-zqhE4R9T26hIR40eIpm7I52co2v2QryLrZjfBebs364Qkj/NUZ/o6AmpiKkLBUMEA5EQXptehQdWcCoDlADGJg==",
      "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-SKiYAryfDQ/ijPhOD6OSOkfgWcfXMlmx9gD0bIDW1YqbQ8rJtR6IS4yxmDDS/pm3z6ks98HccOorx+x28IWaYQ==",
      "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-Y556MEnHlgSf3QKWHVMEWEz12kz9tP5jqcfr/Jvl5lzGohz6J0tXreN071TCCotiveENtNV7K+rnFdtCNEiQ9g==",
      "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-0TZtknTPgbocTmtwNTfX1IyWt8Pb3TCJbIaU1QhQbTSOhjQh6NHSjECbAXUy+6UcqCXrx4n5ORQ+w8/FIeM/ZQ==",
      "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-xK/rQQjmAClRl2WQ6UC9+yaonwKxxrLEWO5PpsxrT78N37FkUBis/z0/z3KXCzupRY2eYVQcCA/WiFfdH2zRVw==",
      "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-6xjK18XKzZdxPOF9tplHJD7EFt1VePbFL3nm85BmWDrEiT1qe2le6riYFVRoDZA3rh02xOJO5HCTqhL6opyqUA==",
      "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-XoVMhCoXWunrfF/Xog9Mr90299LJJQBsDCmRgmXMJTX7CCiipVoc+pzD3ofzsK8v7rMgx8wEBYgWjXKIcD3Hig==",
      "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-wjZe1hNFEPY3/hgRzlDJUpey3OLMiSpXHDMQpen3UzEDEjBf/q15knVfdmwyos9XbNEQN7Bc12OI4p0FBS6BOw==",
      "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-zJ1d8WDSNSGFMWaJwoDfOk6wE7UdJkG+CODZ3v67XZMrJxIvmp/DVBLHhsxFbteYL55T19dWKTDECEd8WiKQ8g==",
      "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-CeFNIjt6iE1jV+NyD8djKpqpPm7KIpu/uYhcAtawb2X9NzPvdD97f5XMgc2ezaHaYiuXTjh1bVZ98D+jMOhi3g==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Memory/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EgupB1QFOFGsgloBfKawhSrOrraVUh/H4I6yZYc4N7uIPxHF9hKzDbF/5hiRK98ppYQCB6Dc3K6aw/Wyk/W3uA==",
      "path": "system.memory/4.5.1",
      "hashPath": "system.memory.4.5.1.nupkg.sha512"
    },
    "System.Net.Http.WinHttpHandler/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+YfLzyIknhc+fUngqtXhdZXSzEkjwUHOQzsYdtZR6bjV/FVuQseB4uXbQF8xmpe7S0OQ8T8ki7TbJikHPzkAXg==",
      "path": "system.net.http.winhttphandler/4.5.0",
      "hashPath": "system.net.http.winhttphandler.4.5.0.nupkg.sha512"
    },
    "System.Numerics.Vectors/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JRrHYinudh7cdiTMy5cNEDo3xZkgISN1/fOrZ0tLbwcin1YCbah+cAxX1TPplbyWq7OdJL/wsDTWEpYmR1FkwQ==",
      "path": "system.numerics.vectors/4.5.0",
      "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Hbz5Mgx8WftiC5fAeT9NGJjbfMr+BSfIFPToP8ORNuCWRu0aJc8IsppKY9foqNdl8DyRmbunhTFq8b3KzyACig==",
      "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-c15aaYYVIYWjYjqOMU3+ThGdRMo2koX9QLxCbgloO3DQ4MDkFANrXDvsADVtIx/Vpsg/rIHoMPnkNhiam94Ofg==",
      "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-YJxIMJGEY1J4s1mpDv4Ttxla33ijKL0VcxhpK5zMQkO92m100RR4V9IbO5I0Sa8lYateLqIugcOahctqxmavmA==",
      "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-+yilZocP1rh1OsDj58F4kF1Cw55Ia1rtef6PXpX+jU0/HCNXS3YmCJJJDjFqLUx2ued/yiVdXrhdM6INPwIkfA==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Metadata/1.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FptCU4RCBhKTW1taaAZweFUU+s1DETvMC56pb9LBKhuYM4728I9+YIYE0IAtDVXs63Yr6ab2xLgWSi8rAYi79g==",
      "path": "system.reflection.metadata/1.6.0",
      "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OCfpPYxsbukOIEszWUwJuJQD+GHecSzeQCj4Sv53IXQFha1U24+fOhQ7ma9q0Yc5nEU5zKmRw4PbU/rCSWfmjg==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MW3MxOtKtIr/gMbPUvfXZK2rUN57NUJSUuDCzLOdMAuTO8I1Gt0LJJcNf6MMTm5BWAJrz/Lex8AhYAn8fWf4Xw==",
      "path": "system.reflection.typeextensions/4.5.1",
      "hashPath": "system.reflection.typeextensions.4.5.1.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iA/Fr25Q1aNrAEldV0BYovkW5oIeApCJqz4GFtsfVW+4FOBloAn/iSvNqlXuFcJ+x6RyAb7NHg+SrZzMfShpwQ==",
      "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-bjZo7k/WVBItJPNuMuWz2+nLcs5ryBUUN3CLA3W3h/IsMTHOI7LwYwOMQq3TzR884kLntVXZmFEoBYjJvIZd5A==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BZ6tDRvzv86Kamku1wGxEbDa0yLwYgyjDFB+awdXfOoOrea9jSV6fpLZS/LqoqfCKiTFQzp65/J7EEqqLmEZXw==",
      "path": "system.runtime.compilerservices.unsafe/4.5.1",
      "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-b5QZrUwOBHkMJcjdJS13CmcMUkV7pcTQtWQn4INkcVHe5Ur5EefV1Sply5QtcXHxAlf2iMQoN11n39h1Nhn7Dg==",
      "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-CuKpaLL0jHlHOKIcSUI8aFjUG1RVaQGZcI4p0XBc0mUjb7LDAooSnmjs5t4+X7g2hwZquQsD841ripV97ihzbA==",
      "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-rGQJLnJdkbtuhdQN8ASvMF9D0gEIkkwnTnb4wE2b3FkYqFsgzNv4ja6a2vhknO//vyOzL47rhMsfb+EDck99sQ==",
      "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-XFu8mzhH7i+lArYOkPhGLaYwEZT20lvhsvB9mWRpyZcY57m+qsD+oZuLDpFYX5JYRyk2wrv4ns0HZkRFTZtYeg==",
      "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-cWX8tcHRKd5txsGJmePve30HtckI7qViCi5fUaJvsULRNDY9RTAmdyxievMDHgd7PVsZg1r96QP2lkIOZ/rFTA==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HAV3ExFtis+kxSm/H6RPFwwNTGWEsL6d7Pqr+v5ySs+pn2sX3RHxigbFyx134UoB4ZOoqKEpSUhKUN4AdINvvA==",
      "path": "system.security.accesscontrol/4.5.0",
      "hashPath": "system.security.accesscontrol.4.5.0.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-5+TNmqZ1jPvAYCFbYFGTwTqOeJ8yn7ozG3zOguHOdhYE3Q+dFeiH4ABtGjRntY81Y4fBB5Qn7JilwFk4/X+VIQ==",
      "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-FmqdZvGVSQRWCZP0zzBVZDmcZyH8qR/VopAisrhRaxSdH81vauf98j6OfPKntz4wkSbqwnmBRceP/cHZiviopg==",
      "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-rhLAQSUnxGxkth748eKN6KWriveRegTZJFjaO3YOfcGht8Pjn6t3VQ5fDpU+kY0UpxwvaWLczV+Ip5hdcdy+Qw==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wZGwRoLGTuEQBOYXlZmEK41OfmO+vYWbLk7q5ePoFqs6vOKP2kUsOeviEjQoR6MbW9udlDjx9iWhcWOTzSj05w==",
      "path": "system.security.cryptography.protecteddata/4.5.0",
      "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-T6OxEc5k6eZJQUVMh0+1v2qc3ClxMUp1znhAvmNTSJJXayZFVoWhKmrFM0CHAUWQC2GmClT8zSZj6em/oTJkKw==",
      "path": "system.security.principal.windows/4.5.0",
      "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GyRlFnhsbtMI5R7OV2XsDruMgGLxI4qkw/4HdsjKHC/h4vGrGs0D9FTb2U26A3liBkEbHBqbzKoFAdEjr1txpw==",
      "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-xG36Lf2H+3SzXqBwAfK+vnPFte69w/x3/s1PEhVjXDqEya/dt6Xi5CzEvpolgP6HwyXAD93n7uHhN6I29QiJZA==",
      "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-Xz6N1blltE9ZUys1bWRdHVMwGJpxp8Z8lwC9CCPJ3wxKO+97ekAw3RUfPEH25gaH7jAJpo44Goct8o4RytoPKw==",
      "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-1rSZyP3hT2ZLr0+Bo8LrxEsRy7b4XS7PdZ8kU8LzC6kb6grYyyxVY4To3nX5psUtcBwTwODyn/sOeA+A4mjSnQ==",
      "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-WzlJ4WRIdM/Irf/wOu/pLwBmO82x+sNKs/GhMOS6atEcCHZ7lHg9/SvVt+qO2g6YwafwKqEMdm3ZvQzyDqd02g==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YnQb9WNu6EeTEROj+twlD2KUZypGg6FNoD33FD11m1R9gQvqfvH+ShRF1HLn8sUFdvueLn/tL9IKW8CQ1cRKwg==",
      "path": "system.threading.tasks.extensions/4.5.1",
      "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
    },
    "System.Threading.Thread/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/MwVPNMT0cZ8qYfDp0Q1jkzaNbv3xm9DnMjjGE8wgVN2GkkN5gf3+Y8AWuAyRwAksuGCSFRmHCNymstCu2jsMA==",
      "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-gA9B9vHavcASOyiKCgNTk8zis/Jv01eZYFLUkhQ83y8zev/Pby0z4POBt+ud5/7mAuUoPb5Px5Y27K6R6LtYCg==",
      "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-37bPpkbFiya3hVodi0Oica3QLonLyvIJXWTTaR+DhSRkMXVWjZLMazmROsCCjdSydE7eIBs7nHRzzx41jC76YA==",
      "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-zNIjKE3mLykFsgJGllVnSriaDcEt9br972lGdD9Mc6/Q31mwt8ubHz/Cvm1xsCoYWsDhv9roxKMpE+Pc4PUtrA==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "Fake.Core.CommandLineParsing/5.5.1-alpha.403": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Core.Context/5.5.1-alpha.403": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Runtime/5.5.1-alpha.403": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
bin\fake.dll
md5: 4306B89B9B89F9E3094BC87CBB6FC688 | sha1: B2679FDB7DDA8DF9611ADD53E26FED04763F3320 | sha256: 06D5F0B6994C9BB7F1436AEF3DEC5E555F2A191DAE4D1161D457692907FCB786 | sha512: E29D10F2643A1B2E837D6ECEF16B5CEC37F86F05AD4668DE169685E29EE3321CA8FE5DE6165E5CC5F2DCF4C178391813BDF264AE556DBEA44D5E61E801B54CBF
bin\fake.exe
md5: 523B857879FF901E60B78323E0299176 | sha1: 5A66B8C2FD957968BF28ADBEEA60E3D4440E83C9 | sha256: EA5FBDF7DDAE30507D413B2064A696FC7B973CE0D2CEC7D4366221D17551A12D | sha512: 4796FE8EE67AD07B3607CBA9BCD46D38DD301B0498C660389968BD8C64CD7E868CC97F7CAC2FFE0C84A3B586CC8CD2DB566FFDAD393821288D6DCF28F71CBB3A
bin\fake.pdb
 
bin\Fake.Runtime.dll
md5: 93946B9619E4CCFCA4CB653F8ACD90F8 | sha1: 66F01BCE8445716974826751C8E1C929094D5180 | sha256: 09213E8611C567EE1199AE9ED0F8CCC82484639E9A602F069499FFA2756EC199 | sha512: 70E94981DE072FBE0B252ADEB36346F5462CED0B90A76CF8BAD52D3617FF4C3F59315E555D2A92AAFCB0589B40B002920A5E6EFBA6DB5A2DB4C6B565C4BC9496
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: 9E428532E9651C7C6B615EE05E42DEA2 | sha1: 50324A0D0FDA80E6C6C21DE9379D69CC2B825166 | sha256: 2FC029713F5666FD63F644F173C644EFDECDF388718118CF71196BACAF649C32 | sha512: DA90EE444440B1E6A0B5D2AB484EC66F46D0D9B8921922AEFF244B5AB4B4679068C1AFA0E7619200AC73C30F0445D18C036BA514AAA2AF41FFA3A80F637ADB2F
bin\FSharp.Compiler.Service.dll
md5: 6C4C0A18E541E76B7D45979A80DBBD74 | sha1: AA67E64EE6B0737311BAB0E345589DEC0B93C9CC | sha256: 3A79BC61802A1DC4B63511314184C84E2F7B761C94F5DE2EF31228D154E40DF8 | sha512: A8BB21CC6F722F1E876FFE06C7F8E8D50FC6B526359BCB91432676EF4A55DC15CE13AF7C846B729D052B750901B1DBA748B9DE14FF9C4574B102C839EE77460A
bin\FSharp.Core.dll
md5: 6DFE63C26ECDF71F5ABC840EE711B4E1 | sha1: C2B7740491D93DE4A644261FE54DF1EDCA7596C2 | sha256: F3CC82707AB0E930A09CE9726D7B4421C88FC9C055B2493B6F56D22F412970FD | sha512: 6B5CA8F8C081A330EBE7E68B800DC3EC2684B9FE6CC7E5F9E8254B799359DF09EF985B864C46468D217BC580B91F8ECEF54CBD19D8E8E32FA3824744E85514BE
bin\hostfxr.dll
md5: 628503228CD7A209C7214D8AB770C180 | sha1: C2EC5117841468B6BEFC379B14FFA189D1ABD15C | sha256: 88B39E60BE43CDC85E2B8593FBA8A02EA2581C18C1E91C30090F9B6C9B585DA0 | sha512: 4BB1FDD869098773F6D14BE4DE848D590B366D2A7E3A9442E98CCB258A423E8490AE00367E3AD525734EA1447162CB664264339178860F6E7B29A608628FF776
bin\hostpolicy.dll
md5: B884759A23098D46B3A9E88910C748CA | sha1: 201875CCA6B1B07E6731D043DF87BD4AB981A477 | sha256: 51A04EF798975A1269E9D7D1A1288EC5ED116FDB200CFC04E706A81E882DEC8F | sha512: BC0FC7D7353D4153BC141C048229E749F0A729E08B7BED1BB2F44E3D0B3EC6DCA01451F45812956F53136059A018C95E65710A81871C7F0D7027C3C053068B5C
bin\it\FSharp.Core.resources.dll
md5: 8BAE51E73B1489331618C1BAF65311EF | sha1: F6B1DBDCD564A7C8923B63FBB518BDFE753F21A8 | sha256: 38DC04C31EAEC7A3C17308BD1A491E637D587B36D1DA7A636123CC6FD347F878 | sha512: 988BFD1755EBCAB6E1C239DBA1C1FEB610689162D7360661907300765D931F8F875C0A2316961509C0939BB123466E6E34BDCDFDA112733A8E7A197974BD82BD
bin\ja\FSharp.Core.resources.dll
md5: B4B58BE1EED99A4181637AC4816AF7F5 | sha1: 74B85715EF159E603D3D90AA4639AD4164CAC138 | sha256: 74BB13C9E1284B75FE9999543544512AD0C12D2D2CE5FE2E8643DA8E9DD8BC48 | sha512: 2D89AB44EE51A64E0B98F7EB25174CCFA0A5D3C54D526E7CE61A1891536ACEC85B6BC6ED30322D319B2EAC3C888CE9985D74E2244DCE97987E12675BC7F1C735
bin\ko\FSharp.Core.resources.dll
md5: 7344AA0CC2B4B45F3140985039D4587C | sha1: 2D7D342AD8C1E5048B4F00F26650576741FE1B17 | sha256: 3984F08092CA4974D3AD958F51769DE4EDFD9767F04C7C476047F057ABF20FCD | sha512: 7A32820001E87B5EDA3B9FE929B50A0FE2C666AEB18E365CF2A42932F3ED577214ECF0A347813D01ADAE9598483C328BE254077D2F74CFF37009BB79B659AD16
bin\Microsoft.CSharp.dll
md5: 4B008A2617809091D8EDDA148DBD8DB7 | sha1: B4F95B0BC23E759A32535EEFEAAA341FC74373FA | sha256: F21DF961CE29AB53CBF3A9BEF2344148F56FAF33A309028C1CE3DFEEB9041795 | sha512: C92A43309C0A59CC57D48FB92D067C8165A3C3A18D842DC9CB0F84C886E6F1252DE4A7E8E3C31F32EEA382AD2EE6740414225889243B56D7479A5CFE0505725C
bin\Microsoft.DiaSymReader.Native.x86.dll
md5: 14C7BDF37EFD821C3FB2999D44B11539 | sha1: 554B1310BE1818FB770703C7A095C9DF076A176A | sha256: 4EA9AC46897947F0D4B201BF37E2762ED0756A11019EC5C1D227DB6BC07FAD2C | sha512: BDCCD3827BB1253EAA7F6CA7EF4C772DF56079E9F3A70AB5E216EC8BCCE715EB44BF84BE63337387D2C935FFC68F5647D60085CA709C11D7033ABF3B2BDFD31B
bin\Microsoft.DotNet.PlatformAbstractions.dll
md5: 8ED1B343DC98E338ACC983A0687DE49E | sha1: D63333AFF2861F9FC39F3AB5DE75B7C8D6DD3340 | sha256: B9C07D7163691CF99134836C74FCB7ED60E9304A45E180990E8DB585A398165E | sha512: 68B4B1C4BC6345BA7796CAA907B84818E806FF0E16D93911562C62E85C274F0950EEABC616C220CC7EAF743171A03D30651F5F8BD0D8E2A5753AD00E96C27368
bin\Microsoft.VisualBasic.dll
md5: 00A594F24360F7F6D65CE63CB2D3C1B0 | sha1: 8E7386A1E886914B6443979C208206F2B2B940FE | sha256: CE482746E5B790FC5392081C6AD85ECDF2B472067D2159C2B0346759310A3851 | sha512: C7FB03A3B98AA13D00F28199F021C3C85263DF28B08BA5572FCF60E24D251B0CEFCC9E6410177495981E5D711C60F493F0C10B89D3F9CF10F19A60D6318700E2
bin\Microsoft.Win32.Primitives.dll
md5: 7CC4D27374A05A5BD2F5CCEA0B361B93 | sha1: D623AD0CC46F82129401A52EBFC590858054B418 | sha256: 76863D1BAF5B8B6C5A516FE6112CCD2CF4A745976912E490BE7E70A24A50B4A6 | sha512: BD0CD19EC8F590DD9A68DF4BE04AAB52620285A03FDF89F4B2445934B2A5FE0210A1FD7C31C49DDECC74C1CD32DE41663CC2683801CE52DA4EA4EE83C86F9DD6
bin\Microsoft.Win32.Registry.dll
md5: 53E9F3F4750CDECB8243BA05141B7F91 | sha1: 6FDAD8AF374CBB11DE78EAA30DD6067E10826DFA | sha256: 921FDB2CDA4F4853ED027C1112605F4E342986B90AE7B88C76FE29C98D723D30 | sha512: 23F628576EA40A565EC9C54E4BF30E1BECE706B4BFD8D56B58B5C1C9D10246EBC5F384A6724B0747B9C09DC3BDAEBEF7A7AB51CCB4AB27FB6C3ABE2FF2961284
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: 3E9188258542E426C5B9FEB879104F21 | sha1: 668B07A45BC56F8E2F1EC1AC5CEE71300E69F47B | sha256: 96867B8E3C55D424DB31FF997FC5C14FD2A47BA6AC6B3363CD5071D2895468E1 | sha512: D6141A970C3B5ABF65F349E7F4353309D0CC402AD2AE98200AFE64752ECBCDB49A6C8626F4DD0F152F77EAED4C040E7AB7434B4047075A2DDA8CE94161047EB5
bin\mscordaccore_x86_x86_4.6.26628.05.dll
md5: 3E9188258542E426C5B9FEB879104F21 | sha1: 668B07A45BC56F8E2F1EC1AC5CEE71300E69F47B | sha256: 96867B8E3C55D424DB31FF997FC5C14FD2A47BA6AC6B3363CD5071D2895468E1 | sha512: D6141A970C3B5ABF65F349E7F4353309D0CC402AD2AE98200AFE64752ECBCDB49A6C8626F4DD0F152F77EAED4C040E7AB7434B4047075A2DDA8CE94161047EB5
bin\mscordbi.dll
md5: 4CE45620E85FD8A716D846D862426D65 | sha1: 467631319D39F68558753EAAA4D9D27CEA1DAC26 | sha256: 29F585B77BECAA8BF520EABD4873D020347186DA48539267252E57A0AF42034E | sha512: 0A8BCB877CBF58BFEBF674933AC4B9E2EBFD998A03CEE290E5BE46B1A5F786C1D175903FC77E5D61E2D28F63C843B3E697D6E29C21632601CEA8FB5AF9467D5D
bin\mscorlib.dll
md5: 10C56043B1352E662577D0AD61357827 | sha1: D52A3C84BF9D8D6D7DA60DF467A18CC04087DB86 | sha256: 3FA5C3CB14195E9B5DFBE075F90D60EF8B38A862DE4E7D10F556E4523B6C6293 | sha512: 89A85E329F5653764A4FC9CC2737B43E737897E4DCDF5ACDD24D3B24B432C458951544EA3EEEB510D503D9C64CF503E26AFC6F21E21768B29AD0EA55377F817F
bin\mscorrc.debug.dll
md5: 349BEDAE84C82344470D57A8232D27A2 | sha1: 7DEAA047B0F7055D44A50C2F542521CB5D57338C | sha256: 9C49884272FBC3FBA52CB70EA16A26F6DC5362D0DD600C67CAD7054FD31EFFA6 | sha512: 26C5B87161E8168CB2728C9C9D11F8D5B6E695065B9AA5F2B7CDDE73867F2B0F932D0A49EFBC5032FE90B7FDF1FEA746714EE28E161562346A0E76BBFE077316
bin\mscorrc.dll
md5: 8572B0F73C4CE749E2A1C2CDB7E85894 | sha1: A6985F2A5C8B469C58CF147402F10FDF1EC80D17 | sha256: 7A9213FE8D868C24140AFB8B16A7D2BA39F80DF79E8296FB0989B6A772E3E603 | sha512: 52E19C6088E387900F42DCEA861DC35BF2C0EB614F81EDD202C8B020C6AE404D404D850C21B25CE4575497A84CA84EC0387F1441A8D2099904D91F4256DF672D
bin\netstandard.dll
md5: 47CB68FCD9F690A4A97F704E449305B4 | sha1: FE66C1AC7576882753B2FE95B935290430505849 | sha256: 3CEF3FE65CD0F9C3B2141F021F83EE3BD8B9EFB8745FCFB6CECE67A20E1F2B9C | sha512: 83E5830A3905D9FB6B97B4CBF8FD3A809684701AD03EAA12AF82002AFC452672BE7AAC6ED83929F89F0A5F3980102BC7960A10F65C58A75D1B584E7FC3C0D3E5
bin\Newtonsoft.Json.dll
md5: 328D3E4D99E47F36F3530E1EF9E6AB75 | sha1: 9A5133F9315AA76ED0ED132FC4A64B41D950E774 | sha256: 824222A6F8BDDE186AE8F13E5AFA0A53CDB109F05C7E5D8F4C73630F77A7C6DE | sha512: C61AA344DD0E196EB65C3F014BE8B03E47F9FB0862B7BE5368785990754E1CE2132A80D6A6FF81F9C45758F14846EF83BF41D3B0CB549C8DBB9E5E3FFB4C07A3
bin\Paket.Core.dll
md5: 8F2CA350BB80F54D5E3A246DE3592A0A | sha1: EFE66B9A84BCFF3409D753FAF491A62CB3F09FF6 | sha256: DB100221A963E5BE7EAACAE5B3B459353ED355FB5DF754B9AF84A5750C983A53 | sha512: A334D3A49BF0E5D46E179B1E5E72C4137B9AFDA992502DAD019430505F5E39513B7BB23D50BF1085F0AF3497478EF783CEDFB7528A97C1EEB571FD695D324474
bin\pl\FSharp.Core.resources.dll
md5: 8238845FE1ECE1040A7384AE9F9F6E8A | sha1: BEC0E7ADCA609AEE34C298A37424CDB01264E810 | sha256: 3ADA5C6364BFEC9FBCE69451E0E584810FDFEEC49B84AF0AAE946D21B9A9B34F | sha512: EF88E5ABDB383517478011576D2DE23D0BC6D3500B9EA4F17339F869B9E3FA82408C0F694E85A74A4F9254E1B3DD2D21AD61D1ED531C8A04FF8A0A915029373E
bin\pt-BR\FSharp.Core.resources.dll
md5: 9616D28899D92B25BF60B250BF078327 | sha1: 834918FF8142D8E5A384BAD764BA97C8C2F4FA65 | sha256: D7BD7811BDA4303C2E6B419C7F4E4CA00F88632EFFE41E9DBD770CF8E0AFE18C | sha512: 25C3E28B81CD6A9AFF77DAB6EAE7E48CA1F4FDF285BD33BF5573F9CECAAAEC2666AE19455DFE298CD8D410B5761C15A7E927C2C4B228CADA0111C4B04AE7AD23
bin\ru\FSharp.Core.resources.dll
md5: F78CD37EB39EB2E3DC208C05DC45D80E | sha1: C3E8F912A8B7EF205F4450489F8BC3A59BC93589 | sha256: CF01360CAEFED79B646335D496B00C3CF24E323FEE23FA723C56FF4948995216 | sha512: 2DECCC6CF34791B3C3D8494DAAB5FCA9E73D6679080127B70DB05961942E1985B6AE24A17490C9DB0F5665B283CFE67D00A1CF1CED6604F8AEB93C0EC78EAEF0
bin\sos.dll
md5: 7D4304BFF4467A323EFC19136EEFA612 | sha1: 445B90679ECD5D86B5791A9B702FC96B2CD0BEDB | sha256: 1E3F9075643E4B60C80E4D4D2617A83B46D68BF1594BD925E1CF397696C02971 | sha512: D986E9F4D769E5D2683021B843BADA983098E534962FC01A02BA1E5BF9EFF5065D91E0DAAD590979A9F8EA350CD910211F6A30783202D89E1B968417C45B60A9
bin\SOS.NETCore.dll
md5: 50C56A62A597675B985400B7A0FA6DA3 | sha1: 9398D8A50A4CC2E1266BB3D180DB0E7018303EBA | sha256: B3BA03A3ACCD2AF5DCEFA7BADA9697BE6F182317AB49700E30379B552C5B221C | sha512: 3FF62D91196E7699F232FF5FFD7D03FBD54A355EBC60DDC0D43EAE211607A38F0D63BDF057826AEA1081A2C9F90255DA5E0F00901BB0136D36CCE8B57AD7A3A5
bin\sos_x86_x86_4.6.26628.05.dll
md5: 7D4304BFF4467A323EFC19136EEFA612 | sha1: 445B90679ECD5D86B5791A9B702FC96B2CD0BEDB | sha256: 1E3F9075643E4B60C80E4D4D2617A83B46D68BF1594BD925E1CF397696C02971 | sha512: D986E9F4D769E5D2683021B843BADA983098E534962FC01A02BA1E5BF9EFF5065D91E0DAAD590979A9F8EA350CD910211F6A30783202D89E1B968417C45B60A9
bin\System.AppContext.dll
md5: 26BEFB5F81103E99143DEFC2E0AD6D2F | sha1: 942F463DC6FEB11C1BFA1A7E011794F7EDB96182 | sha256: 60F36EA59DD5C8BD3D460A81D3518D68EE8CFC91294E6A96C2FE1D76399B250B | sha512: 6DDECFA9AF59170FCD511F7EF2E7E0630F39953F6A1794DE63855D1E1BDE4405D0738260B73B9E8C6584C8391AF3C83C682E195649DE0B7DC6D6C6D413EF5D7F
bin\System.Buffers.dll
md5: B4A65D037B72D777503454A52C714CE2 | sha1: 407B7D309BD10A087B140FAA10745D0ED01727F3 | sha256: 334D06176A2850C2DB87BB7FFEFF02CE32A6CCEBE902945FE001F96341FB81EF | sha512: 783514DFFA2C5873C4AC483728C120D25F760D34B27490CE13A869506CC81351779E2667598D1CB358EDF7D6D82E52577F18F83FA9C11800AAC4A16145581DA0
bin\System.Collections.Concurrent.dll
md5: 4FC495A3D623A8D055BAD3A7DF06538C | sha1: 543050097CAA25D34E245259A29C120ACA9E72BD | sha256: F70B60333E2D4D89BA60FD0E2D95EC4D00C9A524D0F29E305DBAB9A6A9031F5B | sha512: D639BAA03883E9F42ECEE52C99E3959AFC996095F040FD501B71F02B283BFC0412D861EEEE04C1043AECBEBFF1AD446CCBA92D433C8124B69D2A58F3E11B7A6F
bin\System.Collections.dll
md5: 884BBBE39A3E778976DE564CB5F98282 | sha1: 70EC058BFD96FD30714A8F8736AF067C211CEE2C | sha256: CCE16ECABFEE9B393012D69FC101A8A7B2F9C93A97FC589DB205DB7F5B7E3877 | sha512: B006B608124B9A1DDE8FD57AFD647FD4A612C494A58A87FF4FA4693672C148AF20D4642A1AD414EEA1E7885D21D924BE7C7029B7DDCFBF2A8844AFA0F3E5FFDF
bin\System.Collections.Immutable.dll
md5: 7827FF006A7A644082A60BAB3C2D9613 | sha1: 14DAC650471B77F2B22A40449A1609107C07EDE2 | sha256: 2077891BCE382733E634230F58B2360831FB37D59CD8FE0C06650D4C15673497 | sha512: 85D276D2C0BAC1B2D2DAF67DD404875E90B6AC14D001E876C42FE109679D99C9D42EDBECEE76A0A9CD089C5ED833794FC80BFD950EC4AB716C4773AE063592F5
bin\System.Collections.NonGeneric.dll
md5: DF6D104EE56C7769766BCCB7E0B11F8B | sha1: 4E6A93BB281153753EA0F6BF83B53694354E8436 | sha256: 7DF6EF26815D03C9A1088E46DB162A9798AD3BA94DCDEC77890AAC59F32CCE0B | sha512: 5518054DB30538397561A69879D24D322472D65E7E4E66A7F3E896996EFCF9D0B5577E7B2AD66EBAE38E0D8DF5E40D72E37C0D54ED6FA03C3E1A380D5560C511
bin\System.Collections.Specialized.dll
md5: DE813A185188344E5A91A1A8CC1456D8 | sha1: 487888A05C850D95006C68C9095871846FB5A2C5 | sha256: 57515B6DD72F8E33C0945FC9672992AB69CDD86B466A7E1932CC27E63E0CCBA7 | sha512: 5FCD964B1CFFF0E5A51516B61F336765FF4D6E57D18CAE5AA1B2C7F7F67D9199BF1E6292BC414E1DDAAF8099BDEB610925F5DFFEBD22E6FC0448610EFCD785ED
bin\System.ComponentModel.Annotations.dll
md5: 0A5CA11E9498821BED37E6E264974451 | sha1: 6138F92E7C43FC14F4DBC60A0790F4122FB24A15 | sha256: 0C0C1645C6AB29C419421D47D1FB18EAC3C901B7CA40D1A1B07765E7058CB8D8 | sha512: 09CF0963D242A846795BF6B546C22365ECE1B6660D4C728A572D2515BE8048B251EC0071ED2D6CDF62B54593330045346BE1BB0177A61AEE4150A580F6DC54D2
bin\System.ComponentModel.DataAnnotations.dll
md5: 13DA242D978E747D910304A6355B7896 | sha1: DD7C468E1459F9EF9FB5D241F4E46CA1BDCCA1E4 | sha256: E555ABF628037D9C1DA7DA11A2416B85061B42A626A75A20232A1FF90DB362CF | sha512: 8C9D77B80E4176C649110932F8C4D7B149BBE5F2B50906792F0E5D81E1E44BC9E0BD879A4CD2466592F6A4CEA96D98F2CF0BB599274198328A295C1608394233
bin\System.ComponentModel.dll
md5: 3E67565607330206D8931086E381BFD9 | sha1: A4B25F62F926E8AC8E4F1E07F6A5E20BB6AFB68E | sha256: 4F2B25E776178311F23076AD28F2F3155AD8F3EF8ACF770B0A7BB6565D498D21 | sha512: 97F338C2CB20CE62A2FBC2B4643DE8360264CC65A2ECBEFCA6605CCADD1BADE72981EB6896A0A2B603CF01B5450C94BBC575D3F2DF659854536EF9EB864FB43C
bin\System.ComponentModel.EventBasedAsync.dll
md5: D8E0A465167E90307A38E51B3057A0F1 | sha1: FBDDB33A3D8C2A5ED8FFE5D20CB5476A22099A80 | sha256: 4BB965690A33C48CDB82932BEECB09B0B9A04FF547CD2633B54521A558D438FA | sha512: 9C1ED4E1F47BC06CE7D8B19DD83AF7829758EA808A5DEEF7B968925A979559B5B78CA9B1374A4945F0A03BF8A34CA7E6D98CC0FA61FB89EE14C158204BBDDF34
bin\System.ComponentModel.Primitives.dll
md5: C2059BD1FC2970A09340812F42D99449 | sha1: 4A3225C6E837235001C6FC770003DF5C422F5D77 | sha256: 7F587B0048B1ED557CB03E4F299E5FBFDF44E7BE9968F5D28744180B1A1141E9 | sha512: 8D39D3231C4FEB9A7E7BE7390201DFB74ADDDECD9659DBF3E68D835A5A2F91344C287A9DE93D98211C04E83713405D024D1BD45112904D6C18FAE81905370534
bin\System.ComponentModel.TypeConverter.dll
md5: 67F9E89D1FF2684DCB1F35373A11D188 | sha1: 7AADCD29D09F0433E4D9998FE27A03924BD91B7F | sha256: E10E9EA651C2D021EF76A64C257067FEDBB876C965A9AC60048B89B7584E5F43 | sha512: 83107B29F98D25AF9EC60C131092B8E5B1312529743F198FD2B1E86FB8D6A36362DA1007C1F16FB389AB436F6BF81014C9921E3EB0108BFAC73622B137B9B0C1
bin\System.Configuration.dll
md5: 273F41EFDAFB3FCCD7265D452B0FC65B | sha1: 35F99C05464C2324A86C920DFE9661CFBB152A8D | sha256: B8E87A2AC478BB98726E187838A967ED775702C048973F48874906EA52B51DA1 | sha512: FF82B318CCFC6A3D8D7F02CD1362790BDF4E6277633AA732E8201B72D9EE2A8643360AD6F11BD2651F207D272AC948E1E71893B9E75EE680DBA2103C89EBF61E
bin\System.Console.dll
md5: F5A431C4B861D68F65D7E1D2F5AFE4A1 | sha1: 5F3B925CC44E995EE667875C5D8170BD4D0F7BDF | sha256: C0DF629BCA809E2DF4D3B9417B5E010E79FD6F15F08161A45662EA615D7AC947 | sha512: 9E1F35E6152518700A55E9DFC4E3296EECDE8061C5D53D2165FD1806A02D36E4C5DC6B2FDDE59813B87FC07148BC6653C7D73B75643FD5CCEBF87F4A9ABB3158
bin\System.Core.dll
md5: 349511A43E1E5B4684937D8F0BCD07FB | sha1: 112D302FE8FAB7CF90919F3D68F7C0EB36C87BB5 | sha256: 17BAD7096D55C7A38251914EC80CE152697864345FCF82E95D77F6CF1CB963A7 | sha512: 26253FDB3F74A454D68FD59CD7B03E3F7256BBCD56AC051A2CC57CC7506E2C022322E1E0659DAA5C35948CD75EB3EF1D35E780ED7B265419EECC09555FC7CA81
bin\System.Data.Common.dll
md5: D27F9328B0920C90F486548465262DA8 | sha1: 988BF525D55EA4E037838D84E1782AE7D0F1DD9A | sha256: CEDD10D5D6D349AA3AB21AE5F6413C16864136ED7DC920EC93507C0DFF8F2D7B | sha512: F5D969F6893F1C6A49F1D2B282741282B8008FCD54796C8CE9ADF22AA37C0334BD970DCFA9455C5786B3DC9C9A1C5FE19048312F367616902FF5B96FDF0B10C0
bin\System.Data.dll
md5: 36FC85F040D5064F94DB6090E7A652CA | sha1: 2CF0694F4E3E0596F214554A67E0238C2E439AF9 | sha256: 9F8E79D8E5216FA4D6BA859C36ECBBAC7CB16B0598EBED77438710CC329D4E6E | sha512: 1BF965B19EDCB3F45FBBA0FBCB86D636B431BAC760878331505DB07D852CA2C9CDEF168EE5D54B89E487D63BCB0172779002A3C2D66C1A7E0F829EF639FB0B64
bin\System.Diagnostics.Contracts.dll
md5: 780E5B8ABABA18A591553C259F1C61E9 | sha1: 07C9FCD40F3CBCABFF3238CFD30185523CC1899E | sha256: 8D3C5A5FD93055E373B1D03D1A7B010793A26DF0D1D9DB00E060F413A72A8B1D | sha512: A703579D31CB4D2240FC9EC57149F2CF81CAB7520EB3B2549DB93EDA796AAAE7F2A7F626A14910F47B7517403EEBCE81B5E952CA9FF7115644FECEBCB0FB9529
bin\System.Diagnostics.Debug.dll
md5: 6C5A3EC2FE9B681ABC3E44CA2DCD72F4 | sha1: 67168FE83B49BB6FF2582F311AA21C9015AB25BB | sha256: 843DF890B85B2219DC82FA3939DBFA0F9270F2C54D977374BCBE70BA90536AF1 | sha512: 63F5EC69938973B58915F0AD73B96E1D326F8EC665E6D3C8677EFAAB58C8A8DC17696C58FE8E88257D2247749A66E6AAA6892461A0286DFF7AE0ADFB901FB8ED
bin\System.Diagnostics.DiagnosticSource.dll
md5: 39BBBAA78411C6AC213D8A3E4E56445F | sha1: 485E8A00917798172E6D0B9ED0050B6208D91E17 | sha256: 799ADF83EE5B23E038D1B27C2D38BB6AD5C2DCCC9C35F10564DDB05109E70E67 | sha512: 206CCD65EA79CBE8AFB198AFE4742FE9AC947F1A40C140F8E59758137FE8CD227F35E0F76F2CA76127B2CA4E301D2EBBA33BA6850F8CEDD20FF8650C25285A3C
bin\System.Diagnostics.FileVersionInfo.dll
md5: A788F20BC35C20F8645B09CCD2808D99 | sha1: 59A41CE05B43DBDCE61C146510E219DF87D4CC35 | sha256: B33CAE4B6BADA87D85DB27442C894AE135DF8472439D64BB475A1B1AA9CB68AD | sha512: D99A2D5FC0A1F1DB55E716FFBA685112A3D6B367382CB8CC97B7F08520178F156562C2E92D74245D398339C39E589F92A71EFC5ED32196B72760BE5C76314604
bin\System.Diagnostics.Process.dll
md5: F14EB97C207E7394050A81637B83147C | sha1: BEE35DEECBBC16F32519A0BAE09CD094C3D30FBB | sha256: 358EF4EED0E7FCC5E4F293AE8D1A3588D6650EB664634E395A815D87F9B9FAB4 | sha512: 8B1CFFBA989F3C204BC854E0D3851CBBA7DC7AA1F53AE71AE8BBE3BD0FA15ADC39B9ED32DAE8E3B733C877A84B0EDABBAA3D4F3F3AA6235DEFBD4DAE04E7154F
bin\System.Diagnostics.StackTrace.dll
md5: 083161AB256A1F551C57884CBC86090E | sha1: 882049E4266B3EEDBEE877CE52B043D619FA4728 | sha256: C5459959A234AC9ED4DC9553C3D15C92E3576F098396582A0FB5AD63BA1959F0 | sha512: 1E30B13E6DB3B3CD00FB77C0106ADCA9CBC2DECA0D487AEFA6587D7EA6583DF90EF7D01D7460941625E04CE2AC6D5BE4B19F4D095F1CF58FCC6EBC6CFB5316D5
bin\System.Diagnostics.TextWriterTraceListener.dll
md5: 16E990BE70682F5583DE548F98515639 | sha1: CC3418E160D79675E5CFDE293CE8C73C0F97A733 | sha256: CE3997C82386A8AFF29BEDE118F20E182A0BF6E88D6D55106E08EEABF652BC9A | sha512: D9CD56F0852DB219EC04A9E9A36D3CDD895B751B717608CE48A33FBC22200D65A15723D868BC062927BEA95C0641E904F6E942C163DCBBB6E44AD9CF48DEE462
bin\System.Diagnostics.Tools.dll
md5: F4113927CDA4CFC244F257A7A6840EEF | sha1: 6A2BA4E9530681C8A25931709B92982795875F17 | sha256: 1A48618013CD2AE81EF293832BE3CDFF781DF3C56C4DD4EAC07EB1CCEAC43633 | sha512: EA07840B5689A2EAD4BF868A9A6D76E5DB8EE40A6570122DBD277006AC4F16CADAA1B4BB22B3C171023463DDF35D54E427262D8AD9342B17A9C9642626C8320D
bin\System.Diagnostics.TraceSource.dll
md5: 6C788C026D6EF40DDD4FE97F5A20081D | sha1: 75AE139312262F585D45EFF3A2D1E80AFB07B27C | sha256: CC7687DC9A0F267903776CECE2E0822E988C0333B4006F65C51DD62466BA5F97 | sha512: F1CD8552F3A5199D0320906BD7256246D4AE08CFCF511D0F21CEB24AF1095BA4147687A722AAF7856B0E27138B046E815756B9283BE05E7B88B7103AB927723A
bin\System.Diagnostics.Tracing.dll
md5: 52ED51779AFFB9F1A7F40420206AD028 | sha1: DA63DF7B4CF3BCB49385B3D4F51EB4323B5E4EAF | sha256: EEA622FB2ED6D93B454D68368CA62B0B011DDA902DC17E4758F205DE9FA2BDA9 | sha512: 7C20C3ADB3DE6E16656E4DAF600A50F7BE1D6ED8B438FE16EF7FBD46F6089107CF475C9CEB9D8864D08D85A52EE5CA5E0CB7D7C07AD7431BEE272FD80EA96E88
bin\System.dll
md5: E9DA59E25C01351089BAC8CCC6CE059C | sha1: 051878B364E1906E7BDCAC86DBD6002B249B08A1 | sha256: 5896602A6BE3A8946532137447BCA81656C1700EF2A61503C4D1D0321D7F08FF | sha512: ACD76974B2C6D75AF785E49C68A8CFD2BC802375D8656047D1F9893FF50E31DA7DEA4872E4824491975480A97792FFFD246D29B9C06D13BDA1E1E317C00DD1A2
bin\System.Drawing.dll
md5: 9CEF21CF431EB33112E98DD324FADFD3 | sha1: 81930F069C4CD29247B8EACF316F95B221B05F51 | sha256: BC7C5493C30F098B95BA1C903BBAAE572C943417CC1737185D571E5FCD80BD1D | sha512: D273CBCF342FD54943C7BDE2F2F2F15FF38D18619DA2B60F132BDB97FE02CED7C69E08D0BA9EFB961CE3E23FCDEE6F6E5A6B5CC560860AD0B2E7450B64F0BB4C
bin\System.Drawing.Primitives.dll
md5: 46C9F13969CBEF68F5ACC4EA37EF3A86 | sha1: FDF5C3AD891DF1CD543B3441B41DC3ECBA1949A9 | sha256: C5EDB83138346DE5172D7FAC927688C836E1F9FD063563CF024F4D09014C12A1 | sha512: 363749571CB78DF618F0EBFBFFDA306BBB06865AB8AF3111F6BCF3AFF0A11ACE97BED5E6D0683AC93A725F7543A6992262E09A07C7830BB6CF95E17055ADB818
bin\System.Dynamic.Runtime.dll
md5: 9DEF6AA04023638BCF18951822B6736B | sha1: C5049FA3258FE76BED4D0984DF90C5A74A3E5730 | sha256: 77C8C4FDB5B3B8FC4375B5521FC290A3FA1AFE83180A21DB71F107503F4CC6B3 | sha512: 5754C3916DC4D4E3EE0F234141C4F82C44A0F8D1A2EA05A8D8A4F3B63FF55609782BBC9B9C896DDEBBCC166E6E71B3C18510D71176E6E5FCE3B6C67EAFD43EB4
bin\System.Globalization.Calendars.dll
md5: 0AE579064BB0326C41FFD1AE9EB9FE78 | sha1: 2F3F5A6A10D704EAA2750C291FF3187065E290FC | sha256: 26A6D0EA6648E1C86DB01D9035CDADCA33E1029E60FAE6B2ED12E7F527558203 | sha512: FA139900C596BF6F6C9B1FEE1234E74B43B405E7EC55AE3FF8882EF2EDE72122FFEA892EE95A44AFA82FF2161510BD959E96D4A13BA658C540E7BEDCF951AAAB
bin\System.Globalization.dll
md5: 4ADF2E068CC9A6B5B5115F480CE4AFD4 | sha1: 7D47ABE97D49D8AD176C2B2A0D5EFB8273362605 | sha256: 119F9BC864AD8BA2310C174F0E44A41F5D7F1C3969BE7E04A8355D7297537054 | sha512: 25B00D30017B0CAAF69A21644F1FF64D7D0E02FB56CD996672F9AB0DFF42FD7F24F0E42D68EF2590083A058B4BC00EA94A706796F33B8520AA9989961E149123
bin\System.Globalization.Extensions.dll
md5: 7CFF1A02EC2038E81661BE1FCABAF4EC | sha1: C259FE060F163EBDC50459932414847680C9CC40 | sha256: DFC062CE8BF36E0B6B1659FCECB55B2F638C3775AB0BC8CCC4C39FB7AE127AC4 | sha512: 10ECB872AF175153A2193B882FFD38D4E3305F4EB23963B387B6726ED6C2D3F2BCAE8C2B3DAABDA963F31E01ED1D4820B3BE8B3472FA70210A2AD5101EDFC3A6
bin\System.IO.Compression.Brotli.dll
md5: D13FF19DE1BDCC4D656958EE9922FA36 | sha1: 410B70B6289DE2AFDC8FD8B776ABCBD3109718A1 | sha256: 5B82B54B9633BED5CEA1B419637B200447D7B3B60451B7E1C9ECCDC1EEFEAC08 | sha512: 7CDCADC1AEF98985878A1149FFBD22C1CF21761BE62486820B7E0A4E7305793EAE6E5B8397AAF8677934E4028E4509A4C5F2258106EC3B2E280FA713A53C6020
bin\System.IO.Compression.dll
md5: 66B0E0AAD9AD006C67D0EB8F07A30249 | sha1: B21801BFE7C8D9ECA13415EE00050335E82183B4 | sha256: DCE814E82E416A04FB6D0952C6D27F200B68C6987DAAB6D7876884EF8DF0BC94 | sha512: 749EB46273A2E3C0A748D1F70FA770DC03CC7C15EC227CAE8C8015B70FE0FA26A1E9D9B18471CF5E5BEBA002647213D9E0F9AE3F2A6068473671073C0D309F6C
bin\System.IO.Compression.FileSystem.dll
md5: AF94A932CDA18A087A189E46484613DC | sha1: 8E22777B4E54D4B4C500979316504B8ED599FE40 | sha256: 2FC09EB06E828B0776844629567D5A751426862ABA4AF2FCD3E727ED40CF1429 | sha512: 8AA7172865DF86E730EFB404160E9E116247BCAB50816712BEC612CA594D1E1578D1FBEC587A154437190529369661814C64177A709AD7297C68B94D8283FB1F
bin\System.IO.Compression.ZipFile.dll
md5: 22BCEFC687D824E47DDAFCFE5424FA52 | sha1: 9942A732E8876815E0FF5B8B757939FEF0B45A52 | sha256: EE9BAD3D6342F45B25612B708592AB7C926AD55B5D33938CC897E77042CC5A27 | sha512: ABF1F55AB8A1CB0910F9EE0E93FD2DACFB2650F93D6C71FCCE98A92CA8F0AFD9D847F42C78ADAF03A3D553ECFD4CC43E8D895DB80DD3DD6D4F3EDB9A2228F5EC
bin\System.IO.dll
md5: 2B034979FC73231B3662AAED496E2757 | sha1: DD57F72D0100EEFB329574A0AC4772C0EABC8D71 | sha256: 597A2AF349B280F42D78EA34B019CA94BCC7F476AD24A930FFFC6358FEDD1BCC | sha512: AA04B10E0B343F2233895E48809CD6710003FEAB5ABE020F8B66D84FF6D6C7290BF7CE484EB0B07CE5A3657D00EB8A5C4CDA0AA96B1D0F3F4A27E33E4B8278C1
bin\System.IO.FileSystem.AccessControl.dll
md5: 619D8F4B7F7C9D9DCA4EFE93D0147D50 | sha1: 2A5FA32FD89D8882174E08AC48ECB6CFCC236BCB | sha256: 920A46636E1D84DA253290284E402BCFF7C36F32F0CE6B01F92E6CDC6E844B73 | sha512: B1913D1FC3EA8C12DEA2912A7BA83AEF8447733D402B8909002CF2E41489295DD65BD2A27285A92A96D6F7042FA98BA1E5AAC1C759A534753B162A1D918D3813
bin\System.IO.FileSystem.dll
md5: FB7DEF39EB7E309E16638D40F5A9AC7B | sha1: EC999448660D944F3F9A704ACC5F3DE542E91F91 | sha256: 580D645A31EA4FC7BACDB70F15F4510F8758D7F442D3F75591D284E11A341C9B | sha512: DEB3880795DB09D45E42638E6D04D63C97BE7CC32E698801060CA242EC081C7E85DD1409259C3B6EE10059A331150F0CC89235CB060B7FCFBB2DBC714D1B361A
bin\System.IO.FileSystem.DriveInfo.dll
md5: 45F54C1604690EBF6EE5AE5FF1DF1EBC | sha1: 00084F21755B0D1329DA0CFABD524048333F5351 | sha256: 4AFEE202E5E36F51AA718AF534D398F936D316D6A6224C77A5F245BC02A62B3F | sha512: 9CD1940BEA19EF5D10E6B368FF534C5341E3C0D108A9EBF8C65CA774E1A0EE86791E1DC800E21D1411D9E8BC0C6B5555FB4B6F399B87E9E83707ADC57D94BF08
bin\System.IO.FileSystem.Primitives.dll
md5: FBCEC50F7F707EB05A8F7BCF7CBA3365 | sha1: 468BCCD6A312C7D5C5029DBD1CD0123DC087BD30 | sha256: 031E2CA1A985FC91874229943468B84AF0369F220AC4A6F344B06191C987BF14 | sha512: D620123380A208D7EE2508CF37120979D3A2D87C0F5915AA284E8740404EC13F98E9E0002762429068252CC2B28F1838B1DBC13B2B8B88A59EC2DCEA00A51BE8
bin\System.IO.FileSystem.Watcher.dll
md5: 8755FD84DED1A14B4847EFDB564DA5C0 | sha1: 39FD8D38198AB0E85CCC2D1342FED550CBDB6816 | sha256: B732821BA0692AB632D2B7805FC53DA373AD217C29EFF7E45C93F741A4FCD6BD | sha512: 52DBBC0DA6126B391741D2E08EA02F61463AEBAB0F8548F8EA1B65D8735524073F6FADA24771942B79AF912BEA1EEB8E05AC37CBDAAE1991B815D10A10CB8452
bin\System.IO.IsolatedStorage.dll
md5: 1A2EBEDAE9FC6B2B18459F2BB268D648 | sha1: E99B097E04179EA51444E70854DDF571E45FBD8E | sha256: C6E4470DCA8496D2D137253CC09AD9FEEBAAAED8FFB4CF4F5F90BA555C3F4687 | sha512: 5907DF51EEF208E577F470180A4F44898FE7F315EAA3CFFAC8B581770458597AAB3B4465F4E9785856751CBD69C4666FC341D43C02DA5CB96A898946FE35F82F
bin\System.IO.MemoryMappedFiles.dll
md5: 1CA0995E0BEF8DEA212E9CE49873D055 | sha1: 8CD33EBE9CBCDFB834480A093AF81EEE59DCC07F | sha256: 44A96C10E195B72A2D00F82164E88F14C9377A102AAD67656A5631F3CA0793EB | sha512: 1D0B74F1DE4E69235DA6E2F7945AD460AF37C4184154C56760415CF0491A25FD7F03C755B7A734AB5109E206DD30B36E5D0B4F62F78EF31F838797819168277A
bin\System.IO.Pipes.AccessControl.dll
md5: 0A539C5C5FD332EFF12C44E085EE8DF3 | sha1: F44CAC1E868C5695D27FCFF6AFFDDECF5CA03A7D | sha256: 155E9D19DBE2DE2AB6B8AE5B42E871C03F1CCBE295EB679FCE4DEF2F5DDF5160 | sha512: 645E6C09E9796CDE2D381434F364B2F2EBF199D4CE977C16DA84E8C418F0E31C1294B742586D5CC50D330F7A3D8CF7C17C2993EF2777D963927B6D2B1DACF47F
bin\System.IO.Pipes.dll
md5: CFC90176557F035ABD30E80BC311B298 | sha1: 98CD9C60C0C4C75A87DAE6D16CC574D43DBEADB6 | sha256: ABAB06D7CE5CCC8FC4E5C994B1644CD2B56690DDEBCCC8B0C0F26C0CC59D1AD9 | sha512: 35C0AA29A006D006FED0C39284EFD0138E94110C1646254FB6A273A963C254D72D564BE8806A4B0F9E8E84750C72218299C14DE54326172CF7F0E1879DCFF1E0
bin\System.IO.UnmanagedMemoryStream.dll
md5: 8C46C2EBD5077D9809F0761581C9C684 | sha1: 2F6102DE8D042BCB7CB9DC3E3A6A48AB023CB35F | sha256: 0B5C8894833BA813E9E2D4F4BEEE648CF3B04451EFC5BDDC814926F1ECE067E5 | sha512: 6F36E06EADA519AB637BBDDE2FC8AC7D36812AE1843953876FD6C14B48D520A64D4F74221874DDDE8DCBF1B851CA848E287259FB0745E2C973515CC8371C6CC6
bin\System.Linq.dll
md5: 8B8D52A51E81EF9E810D2846FD325F1D | sha1: D24B35CB48EC56FB6BCA56DB7DC604FF70C4A102 | sha256: CEE12BC6DC4208D53CC6F2154E89988B859692265CCCC6520E83913382C9A3A0 | sha512: 2520AE1DEC7BBF6A15A8C74BD7212AC81CC91B609D68AF14D8DEED07C3BA7E5FE7BA89D486719CAA23C6C2594E653090E966220CB6EF7098E62C38F9785B9540
bin\System.Linq.Expressions.dll
md5: DF5CB63C88C0698DB19DF40AA9123BDD | sha1: E455B977B8D69E56F9FB219394B9724ADF219376 | sha256: C12F408E369B4E55F927AC9A218C482E0A5D42BCD4E929E2E25B31EA95EDD7A3 | sha512: CCDD6DF7B49813D50D7C31C24C5C815596C46518573CA97C8B2FFBD96D620E9F31317B3E87C80F3B5A96969B1221FC068A27384DEA470B18952DA88794EB3FCE
bin\System.Linq.Parallel.dll
md5: 14459DEAE921C07B9CCD176CFCC61ACB | sha1: 2FB3B96048495B3F95E60D2BA2B0A8428A2BEC3F | sha256: 0DE146FE36B034A2FBEEDC9C9896C15A1DB59902471518FFAA47DA081E68AD72 | sha512: B29B028F414596584B738DB27529E10FF75E84CBDA3C58290B0DB11D817FEF7E9B456865EDF0C28197B71DFAC602B1BC681BB67E9B7461ABF50AF8F5321AAFBE
bin\System.Linq.Queryable.dll
md5: 56E63A3B0AD30E8523A94110E54F98F5 | sha1: 72A44693A777D5DDCDE641AFF44951A93A471358 | sha256: B5D2DE09E066349E881F4D1FA6F7A9FB4C289AA4C629C5BBD114EFB2EDF43A28 | sha512: EF5B47ADABFE8063D2ACDF49BE3F6B093F38E03613863D5D8BCA27F18A58F075A3A543E64D7CE2065C4362F6A5E06A862F623B14301A361099BB862382238016
bin\System.Memory.dll
md5: 649365A3C6807E2FA6E73784BAD5F9D2 | sha1: D7D1903B1651D05B923DB08B560F449264EA9C6F | sha256: 9EE97840BA44D010D7AC7D470C09622AE7228B490EF7D0656E072E3D20CB16F3 | sha512: 776BC85D2F68D28E549A3923D0282A8521108E328DAD6835411DB97EBCA7A083F9D6594798D0D966EAC8C42D5CEA0FEF645836017BF0138033587B22DDAEEC69
bin\System.Net.dll
md5: 32EE3FAECC7DAEA50B22353035EEC747 | sha1: DAA8CFF06FE57642FC9F1DAB20CFF0C0B20C360C | sha256: 57DD779AE79678F9B36FE9803B8628B6F8569898F1F5F60E36084C16A29BADB9 | sha512: 58CAF2FA09FCDF00E46ABF31A78AFFFFFC6CA3FB12E3C9D468B233642181F12C71896AFC378609C4E4DBEA87A14535EAD8C446681E380CB25704663F765B78BF
bin\System.Net.Http.dll
md5: F283EE19E4D010EFCC80670F6DC54AA6 | sha1: A7B6272EFFC5F39906546E67F48C58CE35645F7C | sha256: 2C03A633EE8270214D0FF7EBF68D0242F808A13685876078938C303E2729A026 | sha512: B745938DCF6F0764A6EB59718685267B3FA04522AB9EDD8737C426DC2F0266FCD6D4669D03C8FB878CB7571AA7C66B86E4E90A34DCF4EB5BB8F18A3956622C3A
bin\System.Net.Http.WinHttpHandler.dll
md5: 037346D3B41666899FFA7E25E13464A3 | sha1: 973914F4812A7DFB3F9C4EB08C10DBC67CF85BA7 | sha256: 8C5E105791543717DE0CA7022F5DE9BB080E9EEB254F5EB5D0BC57CE01F70641 | sha512: 3CF30CA8FAF4A570D01A793E33B651042AC0C9695DC4043204B0D0D8F9ED1CB97C05AE769512161AA8DD6F34B693638DCC4BD90B7F96D8AB790FAD945594D768
bin\System.Net.HttpListener.dll
md5: 18D5035260152E3EE6C4A8A98F8C34F5 | sha1: 14DF9022C4DC31D0D38377C03C4D74BF1250DFCA | sha256: 7B0B7FE29071E76CD27B95D296D4A5B585C02FD9BB6927B5AABBC7ED98C76598 | sha512: 10D6332C1FFF18554669916535B9200DA84B46E70527E86402C062C87108EC48594A5074DAB984AAE5CF6F51F3A54CB5AD386CAFC29CAB75D6230D3D96B19FF0
bin\System.Net.WebClient.dll
md5: DE59D6116A80C7FD8BA281785FAAD9C2 | sha1: 8FDE8AC290505E4C365FC32BBFA11CD4FF63CA38 | sha256: F02B5C6A14073A04EAA4C3A617A6748E8F084069AE8142DD3086C877D021E6CE | sha512: CE58B5C82EA4D849588B4813AD6909BAEA9047A31E94B83F436A674A52105A96DDF18CCB8DF93E25992793C60D44424E5806B65A40447B3B5F7FC31861E9980A
bin\System.Net.WebHeaderCollection.dll
md5: 80A98E50D13966B79C65A4E4790C43FE | sha1: 2C54C5955D107EC2AA4E5905126182C7538938A1 | sha256: 35EB5D69907EA78ED5565189403241168E10E53374EA5CF79DF18C894D399171 | sha512: BBFC9E6E678D265B0B66C76934BE3A9EAF07E125139622A01EFB078D7FD8E717B80F3A1C1E55D59C8501DD0EDCC03293F74B3071C019BB166B916EC9D705E230
bin\System.Net.Sockets.dll
md5: E1F6622FECCBD8D460424D2633AEF21A | sha1: BBB70F3110A58BCEDB6381F89000AA750E137706 | sha256: 7E9686853CE93DC841FEAB2384C99E1125AA16518A0045E4896DF38FA3DCF5D5 | sha512: 4B926BC51C26A0C1C57D3199BE363B903B36FC22A579C4BA5BC913C339CF5E5F26471309740F80809046D54DF320BE91FDF47A0933EE39DB9EEBE11B25F94C6A
bin\System.Net.ServicePoint.dll
md5: 609B8ABB9BA20B56206F0F43C4E74672 | sha1: 0EFF1AA192EC246E3FAAB2C6D229F704A208031A | sha256: A9FABA0B8B0A24C91B202948B3B23C2181FC7BBFCAC99A6FBBF17000B5D789D9 | sha512: 1925A5DEFF5C961BBF6BB4C2729BA57D7188B448FF76BE705602C9878C436C10BA4E1A46EA2355A06DECFB79CC8BAE846721384580A7B5B30CF7FBC4AECCCB02
bin\System.Net.Security.dll
md5: CD89173D756968A04036E96E5A711924 | sha1: A2FCD5FA14A586026D4DC265B6DA60B3FC756C52 | sha256: 35A3D9409B75D19BA5290DDAC3514CD80ACBAFDBF1D5E6FA0B8F9D4ED5733343 | sha512: 53332F1DA6551E1E42FD9E2A41E912E035D529AF4C9976D2FF051A34E09056A8DA9BB93E5AD776612B0BC54738E1FF661D975DB3A04A945BD12945EA6DC0ADDB
bin\System.Net.Requests.dll
md5: F82B6D3303E69B2B96A318D1505E6D5C | sha1: 1D1C7969145E17456D001260D75800A076021526 | sha256: 7EF214D1C88E4DF9AC4CB3A6EB6BB160802435FCCA1FC7C60FEBAA5008181C1C | sha512: 56260560A893960B5895D3EC823D878BE6EBAFB2D26E69233B33559F40B55B836A97165B1AD8C572E7C0B448BB66745C2EBE7FF749EB8D063E00826110D29BD7
bin\System.Net.Primitives.dll
md5: DB655D5475903DF49D58DA8600293E95 | sha1: FE65745D5955E102574E82D6F4390EE62FD2B5FD | sha256: 2F770E2ABC8CBE1F1D5A08C5EF33DF5017B2ECC7026FE7F644751F038903E89E | sha512: 9A8848A53403BEACCE202B68CD0AE75E5B947F37E100FECEF219C1FE3389422A365159238F131DFE08BACDEEA08C5473931BE9DD39205215298D826B83682E3C
bin\System.Net.Ping.dll
md5: 3D2C970DD7EA8D41B3736734F4C9E9C8 | sha1: 33C002EE406A35B8B26DBA8384F616EC27322DB1 | sha256: CD6DE1DF8A78E5982F067BA4666CE57EC62866151F5E1415ED98801612A194E9 | sha512: 7D0D6425DE2374E3DF1B4BA6E4712AB76C9788BD71FFCC3FFDEFCA87C840B60629AC9E31BF383F50CB64D9C7080205FDE1E19C3D990C8510374315AAA6CA3632
bin\System.Net.NetworkInformation.dll
md5: C53207FC998FDD80E40B5E525663E495 | sha1: 5674157E8A3CFBA1C7C3121CD38DCC5CD296704B | sha256: 484B20082CB76E5F071EEF264C20CAB3055E0FDF793F81791B21F7460EFF00E9 | sha512: 53F825D669A7FCF4133C314C1E0216F415FBB98D28AB6891CFE9C6F8D84B54AE99786717209409D6B5409A1D50C39C5C51A6B3252894B74A67707DD215050BCC
bin\System.Net.NameResolution.dll
md5: DAD25BDF4187412DDE5D6243B045E670 | sha1: A0C4F25A2F9716A0F7933704538C7D2E0282FBE3 | sha256: 721E9B41078BDC10E8BA8AC41D06D96081A8EEE01CF10615C01BDC7053B3A9FE | sha512: 039C5B614A4C461793F08F1AA1BF75A5752501505E97B61A0D328F48FCC24D58B110E4A8FB8A406868B185B7B844B38CE7F054F3DBA88A98EC718C79CDED7B4F
bin\System.Net.Mail.dll
md5: 56D362780E620BAA605BF87F4C80C320 | sha1: 47740968C1A94A49C0AD888F9FDCCE90BB9FC38E | sha256: B0826D8411F4044865A53F366431EBBBCE1CC57D674F17EC751B1946FB6BBA88 | sha512: 3865C8BB711BAF1897867A0D9EA2624E4F294F1D4BB60889A9686A5BC9E445D28F9032D94A3673DBDECA44F742DB4AA7617E419A8D8ECF501DFB14E117006FA4
bin\System.Reflection.Emit.Lightweight.dll
md5: CA6A82C172436A3FF8FB4BC99560CB2D | sha1: 271DC1B209E9D9A5902AC413A0309BBE6E74DE48 | sha256: 5AD05C8683832D8FA1431B2597265C4B8FAC5244CB4E8C5BD84A0F17B3204056 | sha512: D506E8EB7F57C632A89FC1BA8AA9719E379F61F08D468F8903C5BA5DD24177FE3760F8C6A6A9A08E0F5016A767F7125DAF10C7C6530A2BAF72B91A6C5E189AC4
bin\System.Reflection.Emit.ILGeneration.dll
md5: 9539A01DF3FD96C031A47999C4DF094E | sha1: BEB87BB6C68D9BE9525E1293E27F65670ABB8B6B | sha256: 2475C24C0B5A62F7F07F3212054C3D39C490975B8C2AF557FF04F2737235DE65 | sha512: FD0E56D5D81CBBEC682533E6FACAB8F9C568864CCF80E7B47539ACF9F3D11DF56D08D7CBB8D973CDE36FC2CEB7980D8B2D62F5230B551A788BD2954D7746254A
bin\System.Reflection.Emit.dll
md5: 1D04B6DA8872A5C2F8908AB3AFA3721A | sha1: 61F4A659F8AB4CD2B537A0D48C0D8D120567FB37 | sha256: 8099783EC23EC5175B276AF7FE4ACC8480C1459064126178A56B3776E946D28E | sha512: 0096F85FF86C7EEF9A2F54E85B4F3DCB5C49794FCB503736C15ACE1C09F135A0609225CFAB6A2329719C9EDB04D539870A0B34979CD8E27D4D39BB2E988B97B0
bin\System.Reflection.dll
md5: 55F485ACAEAB60B695DFDEDC4F6A1D4B | sha1: FC55988DBD513CBE969485102F37326191F90F46 | sha256: 2A1DBED7F0D6BA595B850E5CB61ED44AEEC1780738A5F804E547A5AFF44A18D0 | sha512: 87DE550D8BFA01070C1CC82EAFDA924D9207C0B65724F9072ACC70043FCE368D88EC9F63DA927D3EFA7A2DF56B0972EAFA352EF7F11C2BE952043243EB44ABAC
bin\System.Reflection.DispatchProxy.dll
md5: E7144D003F33497A21248104F7463668 | sha1: 882C61F07A3B73F2470D76D7256C94B2CB49655D | sha256: AEA1374495DCB7A081D4BC55DFBCA4EDB82EE7978459B2D7E58FF6FDC8809883 | sha512: C53AC87EE87F4C7C23B32ADD26F15EDE39FAD9253D9A9DCC8A84C35D5A449901E1E64F825FE32C689DCFBC992F7A5973388A66602CABBECF95485EE2F2841706
bin\System.Private.Xml.Linq.dll
md5: 2CFC1D120DDF983B10FED5778142F3DD | sha1: C9EF397BE2BA8AEBACBD28374D23FF0623000394 | sha256: DF17728104A93F836A66F4AEB0E62552DAF160F027495E8A5CE98BCBCFE62128 | sha512: 4B9E7DD5234F3364664D0B0FACD633B30E861378ADF356BFD6C05872BD71F151889A859A4E10CF23F72E5B8A3CE36499F7562C15176063E270F6B106A3C6ED06
bin\System.Private.Xml.dll
md5: 9F43A8DBF2DE1EAD768F6D3B212AD245 | sha1: AD14317354F72D13D436994EDC9B7EB77FFD97C6 | sha256: 3B36DC6AD1B9D4CC81D45C9E5EAFFFBB4028ECF2DD03EAC6FDC789CEEC7B40B0 | sha512: 68599301CAFCD47EEE3C9B8E1860DC350EF33404B4B0C6869053A5211F92010E48397BFA231B4E24141AF33970A1B7B69C63F53FAF0BEC47EA09A7BA643D9AFA
bin\System.Private.Uri.dll
md5: 31347ED2486C180D9AF0955F5539AF70 | sha1: 5D178517ADD3C13684EB4E0C8D4A65360F4A8DED | sha256: EACA5132B615425F7FCB3C910ACE7D16398C76659519466067C73B46D66BDAF1 | sha512: CF51A200C024E2F10D8101083AA8CD22F3B716019F6FCCEA74886E028CA75B2CDCA1A9805285AC2583901E734469A12E6C1DDDF48988486EF3B80B66CD840141
bin\System.Private.DataContractSerialization.dll
md5: 40386216657EA650592F3ED367FE1BCF | sha1: 50677CC2EA45F71F014BB5FF3BDAADFBBA11C3CE | sha256: 5466B3EC723B9941A7C4D3E8CE01A9D468A2408646928C1712BC90CA9627C1CC | sha512: 0D983249EDDCAD585910F4752C62E43CDAD8A9183A90F3C9E999639BAAB2C7B4390DF6DA07F4505F34FE25EC896F10F1F851AED730EB60F64D23265CED97F104
bin\System.Private.CoreLib.dll
md5: 3F69C82E8194C468A6E44EB62FDC5005 | sha1: 4A00CDAC017C0400B9686C9A5134BCA4D9F8E037 | sha256: FC1BE285A290E0F5EBF97F6ECBF5FE5BB2C3D445E167A21E04D8C0F9288982EF | sha512: B49EF575A082C8C2B43E9B4ADEE4F00FF56A6C0119151A316C96018430FFAFF2027899ACDCBA5603E84FD775489ED54AEE6ACC149F6D675337EA239E2F37CED0
bin\System.ObjectModel.dll
md5: AE2AE5455AFCBA20787FEAE3FEC62E55 | sha1: 4AAFD929169C8FC17C360C6CCC73A75E21232CEF | sha256: 6017206F6E13AD85A7446A0582E94CB63AA42B4E3E2AD4460FB6EEB1FEE85184 | sha512: DD39BECF4859F143C6DB55B936F9883172BCD71013B346B620D2511961F361AC137A56BCD13DBFAD4D8AE26F0B9E06A588194320037C6F7716ED8D981A21EE69
bin\System.Numerics.Vectors.dll
md5: 7680029F62BC9A3FEACC762F301CE6B9 | sha1: 04EAE0ECD4BFEEE33206262D37D92240ADF8B4E9 | sha256: 675C6F0EDD04A5A2DA2974D5885088041BF1800E2A2ADCED4D8B2544241F5710 | sha512: 5DD1442509B838ED62E97083F60ECC762EF876B0D56D565192391029F835C5F812C9422CC0E8F99C556621C67099900A6AD4D18623FC0A7FE8D8BDA34710D03C
bin\System.Numerics.dll
md5: BB52C5176FA01EEE30E763CBF25CCBC4 | sha1: 3BF80A347346CF91E155B40522B62DF86C0327CD | sha256: 414D3543643C240C53BA1136BF67AF18A60D8A0BDA30666A28FE91EF3A2087F1 | sha512: 2207A14E6354F338255EB1FE8CB984F611F0B504828DE8E717625159D8325E9FE6801A7F261652BA3C4BBFB37260A5E39C743EB9372848523B05F6151D7410F3
bin\System.Net.WebSockets.dll
md5: 16F52DA511517E74AF9330F01E47B073 | sha1: 440975947DF0294B46C38D9532D79DCB42712BBF | sha256: 34EC1965324937511E865247D340E7DE27242BB6FE3C9D842161F91544CB50E7 | sha512: F02F19102A2AD76DBAEA0ACCFC9062C44885BFF1CFA001AE467ACD8B75006BE19A3A4BEE03CE00507359634AA68AADB35DFE908070B3B613220D073E05DB4950
bin\System.Net.WebSockets.Client.dll
md5: F1FA5A4D5DDFDAE793FCF7F4B57FC9FF | sha1: 5361A77B155F380357EF56DD7FDD69F6A3EE63AF | sha256: 12ED8BEFE7E4957890AF80D96F79F2ED07677E5F05AB776D41FF93FD964B62D4 | sha512: ABE426BED52C69ACB3D3FC7C6B142E739AD332A67AE0EE8108A1CD857A6946039B1C46AD58F45C9B0378F75B48DCA1FE08B79948AE1F6E60BF0C88B81D3F18CF
bin\System.Net.WebProxy.dll
md5: BC37310749538B5C27BFC3E267813820 | sha1: 5E1CCD0B8D095942B7409A83E65078C764411503 | sha256: 0031D4CAB7B3A9ED232550FDC77043D8EB6B8FDEC48B99C9FED1840E97076837 | sha512: D32F361EBE65DBD190FAB52ED92B1EAF759CC44EC114D0DF47B5DB92FD35F9A8BC9157FEFB6BDEB9F7B7BD4BE44E453777B849939B715B3F39300EAD19C1555A
bin\System.Reflection.Extensions.dll
md5: 9C79CB8160B9E21D2AC8DC0D9C736BAB | sha1: 4F3B8921978C89D3EA29ECEE57FF5EE2B08BDA41 | sha256: F2C3BF570F2DDA995189CEF5D57234DFF9F8549894674FAD9915D51F0C5D0259 | sha512: 5ED5389AFC660F13B219122E038A87481A53C65EC1F0BD067295F18E397FA894656CB59A4788E54B2A9D06DAA23A4C1EBCDC6670DFB3FA59EB773A815E9DCC70
bin\System.Reflection.Metadata.dll
bin\System.Reflection.Primitives.dll
md5: 17E3DBDA3161313212307DDC350C774E | sha1: DA406F89E98C65B86B36E7B2B794FC3B62C2E321 | sha256: 6DA93DA56D7B0ADB1411CA45CC7BD9699BFC50BF1F20960A79DFCD96D8CD4C7A | sha512: 0181123FC79B7F39DA7310BAA4AFCFE9CAA7832834C79CD97F7C289DDAE802EE98089A9EFC343BCCD272DFAC6EEF0CFDD30C60D4C78DEB6C10330E5AE3EE8566
bin\System.Reflection.TypeExtensions.dll
md5: 5E8C2075A75A6F0B58A80EC4809EC327 | sha1: F4BDB8A5558DC9FC8F59D37E2952CF06A6EB87BB | sha256: 1867FA0640BD91BF8F6C18D6B9D5CEB1AEEDBFE4CB52056D700CE46F0F6855C6 | sha512: C8CF9FD0C36808EE16323F972ABAD99BA6725BE34F960802EA883DB958537AA09DA6812FE6B0EFBC7BF5FB8AC1D853D87EAA0CB87363C69A0F5A504566EFB084
bin\System.Resources.Reader.dll
md5: BE17E63970947DA7243787DE77C55C56 | sha1: C63FE5B73B8D9EADE906D9C77C0EB5DA3DCECED0 | sha256: 6B4F7AF765A7D223CE920D30E18FAB5A11A3277502F368E9F5160EAA6944B9DC | sha512: 2CF77118C810FB8FD3DCD045E5476E7030868E8E04FF28439DDABE82EB32DD621BFFA433A441AD421F4049914D75C73E4C79A588F4EC2E2F736E442B4D2A185E
bin\System.Resources.ResourceManager.dll
md5: C3A34E13D55BFFE0EDE62C4EC6C1C80B | sha1: A998E9E6AD6349760595283C6C41DDE07226B5B5 | sha256: 9677F7DF1E803D39752C9D285ED7F5F924613EFEB781D7042DA433E6506ECC29 | sha512: B0A63F0BD575F9CE1A27E3F3EF1D3911D338D95E9812C1AD6476448F852EB9199CF232C60B166DC06F3DE245C8F7CA67731CEBFC978FB88C3C127CF057A9197E
bin\System.Runtime.dll
md5: D73FB1A9B07AB5DFE9B5C5DFEB316A2B | sha1: 65A79EDEAB290385E5F0FDB9B34BFF16B270C59D | sha256: A0D53A119830D3B9F8158592F87E66BD39712B7203F409CB3E86F965587EE9CC | sha512: 88ADF6A6E8C5447BD69ACBE89073D76F75E30255D846E4CCE92EB71B30A137DD6C8FCE213FF89953D6B488287BB215921CACB044DB94A7EF2361F9288B15F559
bin\System.Runtime.Extensions.dll
md5: 3FDAAEA042C90021D9D561824C3E8206 | sha1: 44B9DF060168B8AC38EDD731F1EA957FD5256A8E | sha256: 10D1F32572338AFA6F7CAECB4EB17F20D22B69A1FA6490D7AD25AB8769413E94 | sha512: BFC306CE440AB9EC1B935096A1549564B066BC37C5B946C10B50445D08370A41AC6F3D5D0F85E2923682C893E6EC438779C9A7DDF4CA9332240E858460A8AAD0
bin\System.Runtime.Handles.dll
md5: 30F2460EF3EF9E28EF35AB9C0E0A76A1 | sha1: DE376F69481A296B0C15888EEA45EB928A3CBDFA | sha256: D3E7603E968C201895F81E3941D490D318E6935946090C294CEE85E2B70D1157 | sha512: DD6B9C335A4297A004149B90A2DA700C89B2A6E459306D977A81EA02D10DB952C078E71A646BFFDD0A053F60DD9E7763E36CE59C146FF87187B12BB01F0B5EEF
bin\System.Runtime.InteropServices.dll
md5: 1DF254F3DFA8DB7A0E6635060F1C0ACD | sha1: 1F94239F3654D2E7C4B2FEF785F5D3A8984E871F | sha256: 6AE16DC945A3B957C0BADD41082028AFD1D1761A2E1678AC1DCECAE5961C26DC | sha512: 522802991314C8F016BC1F4C1FBD71AE2374C5B74BD1FDB433F75167A72243D3458FABC388D9185481F3730DF1B5915A98B8ED3BE45817F5FACB8DEFB4F5AF74
bin\System.Runtime.InteropServices.RuntimeInformation.dll
md5: EA3236E62246591624C209421658BC64 | sha1: F495A93B74A8CD8A90FA9A64B9C316F67210AE8D | sha256: A9EE0385F005B3FC2895892BDA2C6A9E8DB57DD9F2931D35E2573B0E2F7618B1 | sha512: 0BC98EEE96D1F2CA05F5765C5C59F63A932F696C0174225C401E87FA14C24895B74D527DD1F50B1C11B7A86E277FAF075D60EFE32A87505C335A3EB82B907186
bin\System.Runtime.InteropServices.WindowsRuntime.dll
md5: 27CD837A05BC38824469820396A14272 | sha1: 007ACD4913128E1FCDA9AFACA54FEF2FFC6CC337 | sha256: A5399A92D958085817F7E7A7CBFB86CD90A71949D80F46EA47EBCB49BA9FD3B6 | sha512: 6CFB05685D7D72558898BF119E0AE68E4AF8568E17B330165842F420DFB89FF2759A884BE1ED085A05AE5A100961EC32FF584C35F181AB0D3D0C2E0352B4EDC9
bin\System.Runtime.Loader.dll
md5: A84CFDA20B443703FDBD20D468C46934 | sha1: 57CC091A30A1A23BACBEA51A9A594D6F617C5856 | sha256: BB2BCFBE3F9F5BA8A0EEB503783CD0AF33ABD573AAB17EAB9E9948D3D8E77D59 | sha512: BD4803AA0BAE00B0B01B73D593B030D4C52FB5785AE581D48929C4905292B9F6BFE888C9058A703DBA285785B19CB61F505A05C46D5DD8854AF56FE397D6BFBB
bin\System.Runtime.Numerics.dll
md5: 6E5F4BADC20D5CEE6EA0A52CFC767F56 | sha1: 6A3EF408AF2796192A324C35E06DADD57A84F634 | sha256: 1DACF7761B6D94B6330239738991ADA0E9469B957D1690D01CB380C7BFA4A258 | sha512: CDF6267160F83F7C31827370BBD7F6A685677AFBE5DE320CE28B3D5E227CD1DCB85215895AA4B070305F8162A1CC73D271BA5DB4F7795A706DA529CABD5977EE
bin\System.Runtime.Serialization.dll
md5: 22BCEFC399E7527A5951C4BB52A755A3 | sha1: 340BFA36C2F4D9647EA7EC2FB815D6373CA52E3C | sha256: 68C7F838D513F7BE72E10C2340C499096A269E80BD4AF19D95E478AE2D12D719 | sha512: 571F626FE64BC59F6B1146DF47211E2997D2190564519E97FAD221A94F8B0BDFE348A19ECC89B9E92B147170E9F95E7ADD9884C4E9FC7DADD80247F546E75399
bin\System.Runtime.Serialization.Formatters.dll
md5: 483B5C1F0AE5300E7B039DC5EEB2B972 | sha1: B65D73A6BBA52400E09BDB863B7896A82E034903 | sha256: 6C0F6CD2A231939F14FBFA10BD503ADCB1334412961B6B7566459C59D54A5427 | sha512: 8CEA3040D132D8C2A350EBFF1F47170AFE3C82DF9E913A6C5775E8E1522D6C14C1B784FCFD99FAFC4644F822873AE38ED0EBBCAE81775590FB1A69520AFA58A9
bin\System.Runtime.Serialization.Json.dll
md5: F59DD23668FF5ABEF4405DB93EB51419 | sha1: F19A3A9EBEB69030829A43DE08ADDD945C5181BD | sha256: 3848722D3D44994F79B6182A9E3AD4BC34B7DFA95A334B881B9D05DFE4D60CFE | sha512: 45CD6EA3D7F7019D35BCD9B7F6C41321D5515C0125850C7964D7682044D0C723E8372ABB9E3CA9C2A637E983A9C3305EBD0938B8C95E3669B819DA8D06551078
bin\System.Runtime.Serialization.Primitives.dll
md5: 1756FDA4FD91A678C76CC31A06C1783A | sha1: ECB3FC7999DFDC63BE3AA481B621162B84913393 | sha256: 0118DA1D0E3C9A411A7EFDE3766BB9030170F5AF14204AC479E78FA325378D1F | sha512: 1543C35AA6B29666BAA88133FF45D029C7034CCF2C23A68B91259854E194317E15CD9693EDAA6DAFDC47897B52C9B2E21A950EE2AF64106053A9D2E05B03C630
bin\System.Runtime.Serialization.Xml.dll
md5: D7AE427DCCB90A507F311A0E576B3ADA | sha1: 9534D63AF7F9BE61CE9196C18F24B9FB0F150595 | sha256: 8BEA81237B08F80AB18D8DB2CC6F6CBF2825781F751D36533141997A3859423F | sha512: 5377127E2FAA5E0EDDC410D8B90FB4E7AE80FEF68BA1447A743D5F8B09457FAA8111E8F1907107F7F10376EB797398B66F60AD5E32937460A5C45EE396C35E59
bin\System.Security.AccessControl.dll
md5: A3485FAC1D2F11FEDA45294BA7AD2A5C | sha1: AD427E7D38C7C583D7F0AFC59B3C74DE1438DF76 | sha256: 817885E91D60D51F85F07E3696B29A47684E629EFEF9D8794CD2E05BA364E9D9 | sha512: 031FBD05D987517970EFB4FC9E71BF5CD6C7CBFC8E9F1C6855489EB699A0E6D91FDB47888423004F4E7E4472A2C44813862AFE8E9C6855840C688FE1DE0B5940
bin\System.Security.Claims.dll
md5: 73CA00E39C1D5540BC871EFD5B9E4BEE | sha1: B78D11249B825256E3A9A2E7AEA4010DBBF5F2B7 | sha256: B405F9862CB9D47C24C4AA13A2F4833A9D954D08C8649AA8FDA7E3648C2B0967 | sha512: 03AC07FB35DF6B6DAC0C1870E47DDBED041249CAE97870C660D3C5257E771A27A7FEA46CC13FE88C4B3C6FC326E07B51BDEF8E4A2719C823EC47711716B24EFC
bin\System.Security.Cryptography.Algorithms.dll
md5: AF3E51E7F3807EBF8DCB51B87008AA34 | sha1: 841AD5E16F58A58531D28A2636196E9C60370329 | sha256: 2400F1B94B4345A70FF6EB1832834B1EAF6236ACB9F4982B0877D4CE7D4EE4C8 | sha512: DADEE7433EC28BE029032178FD119E411972BBD04E252E58D3169BB2EB34DC723B0CC4AB9AE96C3A5599EB4EFDA6E5D538C8FB09F53CBF49788C78B90399FB34
bin\System.Security.Cryptography.Cng.dll
md5: A1803442DA954A69258EC35472E25EF3 | sha1: C537081A613685BD5A80BB2DD551EAE532C108C6 | sha256: A3150E1D43C66B8BBA5531AC7C1AE03E50F7FFD1BE38299A095E814F33FB8896 | sha512: D82F717AE4C5BD136C2CFC0E8FCD0C6343070A6E5FF15D1B327F0BFDFA1E06454E0CE5316FBC23E3A1F635F5329FB88E3EA760F012D9A3ABB7168EB531A744F7
bin\System.Security.Cryptography.Csp.dll
md5: 5310E39B8D582F2D5B5AB667537B1A88 | sha1: 57B7260BFE18E7A19C8CE7924B940412F395C90B | sha256: 521B3F7CB5E3C3AFD6570E85DBFCB92A63E240E377A3BF8B78409CF7222A2AFE | sha512: 1BE208A210D4D79B08013CF7635309A17377A3F2079243E13914F836184BE20E2BCB197C930A4D1BA2664371B642D0B48CD0274F66F4103C3CEE448FD68BAF3E
bin\System.Security.Cryptography.Encoding.dll
md5: 311FDB17E810CEDC9D797DE3DF1581F9 | sha1: 8355859137E7F560D82BE60EB1F64F4225D6872B | sha256: 42087B9979D56D20711671851D4C573C4E87D7623D2C8C2BEB69575AFC2389CF | sha512: 05AECCFAB453580E3B319D4CD65627DB39ED59FA2537CEF64163FBC762ACF7728569405D8EFDD9082FA3839272AE8DF7C5F7FBEFB7CAEE26C6C6058554FF98B2
bin\System.Resources.Writer.dll
md5: 2DAC8DD04F3D40BFFAE69A201B0D74DE | sha1: 8BDAB0A1882BDAEA7C74F3DEB88FECF1C397906F | sha256: 7430ACA341A0F66176C6AA8D76130A75D51171CBDA8A1AF93D199F9FCFBC55F8 | sha512: 3EAF9DA14B3513AD33721B17FDA5CE089643A43FD10EF90FCF82391114C5F85FE031FF4B6AE59A2F0E597D91594248D1D2ABA437BA4C77BE5D66C38206C700EE
bin\System.Runtime.CompilerServices.Unsafe.dll
md5: 984670E1A811372E62FEFCEBE0812108 | sha1: 746F1F461A8A629A8FB7C9544F2D49E9FAA38C96 | sha256: 82ED567F7DB6C8A4EC82E19FF9DB1D5646E845956BA24117D96346BC231624C7 | sha512: 6D88146793A042F432CDDA3CDB8B81A5CBE903DA67F98059A4EA5599AA4337C277787EEB847A0E54DAD9CA58602170623444446431AEE277A849FC3829B2EB6C
bin\System.Runtime.CompilerServices.VisualC.dll
md5: 9DC28B5EF8FDE710DFFEEC769835BD19 | sha1: B73AD2B919576A5189F02080F79C835C9EBE626B | sha256: 60FD9B64D8820D0CFAB88C8117DEC7A5C114B2D927FB779AE9DCA640F046229E | sha512: 416EC8873563F6DB7A808C319D4C2F9B7396DDCA3E13FB92A64502B6F88861323C13697E49A20645459BCE400B6A002C9AF1541FBDABBD5AE2DF28AD8995AD26
bin\System.Security.Cryptography.X509Certificates.dll
md5: D421C9C09A7C664A657E9442E2401E85 | sha1: 0656CACA159A9D51E99817EA20F39D3A3E1B8586 | sha256: B2DE76DA78599BB165D8A805E60AC223FF0AA9E84AF9F50A62C393E4AE6FA2A7 | sha512: 33D8B27691E6A017D1EFE3346F0BBDD5F98211F66365FB171EEBD23352ADC7E3E2CD07A185FDCAFFDA3F7A2A1C3A3F0D501EED8C517A3FA71E776C67A1178D54
bin\System.Security.dll
md5: 3907300F03E6BDB201AE85531DD04643 | sha1: 956207783D7482BF5BBA1D2D972D5E8E935B2295 | sha256: 6071A4BE74AC536D53F642FC731182F050811B2EC1781190C18D1A94DFFFDC8F | sha512: 0B19AA27A928635026988CC83ACD5B57F0D6445B0B3A58712EA6288A0B83D73763F4503322CA573FAA33F033C82B2E384BD447831D538FC89754FB55A216B03C
bin\System.Security.Principal.dll
md5: 3AD2F4F8A3A5E211AAD01C825C67FFAC | sha1: F499492653853FB551DD9DC4C67D31D610339B51 | sha256: EF6C8BE22570F289065BACCDBF92C992387C0DF1C26891A612896EC3481F27B4 | sha512: B84C1E180AE48474F1D206DD75AD68C8D84AC066EF11394DC04EE27B76C11C1AC845BBF563865D4FAF418A63C6C63F4B5D03B9DF0C0CB00360898F75AC53BB60
bin\System.Security.Principal.Windows.dll
md5: E41CC10080ABD416F89C192DE4073184 | sha1: 76634336640240A6911529898834FF021CBEFF2A | sha256: DA848633AB6123874ED6DF45BD420DB798B7820BB61CD5D2ACF06B4017F274FC | sha512: 53CE059B329A11C78825A9210C37128FE3218FF5B26828451A9AF28C080EE374C1CCBA3E00C0DCCD192C765F53AA45D57C5CD0E87B3EE50469D56F75ACDF8B7A
bin\System.Security.SecureString.dll
md5: 9809322BAD2FA7A798832C14B5C2EC27 | sha1: 042875A6E0A34522651A4149203FDD1A1D73345D | sha256: FC342A61DC881D9E52FE515514D14A8383F607CDA267B0361FBCCFF6161597F0 | sha512: B50FE1B76000CD55FF485AA325B1376A5FA81B1CD341FE0896D7A64C65C3319D1A2055DC3268D16492FAA71D4F4EA2E99C8E12B68DBD7E814E19CC693448E1EF
bin\System.ServiceModel.Web.dll
md5: 896C4E46262F0388236A8D32628BAAE3 | sha1: B0C38CC50155072BC37BF4318C692EEC2BADFDC3 | sha256: 84FE308C06B7CD8EBF7309115D8E54EF20B949CE2E8F1DC289A028CA6C396A07 | sha512: A5749E89360C98E8228B26C53600670F34D18B074994589E19F786BC84C517FBC45CC31DD20805254BD3A5F3995335BDCA046209C7FC22045988EB0806E081D5
bin\System.ServiceProcess.dll
md5: CD4F65A473E7C91A8EC0321E8797EAFE | sha1: B7AA47EB137BC7AC0C77CD73B3CEDA9F4D97EB50 | sha256: 1D828451F5B36FF23DF16976279F28E148B00490CCCADE6B2F39E2BED7997109 | sha512: C39F6F5ED3282231450A5D31C3ED8A4FFFAFA6D6D39DEA23BFC270345C7E4F0463CC4E05CD92272F35029D3E9D06D75628AF97F0F89274B5A44A39C3A3404F7C
bin\System.Text.Encoding.dll
md5: 198F69D1B76FC2FFF4D4684F8758EFA2 | sha1: 8BCC4D992A57689A1F419249E0447098FD7A30B8 | sha256: EAA22C6EAA4E2FE539405A4AE11DABC2F29B5C74C89F32E7AEEE5D966056A9EE | sha512: 5F5BA581A86F2FB1BC82071A88F24957E093FF359FEB6C78308FB3ACFB5944DE7F2438C710625B2767C883D05DD12EE7FAC2F1A9589EF8BDBF7400C7C61D29DA
bin\System.Security.Cryptography.OpenSsl.dll
md5: C71DAB9096DF8B592820343E30BCB485 | sha1: 90010A3A3383158D07E3A368E7767E2BF1F277F5 | sha256: 39F924AF513B83B7BFE6C72FF6D15826C78953E8A1E29EEFAE5FE1C703E4238D | sha512: 5166385407D63278F17365BD519E738E2162E069E900DB18AD07B99DCCFD543BA54F08A78CCD6893495DDE4244F569E9F703280587E84F8B5BF2E526269372A8
bin\System.Security.Cryptography.Primitives.dll
md5: FE9FA413FCA8FEA9C34F24030CB2ABF0 | sha1: D4E5BA1ACE340326751269CA097E945679983852 | sha256: B2EE56D4834F00DB908B0FD21D6BC789A3B88CA37D0A7EB31AB0469BFD1B8A6A | sha512: 5DDE2C5CD4D3DC54E05513464F6ACF622CF7B6DE2012E33DE6017198CECF83B7177BD273FFF0C3121A9C82CFD04B8E3855D6B5A66990992145B1ED5F5DE1BF2E
bin\System.Security.Cryptography.ProtectedData.dll
md5: 95C0E2CF7481A0213A490998F3A956A0 | sha1: B804F6AF460137FF1C50FF5CB4113CF7B1717A74 | sha256: 7F2B633EED63BF20D558A25ED9686D2F1EF6C6E3FEF5C0B19C2C1258D90ACABD | sha512: 0B42381FCC18B0938448CD232F0D2F17639B6BE25A0590A403EF64C66B381B2F21FED36655C1D41B976B21EE5677F1397C12287F08776CC0636B1759D32041ED
bin\System.Web.dll
md5: 920A9A2979BACFD7F360F4DF5CDBB07F | sha1: C5EA048ACE961E0C44AD549F69BE337849FFCD77 | sha256: C07AD9376ED0937A00A71148AE7582768222A6E92525CD536DC183C5BE7AD694 | sha512: DE6BD56BFDF268CA5C93614FC41666A9424F8B3602440464A7E52B8FAA992925A834A0552E6AEB749480664C4AA5E136A7B083A186514896D8131F6311B7A6CC
bin\System.Xml.XPath.XDocument.dll
md5: 9365A01CF84B19A4B8FB411D261F7B58 | sha1: 003714D07D09B6569157FCAE86374CDB4BD58C59 | sha256: 1D67FAD272C0B6EBEC5889C722404B51B077862787CD8805C58710EBEDC4D568 | sha512: D6871844E40DB7E50E8BD5A6A61D8EBEEE44F8F9D0DCE11B02935A9D1241E8E62F2AA6468ABD66619224BA65EE243F9BB2E4B3FA3FC264E37B8CFEB6408DB29A
bin\tr\FSharp.Core.resources.dll
md5: 3AB32C1010D446987D74AA1D6CB51C35 | sha1: 0B68AC0542B830F2F6BED5ECD3F594D750C2652F | sha256: 3B8175F2CE490C4629CD1A5F29AEFC828648A140CB83F378C145DF01BADFBED5 | sha512: 9B457176A72C11D24E46F3DBB7CBC2A39C91B08C81DCDC1F087514913BC5D623E9031F8499E9E65CFA714788865D916CB5EC2326C98D06C009A3F447075EFBA2
bin\ucrtbase.dll
md5: 6343FF7874BA03F78BB0DFE20B45F817 | sha1: 82221A9AC1C1B8006F3F5E8539E74E3308F10BCB | sha256: 6F8F05993B8A25CADF5E301E58194C4D23402E467229B12E40956E4F128588B3 | sha512: 63C3D3207577D4761103DAF3F9901DD0A0AE8A89694AD1128FD7E054627CDD930D1020049317C5A898411735E2F75E2103AE303E7E514B6387A3C8463A4FB994
bin\WindowsBase.dll
md5: 6F7A84B4D2DC338B6697C6B827470E69 | sha1: 31CF1BDF801C25A9FC3CCBD1E50A3F48C7163F4F | sha256: 2D7D800D8EE521E2BA51E520EDDF3855B9017ECBFA2FCBA84351ECDE5DA9D917 | sha512: 815F04AE396F5D7A21589B2B550E6D6E53DB8D1BDCA4C8D02184FEB67BADFA1AA17B584FAD0176B52C17200377B5A0F137995483E22B681015D2B9D49F34146D
bin\zh-Hans\FSharp.Core.resources.dll
md5: EA10EB7CDB4BFE8074E223D547477155 | sha1: 3F8C5EC3CF6072A9044D2E9D28ED9982C3986505 | sha256: 19FA430561F651283721AA9F1EAD450D17EFF4498E430A19AD5B1A9FA141E767 | sha512: 04310388B815492C925AD3DEA7240220527ACF8C8F852DEAA8A79AABA33EE8572591133B38A430DE5BE16B0F1BBD4A187CB1F15A713DA540C652E181FEA8D48C
bin\zh-Hant\FSharp.Core.resources.dll
md5: 52DE5333D83E0A3707D8F0A954B8E88A | sha1: 0EE65B440FB2B660C2311DD27CD2B297507B5D51 | sha256: 8DE343AB872708E1282597D32B8B5BB2904AF852EF9F94B9260BEAACB3FE2688 | sha512: 6868DA8F531357179371DB521791A07948BC7B16848D0DE7B75FD46990D5D6E17841CD39C653D3655A92C7C2F5EE37F8303E040FF4422FC44E2A015745B994DD
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.
bin\System.Web.HttpUtility.dll
md5: CCC441837E98DC594D1FDEADEE38B754 | sha1: F5C4D1F163B434D5CC34ED58A5165262B82B9614 | sha256: 492D04B886EECF19B4DB0A5B3F803DA07FE0A855DE09FDA5760D975A0666F023 | sha512: A5D16C1A2FD47044D010B88C19A8B07DF3D4A6C52D0660E0CF9982BF5E65F97CB6EDB557A67F4CC5BAA37EACA21E82A6E034C97F3D8A01C8C24A337B0EEDCDB2
bin\System.Windows.dll
md5: 147F79E41CE7255B7B897AC853252751 | sha1: 100EE61D249EB8D93FA4CD3AE3164387ABFFAB13 | sha256: A838C3010E76777E4A35FE64C54FCDDAD5DBB42BBFD8B222F7BEAC048EB338A8 | sha512: DD2AC2F0A5950EE00970CB60B05BBD2355B13EAE8506D15698563BC6C4E617BA63349E4E010365808A761362A588D516E42C3774FB9D187D2BFA5AE066911AA8
bin\System.Xml.dll
md5: BBF69EC241FD29A38FA246F151A52F1C | sha1: 3623BD7EDF7B99D44552215B959FF85EB71CF5EE | sha256: 149D70F2D0A1DF269BDC6A7FA3F65F58FC83D82B7B123CF115057102067C3F4F | sha512: 7AC3A29B220091CD82AD6F31E4B26D826ECB620553F1EFD32EAF7A2E2F7C3B9C0B1107FA0049FFC1772AE3CC1F3521873503E0592E779006AF7F4F19FDEC899C
bin\System.Xml.Linq.dll
md5: DBFFEC64747619D652752D49677F58B0 | sha1: 04F38F2CACFCAC70180D0F53CEE318A3FB8D8B26 | sha256: 239B3B1FD698D10BFD7B4538BCE71CA26CEB9E1CA4670F660078F4487A15FD53 | sha512: FFFB5D9A1E0EF753D4BC7D965EFA0E3FE3C8DABEBBF0E3CADCA02C46181611A31A6E8F855E09F21FF56085A75C4495AE7C7F962185D20D716F48859800306371
bin\System.Xml.ReaderWriter.dll
md5: 89D4B005D2CC74104F5A2605519757BF | sha1: 1CB6968A4682D897932842F26AA5E0B608A361AB | sha256: BCA6DAE786572B3E1457840AF2DE14E4AA07E6F5515ABB3E74023E49E7268277 | sha512: 44198B0CA27ABDCC1724BE839DA5705E1E0127FCE711CF3B5C5EBCACCE36868CE270C258EFD1517179153385C4F17112141359AB1023DC3C3D377C813A75DEFD
bin\System.Xml.Serialization.dll
md5: 1C6FC174A8D206A9A3C8002BF0719B46 | sha1: 931DEA86FFD1FEF64D5C8023AF4C87503E48D823 | sha256: 742779F155C8BEB4A6FD1595B7343DCA611CDF52BB7F774DB69EAD235A41241E | sha512: 5A739108DDB7D4D337B84A13A08A1A34D47880A32DB61E99DB3A852E2CF6EC7FF8B95A60526928077531A89344198006856FDC12C9861D77FD1BC5D293C195DB
bin\System.Xml.XDocument.dll
md5: 70C7DAC17735E02DFD50557EBAAB2EEC | sha1: 8F7F1DCCF40A6B3B485F5A5AC6847A87CFE23B35 | sha256: 90EB18BCB39F6434FA59C94DBEDF204E07C014516DD5726A52CA424A6C70C2F0 | sha512: CE32261B1F629B9235C785F42F3C1C146307F4B18708BB6C4C0AA9B6AAE7A3A214502C4ADE33CE6EB921340799F61EDBBB5B731D3DB9B2AF71557F1737034307
bin\System.Text.Encoding.Extensions.dll
md5: 35E34F1535CB8ED48FE8BCC03C36AF65 | sha1: 6A79C5658C183835128494EBCFB314830A0D9598 | sha256: C897B3D5D3C3CD56A9A2E3E374EA8BDF38C323281549783F71D209AD55E8638B | sha512: 42A18F7030A9F60CA1C760710BEE85F936788D31A8CD85D3A9EA932B1CFFD5091EA6938D73233345AF110E815E2E5A6E81E666AB9D9BA7A94CD3782B69B28E10
bin\System.Text.RegularExpressions.dll
md5: 93DF3AF5B02E40474AA761B5906ADDAA | sha1: 16F386AAC1E4748B00DDE3CAE1FF36BDEAB85407 | sha256: 1780B51C442B17A8040E4AC82585B89F7CA0BFBFC57E89443E1A1376D0899702 | sha512: BBDB1E4643A1E3B67D4C2D600F5D09AECF0C464125C80413431F248342A8B71EEE2506F9F8B0B8B9A9028AF72CC1B6A826AE3B2CE118E287ADE4B028B1944D64
bin\System.Threading.dll
md5: 9F8CD6DF339AA93DEC12F868FCC4EAD2 | sha1: 6565E5D98F6E91322A1C871AF65E113A8EFB3B41 | sha256: 2C6153F1C2621E1F7F95D22944708B1271325268155EBAEC5FA38EE6DF2117C7 | sha512: B9C2B57CE32516FB42E3970D461EA0E38DF65E675EF9D0D2C59F0AF8503C95C3EE3EA9344F0AAA92858F9480494B4E1791A36234429F96083150DCF4CF70AFA1
bin\System.Threading.Overlapped.dll
md5: 369478B61B0CF9DF72677ACC83E881BD | sha1: 57F9AFBB3833124C363C555347860DE9B1B0B89B | sha256: 3C4BFA018D3A45AB1D14E18EAC6ABEE9B5F807B0A5BF5C8AA94F65220D43CA5A | sha512: D7A6C7A7996FD047D571B3AB329BEB84790A5EA449E2284B8722197876094B7F78A9086A8D7E52DF8041C727A1C717D794F5FDF6058B1CB79F8794C9E8C2C4A4
bin\System.Threading.Tasks.Dataflow.dll
md5: A89367FFAFBA3709DE66307D319E3F08 | sha1: 80066F07C3FF7D7DDCA4B842A7A8828FBCF1EF6B | sha256: 62E1F3BB232395F6FA3A80DB3F121027318F017E0228F86BC44B288A8F6D19A8 | sha512: E0995755577938C01A9D53ED9BBC1C92A161DB254F475F9399593F64D5E3D450B9151C94D36F008A02220F37D1815E6C80D486B1D7021F63144AED4852CD7345
bin\System.Threading.Tasks.dll
md5: A0A8346283B9AD7BB656B946AB40A1DE | sha1: DED143FFCAC16144DE6A4D21182BB6C0036B32D2 | sha256: A5991DFAEBD7403FC1CAC88F24ACBA1188B49394652430DCAF0D3A4E62D74D2C | sha512: 2762EBCD5D3AF0611712FF547EB244ED4A7CE5F493AACCF2A47CE57F3C1F6D24BF84B68B7FFD1CAE09C05722C52BE297DBDC0A8023193EA8CB9CA0A474AE5F79
bin\System.Threading.Tasks.Extensions.dll
md5: 54E08227037E224DFA8DED9830418418 | sha1: A98CA78D7F065BF41E22E9D312132A75754B6F84 | sha256: E5C2B1B21A4B92CF5792422C6349B938EA18ADA23F4C016F542812E195278BF8 | sha512: 7390A0556942118E10BD1BF824509011A477864591523ED196ACCEE4413EF6DA1B3B9DF489957E35F5ACBBD771F0F8B1764061115F5F53FDEFFF54BB2D1BD2B1
bin\System.Threading.Tasks.Parallel.dll
md5: C5F16863A61A771B1A3326B8AA46692D | sha1: E03B090F256A8DF38C7DC7ACD69CE8E35C1FCFD9 | sha256: 0484E5B7BA0C5BBD4BBF8FE88278670E220FBF2E06E161DAE381E091CFB4A094 | sha512: 46424CFE8727BA448F3D89745EF76B843052BE45F0D9133B88741BF9156AAEBCD39C706BAE989E97C3909BE7C1B780BCF7B8BC03BEFEA3568987F7C1933D6EC9
bin\System.Threading.Thread.dll
md5: A165D383FF3767F875E0CA2C00214EFC | sha1: BC9B1CCE68CE257F229E0DF1E2741E6443970550 | sha256: F481808D1879D796164CD9C665B9B3DC782F07349B02C12700600B0BB5E4C626 | sha512: 31A3419F11B3591D6DF5846097917FFFFF1DF9F380D4B8F5F1609F9A352F53DD5267A9DEAF37E8A538D257D628AB636CB44309C246B024144AAFAB34F489D118
bin\System.Threading.ThreadPool.dll
md5: 7B6073681CA5C398BC39916D7F073EA0 | sha1: B143D8C3712C52A7895FAAE4C91618DAEA9A3004 | sha256: DAB2ED9430021B3E53D043E660F01E7FD6CCCCE209634DF1FB66101E5BCFAD8D | sha512: 3286E1D3F71C3175C1DDF964CC56860DD0BC15DEDE17BEFB5C845C3CA537D0930E70670EA2C608A9DDB21787414AA2A5FD0F18938C35E8C1F7F21D26B6370F07
bin\System.Threading.Timer.dll
md5: 93D63A1D722D4B50BDEC4DFE7345E852 | sha1: CBA351F3778124649F2484F10977B605B81F4DFE | sha256: 358CFB6F2BE7E9FBF7949A9A2EE6CC55B4150596B49CA4124314112B73E72234 | sha512: 287923F3D04B1765DD734E03918D8ACD6BD3C4DED76275D07D8C4586AFF95E07A2A38BB13F99AEC4FBA34B2A8FE38B069EF7805B13B795B69F7FA157BF81829F
bin\System.Xml.XmlDocument.dll
md5: 71A5D3F8A1312A8960131A26282C53A3 | sha1: 5B2500EF5F1D0BAEE6EAB25123AB2929ED3C3154 | sha256: 6FBCC729B4019C908ACFC075F7B7B45196E3036A7FE8EF68773729AC60B21062 | sha512: 024E5A812B8A640DD1B03991F3AB88582F8795382E3D285BD39C048D842F52D0571B19B5BA636BA670FCE6579DC44D7A9482093C989B4F10C9FD1E9E5296EA34
bin\System.Xml.XmlSerializer.dll
md5: 1F647D06D012DA0A102EF453231D3CBB | sha1: F5D48FA760BBB5DADEA547F8D21CB5C3AC55AC04 | sha256: B3472DD2EAC34F73BAD8F0F4892D0433D655024F1897EE5E6239648E2C6CB67E | sha512: 30878D926B95F55D4CE6A8C28502C4B5B91784C57356299772F4E78758C9F8D148F28DAA767BF44408BAD487D61AB63835E618BC6EE2768DF1AE66CB249BA6A2
bin\System.Xml.XPath.dll
md5: CD7E8D5A86D233C920407774D710C1F2 | sha1: 1A030BFDB2EFED1B044277AB2E4B4B31A44BADD9 | sha256: 5B40AF81E056E6847705E48B05B9D7ADD74FC7198C48C12477C25DFDCED811A7 | sha512: 6F43EEBF63F107B81D79E5659B5D9A874BDB64DE6D38A8AC7DC682F0073663A6D517EDA354AA5E1FB219B3708EBF426682C3C9D866CE0AB4BB68A75C16DA030E
bin\System.Transactions.dll
md5: C31F24101BEC2A8166CDD306350AB80B | sha1: EBED6A7653D2A1B08008B38701A99707A98D6691 | sha256: C6CE7A383A62E36D78308620112723989A55B2D1CCC9A8495257994DBF835765 | sha512: DE68D8140AF3A3FE4F9D47EDDB1C2516844BE6D2A7FF01EB833FA019E24EA823098847A89987B2C1C2B46C1F77D6888297861CDB392D227D640D2999E6B7FEF3
bin\System.Transactions.Local.dll
md5: 6184564B0A093F878952756BA437FF32 | sha1: 961CA378A00B5886303AC4E8682D0B9643544EA7 | sha256: 4AF84231BDF93F2D4715E6B9CAD5907459E9CA060325CCFEA990FAF5EDF1EEF4 | sha512: 03BCE50F5305210C47757DA8F35A1F8986E3BA1A0744244C3FF3D326BE1AF142225CD88B7BD66C9B6199F80A2FB5C4006061BB9B8096F3ABDC5A46C231CA362D
bin\System.ValueTuple.dll
md5: 70464366FA49978A1E17925E2F7DEE3F | sha1: AD3FF41AB2A414D12CCBBCD7585CC3B4E4CFD086 | sha256: D891499BE1E30D36AEE207CAAF113E1DFACF1403F00C46F7185C5A00308578D9 | sha512: 2CCC65ACB5BE348C27EA96FB82114538856D3FC04E6F462FF810BC3AFCEE9991C187F5D70FD82C3C4C8E9F1CFCBF5301353A6F4A9AF4733A92D04C8ED26E309E

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 362 Saturday, September 23, 2017 Exempted
FAKE - F# Make 5.0.0-alpha015 630 Sunday, August 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha014 473 Friday, July 28, 2017 Exempted
FAKE - F# Make 5.0.0-alpha013 438 Wednesday, July 26, 2017 Exempted
FAKE - F# Make 5.0.0-alpha012 403 Tuesday, July 25, 2017 Exempted
FAKE - F# Make 5.0.0-alpha011 413 Monday, July 24, 2017 Exempted
FAKE - F# Make 5.0.0-alpha010 563 Monday, June 12, 2017 Exempted
FAKE - F# Make 5.0.0-alpha009 529 Saturday, May 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha004 621 Saturday, April 22, 2017 Exempted
FAKE - F# Make 5.0.0-alpha003 492 Friday, April 21, 2017 Exempted

This package has no dependencies.

Discussion for the FAKE - F# Make Package

Ground Rules:

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