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

Downloads of v 5.20.0-alpha-1584:

209

Last Update:

05 May 2020

Package Maintainer(s):

Software Author(s):

  • fsprojects

Tags:

fake make dotnet csharp fsharp foss cross-platform automation scripting

FAKE - F# Make

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

  • 1
  • 2
  • 3

5.20.0-alpha-1584 | Updated: 05 May 2020

Downloads:

57,719

Downloads of v 5.20.0-alpha-1584:

209

Software Author(s):

  • fsprojects

FAKE - F# Make 5.20.0-alpha-1584

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.20.0-alpha-1584'" --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.20.0-alpha-1584'" --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.20.0-alpha-1584'
    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.20.0-alpha-1584'
  options  '--prerelease'
end

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


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

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


package { 'fake':
  ensure          => '5.20.0-alpha-1584',
  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 05 May 2020.

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: EE5D6BA879E7D3B459B3AE53289B5718 | sha1: 3EBEDB72AE10F663E8D8367DA2474FBE2D8FB56A | sha256: 3D6B8F0DBD2DD0F4C7819FE8A4384B0DF8856B2FB1C09DBC943D8DD0A2C88C46 | sha512: 3D60D0823271FE383F2490479CA63AE09B1A41D747903A4D7D61D5F3C8763CD28332E37B498303E0080B1BEBC59ACCDBC89FB43F0059E9906FE864C29990CF44
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: 6EE402A9DAEF1024A997C80657AAE9CE | sha1: 5B6AF0AC29997ADF5781D97AA31E3FAEB620E1AB | sha256: A1AFFDACBEA0F6BA6DA1E9F5CE4832EFD9F1EE345D2513078E4C9D7AAA8C0DAC | sha512: BB852B52C264D2D79D1714EF514212E26FD41E94B67C8A12965FA15E868CC39C6122E5B409D967A6B731A6321D693EC4C8833B9CC8F3C706F8D11AF1D318905B
bin\clretwrc.dll
md5: F2D4B784B2136611B29993B6E8963CB6 | sha1: 53B592CF13183D9949157BD0BEBEF384673C5E96 | sha256: 2CD391E7818F600BABC0B3F3CB7D321E2FEA5C80B4FFC5B6056CC0C454B22AA3 | sha512: 2C0279A6261F8677699CE2E632F2ED76F91131F72A819261311B007403EED475EC26844432697EEA9B0335B5705D1BA79273FE9C33EA36588C524E51AAF101F1
bin\clrjit.dll
md5: 17D7A53935372C22BB324D21CA7B88F5 | sha1: 7B134E280D9F05DA930A9D508EB24E22D9DB4BC2 | sha256: A0A6B010AE735270AAFCD2FB232AE9A3C6986683E85C0A63D962F8889DC1378C | sha512: C26756C18123843EB2A027BC17E79302D5668BECCB7122B5230E347E9ACA8CD43AEA1DF4A9327815D5832D5B2D18EE4E12604165C6E1B5C4FD1CAE192EF44E2F
bin\coreclr.dll
md5: 96DCF37F3294CA6BC380D204B3D09DB0 | sha1: DF5E54963B0CB4D0F772FD007453F247B67E485E | sha256: B1591697A8F7ED3EA653FF4F7FB37E6C9ADE8D3885AC9A5A71DAAE0EAA78312B | sha512: 80E57915B95BDD7279092E4F195BF9BC1C596AC3CF0909DC3E2326BB7156788E7664A9370B6D16D1547BD08A117B365A9E7918D9877CB6343DF896EF0F1A298C
bin\cs\FSharp.Core.resources.dll
md5: F92FC9277295E0502AA78E578D439287 | sha1: 25B91587E47E36A8E54DBFC7D38D30339434F385 | sha256: 67081ABF35934C87A00402A1804FE3E1D7644E6EB3C4537B2987B678B19FD4CC | sha512: 588A8302E48B5D4D253B77B1287A440C192A98CEB6BCC8D064BAF0E37536CACF5F20012EFF757580E2C77F5D037A025C5484F7E0F187B5020B75CFA11C7F8BE7
bin\dbgshim.dll
md5: 3FE2D5FE19A4378798DB1680290F630B | sha1: B3054EE2A578C998491D1C8B7B9E137C5AC6892E | sha256: 1BE8ACACB9B5F7CDF7E225E2D49C76115FA6E260955317512AE38EF5EF9BA361 | sha512: 880DE39DD2C3089850298CA3D9D7B0F3BA5F60CACCB548E71BB1E895B04C705BA81A7EF41ABC6429F696A63D7F2960675115EAE58A2DA03ADB570F1B207C09C1
bin\de\FSharp.Core.resources.dll
md5: 88C1ADBD39D40C9602C164082823F391 | sha1: 6B280FD94BE17466E683D12576541AA003B690A7 | sha256: CFFC1B71C73A21EA8BFE5B3D0F6DE7B08EED9A18A7CE7ECF95FE884747343395 | sha512: C773BAC0A64FB4FF420EFAB0983404C2473D86771158E2DB81CB9E0AABB72361198D1FEAFE8555086FEB9189F33CD6302C953D3722A182B6382BE98D932948EF
bin\es\FSharp.Core.resources.dll
md5: 8C870F4B806AF8FD344D3277D60C988F | sha1: 6D3D0607C0A333AA6837B49345C5A4CBC8744296 | sha256: 6DAD31531CA0A796333158A9895A581507767DC31D1290B8F5D0FFEC8A5E520F | sha512: 9786D6B5F26AD2DF4056A04AB5D886DC02FE8E3C15C25AD5390A0D27DE1679399706321EEB0C224322A9AB01834C262955C4C981CEBE3775795AF5911D9AA4A2
bin\Fake.Core.CommandLineParsing.dll
md5: 34D5802ED5A5FAB4ECDCF51DDF8A64B9 | sha1: ADCB011B5E0C28E2210912E79668F34002EBE943 | sha256: 81FA77F5EA1B97399BAC9C35D78DD039576B52E432E93B2031779D13C90F59C4 | sha512: 3DD11C7A7DACD6517B5DCEC670005DAB00E2FC53D162A9AF552D8288CDCF4B81FC6A67BC501B63D058D01B39BD09A5BE5AB2B3617F964BAE5D2830EAA99C76DC
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: D7D5E200ED829E50094FFA6840CF50C2 | sha1: 48C05ABFD236E216C3BCFDC9D7200120D6160318 | sha256: 7EB9122E2E95E6CF409851824C7754F8BB2F325508CF23C54274F6A62556FCB3 | sha512: D3BAF85F61E4331021323D464B6CC0D8F7B58AB04F13DFDC25E73DC9F132125429C31E441ED4B9A280E60FB2D3C67D6FAFC7E65260F979AB6E1C29DFB1B727B0
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.Core.DependencyManager.Paket.dll
md5: 83056DA99690A6F9BD8234E109FF826C | sha1: F6B114112BE922B56CF3B4D86FBAB5EC030A4624 | sha256: 58A9C04C53AEDD82EBE0ED745861CAD9A6F9B0F2193C7976AEA9732D54061A2F | sha512: DDD3F5E6CF7BECB57090ABD25644F61387E603C8BA99BBFD765509F8A4E8CE7A9A125BDA3D922F05A08428029CBBA1BC602CFED925FCA9ED5711B4E0E10BC939
bin\Fake.Core.DependencyManager.Paket.pdb
 
bin\Fake.Core.DependencyManager.Paket.xml
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>Fake.Core.DependencyManager.Paket</name></assembly>
<members>
<member name="F:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager.Key@">
<summary>
 Key that identifies the types of dependencies that this DependencyManager operates on
</summary>
</member>
<member name="F:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager.Name@">
<summary>
 Name of the dependency manager
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager.Name">
<summary>
 Name of the dependency manager
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager.Key">
<summary>
 Key that identifies the types of dependencies that this DependencyManager operates on
</summary>
</member>
<member name="M:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager.ResolveDependencies(System.String,System.Collections.Generic.IEnumerable{System.String},System.String)">
<summary>
 Resolve the dependencies, for the given set of arguments, go find the .dll references, scripts and additional include values.
</summary>
</member>
<member name="T:Fake.Core.DependencyManager.Paket.Internals.PaketDependencyManager">
<summary>
 the type _must_ take an optional output directory
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.Success">
<summary>
 Succeded?
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.StdOut">
<summary>
 The resolution output log
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.StdError">
<summary>
 The resolution error log (* process stderror *)
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.SourceFiles">
<summary>
 The source code file paths (will be treated as #load options)
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.Roots">
<summary>
 The roots to package directories (will be treated like #I options)
</summary>
</member>
<member name="P:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult.Resolutions">
<summary>
 The resolution paths (will be treated as #r options)
</summary>
</member>
<member name="T:Fake.Core.DependencyManager.Paket.Internals.ResolveDependenciesResult">
<summary>
 returned structure from the ResolveDependencies method call. 
</summary>
</member>
<member name="T:Fake.Core.DependencyManager.Paket.Internals.DependencyManagerAttribute">
<summary>
 A marker attribute to tell FCS that this assembly contains a Dependency Manager, or
 that a class with the attribute is a DependencyManager
</summary>
</member>
</members>
</doc>
bin\fake.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v2.1/win7-x86",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v2.1": {},
    ".NETCoreApp,Version=v2.1/win7-x86": {
      "fake/5.20.0-alpha.1584+vsts.27b3dff1a4cc77ea1cfb16d04f35fcd9fb2a381a": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Core": "4.7.1",
          "Fake.Core.CommandLineParsing": "5.20.0-alpha.1584",
          "Fake.Runtime": "5.20.0-alpha.1584",
          "Microsoft.NETCore.App": "2.1.17",
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETFramework.ReferenceAssemblies": "1.0.0",
          "Mono.Cecil": "0.11.2",
          "Newtonsoft.Json": "12.0.3",
          "Paket.Core": "5.245.1",
          "System.Buffers": "4.5.1",
          "System.Memory": "4.5.4",
          "System.Net.Http.WinHttpHandler": "4.7.0",
          "System.Security.Cryptography.ProtectedData": "4.7.0"
        },
        "runtime": {
          "fake.dll": {}
        }
      },
      "Chessie/0.6.0": {
        "dependencies": {
          "FSharp.Core": "4.7.1",
          "NETStandard.Library": "2.0.3"
        },
        "runtime": {
          "lib/netstandard1.6/Chessie.dll": {
            "assemblyVersion": "0.6.0.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "FParsec/1.1.1": {
        "dependencies": {
          "FSharp.Core": "4.7.1"
        },
        "runtime": {
          "lib/netstandard2.0/FParsec.dll": {
            "assemblyVersion": "1.1.1.0",
            "fileVersion": "1.1.1.0"
          },
          "lib/netstandard2.0/FParsecCS.dll": {
            "assemblyVersion": "1.1.1.0",
            "fileVersion": "1.1.1.0"
          }
        }
      },
      "FSharp.Compiler.Service/35.0.0": {
        "dependencies": {
          "FSharp.Core": "4.7.1",
          "System.Buffers": "4.5.1",
          "System.Collections.Immutable": "1.7.0",
          "System.Memory": "4.5.4",
          "System.Reflection.Emit": "4.7.0",
          "System.Reflection.Metadata": "1.8.0",
          "System.Reflection.TypeExtensions": "4.7.0",
          "System.Runtime.Loader": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/FSharp.Compiler.Service.dll": {
            "assemblyVersion": "35.0.0.0",
            "fileVersion": "35.0.0.0"
          }
        }
      },
      "FSharp.Core/4.7.1": {
        "runtime": {
          "lib/netstandard2.0/FSharp.Core.dll": {
            "assemblyVersion": "4.7.0.0",
            "fileVersion": "4.700.20.10408"
          }
        },
        "resources": {
          "lib/netstandard2.0/cs/FSharp.Core.resources.dll": {
            "locale": "cs"
          },
          "lib/netstandard2.0/de/FSharp.Core.resources.dll": {
            "locale": "de"
          },
          "lib/netstandard2.0/es/FSharp.Core.resources.dll": {
            "locale": "es"
          },
          "lib/netstandard2.0/fr/FSharp.Core.resources.dll": {
            "locale": "fr"
          },
          "lib/netstandard2.0/it/FSharp.Core.resources.dll": {
            "locale": "it"
          },
          "lib/netstandard2.0/ja/FSharp.Core.resources.dll": {
            "locale": "ja"
          },
          "lib/netstandard2.0/ko/FSharp.Core.resources.dll": {
            "locale": "ko"
          },
          "lib/netstandard2.0/pl/FSharp.Core.resources.dll": {
            "locale": "pl"
          },
          "lib/netstandard2.0/pt-BR/FSharp.Core.resources.dll": {
            "locale": "pt-BR"
          },
          "lib/netstandard2.0/ru/FSharp.Core.resources.dll": {
            "locale": "ru"
          },
          "lib/netstandard2.0/tr/FSharp.Core.resources.dll": {
            "locale": "tr"
          },
          "lib/netstandard2.0/zh-Hans/FSharp.Core.resources.dll": {
            "locale": "zh-Hans"
          },
          "lib/netstandard2.0/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.7.0",
          "System.Runtime.Extensions": "4.3.1",
          "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.17": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostPolicy": "2.1.17",
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "NETStandard.Library": "2.0.3",
          "runtime.win-x86.Microsoft.NETCore.App": "2.1.17"
        }
      },
      "Microsoft.NETCore.DotNetAppHost/2.1.17": {
        "dependencies": {
          "runtime.win-x86.Microsoft.NETCore.DotNetAppHost": "2.1.17"
        }
      },
      "Microsoft.NETCore.DotNetHostPolicy/2.1.17": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.1.17",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy": "2.1.17"
        }
      },
      "Microsoft.NETCore.DotNetHostResolver/2.1.17": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.1.17",
          "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver": "2.1.17"
        }
      },
      "Microsoft.NETCore.Platforms/3.1.0": {},
      "Microsoft.NETCore.Targets/3.1.0": {},
      "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {},
      "Mono.Cecil/0.11.2": {
        "runtime": {
          "lib/netstandard2.0/Mono.Cecil.Mdb.dll": {
            "assemblyVersion": "0.11.2.0",
            "fileVersion": "0.11.2.0"
          },
          "lib/netstandard2.0/Mono.Cecil.Pdb.dll": {
            "assemblyVersion": "0.11.2.0",
            "fileVersion": "0.11.2.0"
          },
          "lib/netstandard2.0/Mono.Cecil.Rocks.dll": {
            "assemblyVersion": "0.11.2.0",
            "fileVersion": "0.11.2.0"
          },
          "lib/netstandard2.0/Mono.Cecil.dll": {
            "assemblyVersion": "0.11.2.0",
            "fileVersion": "0.11.2.0"
          }
        }
      },
      "NETStandard.Library/2.0.3": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "Paket.Core/5.245.1": {
        "dependencies": {
          "Chessie": "0.6.0",
          "Mono.Cecil": "0.11.2",
          "Newtonsoft.Json": "12.0.3",
          "System.Net.Http.WinHttpHandler": "4.7.0",
          "System.Security.Cryptography.ProtectedData": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/Paket.Core.dll": {
            "assemblyVersion": "5.245.1.0",
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "runtime.native.System/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0"
        }
      },
      "runtime.win-x86.Microsoft.NETCore.App/2.1.17": {
        "runtime": {
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.CSharp.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.VisualBasic.dll": {
            "assemblyVersion": "10.0.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/SOS.NETCore.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.AppContext.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Buffers.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.Concurrent.dll": {
            "assemblyVersion": "4.0.14.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.NonGeneric.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.Specialized.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Collections.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.Annotations.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ComponentModel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Configuration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Console.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Data.Common.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Data.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Contracts.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Debug.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "4.0.3.1",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Process.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Tools.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Diagnostics.Tracing.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Drawing.Primitives.dll": {
            "assemblyVersion": "4.2.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Drawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Dynamic.Runtime.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.Calendars.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Globalization.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.Brotli.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Compression.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.FileSystem.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.IsolatedStorage.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.Pipes.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.IO.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Expressions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.Queryable.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Linq.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Memory.dll": {
            "assemblyVersion": "4.1.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Http.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.HttpListener.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Mail.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.NameResolution.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.NetworkInformation.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Ping.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Requests.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Security.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.ServicePoint.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.Sockets.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebClient.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebProxy.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebSockets.Client.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.WebSockets.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Net.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Numerics.Vectors.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Numerics.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ObjectModel.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.DataContractSerialization.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Uri.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Xml.Linq.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Private.Xml.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Emit.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "4.1.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Reflection.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.Reader.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.ResourceManager.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Resources.Writer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Extensions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Handles.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.InteropServices.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Loader.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Numerics.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {
            "assemblyVersion": "4.0.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {
            "assemblyVersion": "4.1.4.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Runtime.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.AccessControl.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Claims.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "4.3.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "4.3.1.1",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.OpenSsl.dll": {
            "assemblyVersion": "4.1.1.1",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "4.1.1.1",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.Principal.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.SecureString.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Security.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ServiceModel.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ServiceProcess.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.Encoding.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Text.RegularExpressions.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Overlapped.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {
            "assemblyVersion": "4.6.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "4.3.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Tasks.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Thread.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.ThreadPool.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.Timer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Threading.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Transactions.Local.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Transactions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.ValueTuple.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Web.HttpUtility.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Windows.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "4.2.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XPath.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XmlDocument.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "4.1.1.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/System.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/WindowsBase.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/mscorlib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/lib/netcoreapp2.1/netstandard.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "4.6.28619.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.12.25830.2"
          },
          "runtimes/win-x86/native/System.Private.CoreLib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "4.6.28619.1"
          },
          "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.28619.1"
          },
          "runtimes/win-x86/native/clretwrc.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/clrjit.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/coreclr.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/dbgshim.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/mscordaccore.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/mscordaccore_x86_x86_4.6.28619.01.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/mscordbi.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/mscorrc.debug.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/mscorrc.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/sos.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/sos_x86_x86_4.6.28619.01.dll": {
            "fileVersion": "4.6.28619.1"
          },
          "runtimes/win-x86/native/ucrtbase.dll": {
            "fileVersion": "10.0.17134.12"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.1.17": {
        "native": {
          "runtimes/win-x86/native/apphost.exe": {
            "fileVersion": "0.0.0.0"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.1.17": {
        "dependencies": {
          "Microsoft.NETCore.DotNetHostResolver": "2.1.17"
        },
        "native": {
          "runtimes/win-x86/native/hostpolicy.dll": {
            "fileVersion": "2.1.28619.3"
          }
        }
      },
      "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.1.17": {
        "dependencies": {
          "Microsoft.NETCore.DotNetAppHost": "2.1.17"
        },
        "native": {
          "runtimes/win-x86/native/hostfxr.dll": {
            "fileVersion": "2.1.28619.3"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.1"
        }
      },
      "System.Buffers/4.5.1": {},
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Collections.Immutable/1.7.0": {
        "runtime": {
          "lib/netstandard2.0/System.Collections.Immutable.dll": {
            "assemblyVersion": "1.2.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.1",
          "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.1"
        }
      },
      "System.Memory/4.5.4": {},
      "System.Net.Http.WinHttpHandler/4.7.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Numerics.Vectors/4.5.0": {},
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Reflection.Emit/4.7.0": {},
      "System.Reflection.Emit.ILGeneration/4.7.0": {},
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Reflection.Metadata/1.8.0": {
        "dependencies": {
          "System.Collections.Immutable": "1.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Reflection.TypeExtensions/4.7.0": {},
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Runtime/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.7.1": {
        "runtime": {
          "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.6.0",
            "fileVersion": "4.700.20.12001"
          }
        }
      },
      "System.Runtime.Extensions/4.3.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.1",
          "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.1",
          "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.1"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.7.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.1",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "System.Runtime": "4.3.1"
        }
      },
      "Fake.Core.CommandLineParsing/5.20.0-alpha.1584": {
        "dependencies": {
          "FParsec": "1.1.1",
          "FSharp.Core": "4.7.1",
          "Microsoft.NETCore.Platforms": "3.1.0"
        },
        "runtime": {
          "Fake.Core.CommandLineParsing.dll": {}
        }
      },
      "Fake.Core.Context/5.20.0-alpha.1584": {
        "dependencies": {
          "FSharp.Core": "4.7.1",
          "Microsoft.NETCore.Platforms": "3.1.0"
        },
        "runtime": {
          "Fake.Core.Context.dll": {}
        }
      },
      "Fake.Core.DependencyManager.Paket/5.20.0-alpha.1584": {
        "dependencies": {
          "FSharp.Core": "4.7.1",
          "Microsoft.NETCore.Platforms": "3.1.0"
        },
        "runtime": {
          "Fake.Core.DependencyManager.Paket.dll": {}
        }
      },
      "Fake.Runtime/5.20.0-alpha.1584": {
        "dependencies": {
          "Chessie": "0.6.0",
          "FSharp.Compiler.Service": "35.0.0",
          "FSharp.Core": "4.7.1",
          "Fake.Core.Context": "5.20.0-alpha.1584",
          "Fake.Core.DependencyManager.Paket": "5.20.0-alpha.1584",
          "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "3.1.0",
          "Mono.Cecil": "0.11.2",
          "Newtonsoft.Json": "12.0.3",
          "Paket.Core": "5.245.1",
          "System.AppContext": "4.3.0",
          "System.Buffers": "4.5.1",
          "System.Collections": "4.3.0",
          "System.Collections.Immutable": "1.7.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.Memory": "4.5.4",
          "System.Net.Http.WinHttpHandler": "4.7.0",
          "System.Numerics.Vectors": "4.5.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.7.0",
          "System.Reflection.Emit.ILGeneration": "4.7.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Metadata": "1.8.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.7.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.1",
          "System.Runtime.CompilerServices.Unsafe": "4.7.1",
          "System.Runtime.Extensions": "4.3.1",
          "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.Security.Cryptography.ProtectedData": "4.7.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": {
          "Fake.Runtime.dll": {}
        }
      }
    }
  },
  "libraries": {
    "fake/5.20.0-alpha.1584+vsts.27b3dff1a4cc77ea1cfb16d04f35fcd9fb2a381a": {
      "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.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wdjf/gCNLEwd+0nUCDh9jAIIcKGwfhRramySTnTcVVgNC6i4Vp5aJklUJJfvFkEZMYNZEDGcI8pCa36/TmwmSg==",
      "path": "fparsec/1.1.1",
      "hashPath": "fparsec.1.1.1.nupkg.sha512"
    },
    "FSharp.Compiler.Service/35.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CmTi/VTIG+tB55s1ikY3gpsQXrCU8KDpBkB6w8noNGega5OWIiAx/Vzfi4G12JOFuB2E2fn7uchb8n2xqxhInA==",
      "path": "fsharp.compiler.service/35.0.0",
      "hashPath": "fsharp.compiler.service.35.0.0.nupkg.sha512"
    },
    "FSharp.Core/4.7.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cQ4Dn5mFIWnJF8MmL49k2V6L8mtInDrXopskNFbpC4lsPdspTn7WzUQLylB4HU4tpi76ManXMVCAvtlYowTfHQ==",
      "path": "fsharp.core/4.7.1",
      "hashPath": "fsharp.core.4.7.1.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3UR1wlJoigJuVkW1D7igtztDKn/t29Z3/iEnkAcWLFpe/rtut+sl9H3qXmEMTEgSx42tmd5P8tJ6gynZQ2bXjQ==",
      "path": "microsoft.dotnet.platformabstractions/2.1.0",
      "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.App/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Twbr4gDoF/YeFZwEKEg4CtKu47jjwCSs80CAQzhAQlqyqMvKL85QBktzbkhr5Wt8DJblQglOsfuKV7OOHk2SIQ==",
      "path": "microsoft.netcore.app/2.1.17",
      "hashPath": "microsoft.netcore.app.2.1.17.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetAppHost/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bmM5SUkXgxxjyGT+FXXT9stIf5kxaMgNfWKgxoikWVIYUxNbJwnhMEbaq4atiRt+M8SIhsR83qgvIHRGLOpnYg==",
      "path": "microsoft.netcore.dotnetapphost/2.1.17",
      "hashPath": "microsoft.netcore.dotnetapphost.2.1.17.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostPolicy/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2ths8+dGTwYI2rZOOM5rRnD19Mc5VCffGDOWvdkS+kcV1uvtgeGF9MnNkhl4S59S60dDhenj7P37caguZ3BQWw==",
      "path": "microsoft.netcore.dotnethostpolicy/2.1.17",
      "hashPath": "microsoft.netcore.dotnethostpolicy.2.1.17.nupkg.sha512"
    },
    "Microsoft.NETCore.DotNetHostResolver/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gIijt/8psLT2y/b0M7s1Xc5vU5t7rHvpPZuZtRIl0iGZW/3aMCbVVLxkf2bKYcLxlj/oN6QfT1LEIdliRwqwOw==",
      "path": "microsoft.netcore.dotnethostresolver/2.1.17",
      "hashPath": "microsoft.netcore.dotnethostresolver.2.1.17.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
      "path": "microsoft.netcore.platforms/3.1.0",
      "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IAFeJxHy2vlTm3mhiZVP/jKE5DImLUMQc3OV8z5G4ZBeYNAlPSwjC5V/Vx14GIJU6Osmhr+XPmtWW0cv5jSmTw==",
      "path": "microsoft.netcore.targets/3.1.0",
      "hashPath": "microsoft.netcore.targets.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==",
      "path": "microsoft.netframework.referenceassemblies/1.0.0",
      "hashPath": "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512"
    },
    "Mono.Cecil/0.11.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hZNAnXKQsOs/SZMFtT/e82/nA/iLgkeDy+sHD8xix4f0m9/3G0RNZplE1QHB+0n8QXq54jLqR/IPgVOkLapkyg==",
      "path": "mono.cecil/0.11.2",
      "hashPath": "mono.cecil.0.11.2.nupkg.sha512"
    },
    "NETStandard.Library/2.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mqjtbMa1pwOrIIbNM07Wz8wKgeasWgI90S9IRvIEPSqUbqYAosmNo+UUYuEQkN4X2wu3JrzJmdeT0TIDdoP52g==",
      "path": "netstandard.library/2.0.3",
      "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "Paket.Core/5.245.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bLBZPhzfcBMXV5tO2uOqMO08l+XdmgfN44i9smyzikEz1CSSKwexKDFDZMgJj9iys+2cl94azYI7xy77wDVVQQ==",
      "path": "paket.core/5.245.1",
      "hashPath": "paket.core.5.245.1.nupkg.sha512"
    },
    "runtime.native.System/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-K4T2HBcp48al2HPSQI07m4uBaFoiRqYeGKouynd7VnOdqQJUPVPMiqeXCgJqlCTiszxLmOlDEnKewdr2JOMTMA==",
      "path": "runtime.native.system/4.3.1",
      "hashPath": "runtime.native.system.4.3.1.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.App/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FmPiFNWBXNyamkfqD44p5gS26HAweTvKM4WV0453NRW9Trfz7AH8dubbwQIlUF/EYpmatPPkHqFw9bY2V2oItw==",
      "path": "runtime.win-x86.microsoft.netcore.app/2.1.17",
      "hashPath": "runtime.win-x86.microsoft.netcore.app.2.1.17.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetAppHost/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jse1puqMNbhh5uNrAMfF2+ywkcl4vsO94V7Z6Kvg3boQhNR9BCn74+vD1vRdghYdOSKH7djy5tIs44Bqttwuhw==",
      "path": "runtime.win-x86.microsoft.netcore.dotnetapphost/2.1.17",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnetapphost.2.1.17.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ODwJ//C4tGW3eNBOcgIknPR1SkJv7RXWgcY6bwBmHvHP95A0NKLSNra0OGZIRRbXosEFjvrp+Pdifq+MlPsxlg==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostpolicy/2.1.17",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostpolicy.2.1.17.nupkg.sha512"
    },
    "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver/2.1.17": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mUuTezQpClg9zMht4xkV+qfyEX0xeHvQ0QcIbSaZLzsQV0QKAKzVWBIeoc5qFh67l5UoPnWbEqinBEz7oepFdg==",
      "path": "runtime.win-x86.microsoft.netcore.dotnethostresolver/2.1.17",
      "hashPath": "runtime.win-x86.microsoft.netcore.dotnethostresolver.2.1.17.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hFDYc1cF0V9cL0h/k6/n2yHgnVUCGM8DdHWeSttrj9yprUtGvjdKWC9XPqM9Ganta1uDH52lybulsr1zFgsbqw==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
      "path": "system.buffers/4.5.1",
      "hashPath": "system.buffers.4.5.1.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6N1OJb9XEG+vG3h3FYsaZ0My7YXFjr8QsIA042DwVHSNIOh34N31V2S17rIdGEAqEAZpgqGfiBPonm6YLYz/Nw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Immutable/1.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
      "path": "system.collections.immutable/1.7.0",
      "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MIihFRqUOVW67j60RYgyooqKcYof85wWIoi0g0IAyrV7B3ZiI2ZZ+uarKvOSVigRbJmgF1ra+R5xM0QA/+FbFw==",
      "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-JQ7GiLx3KMdTqeHhoraZwIBUa5xHDY3v43ZucG5Uan2mtv44PatM/all+lQOC3xpvdZG8FS6hjbGB8iAGz0PFA==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zFWda48AgvgSsKeVUFeXWylVthpqiRJfKyINYjV9WmcxGsWCpD1PmBbtY9jzkRNrcQ98tzxuNETvKOw3wVXBBg==",
      "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-OUiRvTpO85ClsZI9mIH6Ec/yiiBR7uQizCjC6o1TbwFxIrSd1Gz0EsH+aapYq04XDpIuHEGD4Xn9cA+Kq6h2pg==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Memory/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
      "path": "system.memory/4.5.4",
      "hashPath": "system.memory.4.5.4.nupkg.sha512"
    },
    "System.Net.Http.WinHttpHandler/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fEsjB8hXnH2xqGEF9NbN5EWj2JpHyqIw/VYbsrSNU0ri+ZBWLACLS9iKy8amjN5fw6cZRFxIG10j+osmQ1dRpw==",
      "path": "system.net.http.winhttphandler/4.7.0",
      "hashPath": "system.net.http.winhttphandler.4.7.0.nupkg.sha512"
    },
    "System.Numerics.Vectors/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DK9CXqw+JHWmP17JK6Nt4eSXJKhGH4szyIC3l5M0vZu5ae3IOpUJbikzrdCrzYjMfurKF21XBC5EcyicdAry8w==",
      "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-vpUYDuFng4l3whRMYFwYFu4u/jq5cU8XiPeOESDCMhimVS2BE6CLu8RNlgDnvH0fL70ebPelTb4J97UYgz1UiQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
      "path": "system.reflection.emit/4.7.0",
      "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==",
      "path": "system.reflection.emit.ilgeneration/4.7.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jKJfH303PkJvB5JoX/DbZoGOe5KW9YiWLcWSda9OxtBd7fGwTzdnHapJ0E3wNNVneCcfuzpukvIP9I4lNwtjNg==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Metadata/1.8.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RRnWHNjNmb14+S+INsYe1A0b+q05uzLNzENcKe1GCkXT2gaKCjPxVc5TsLVgFZdAAPREnLHFohVbo6bGzEWFlA==",
      "path": "system.reflection.metadata/1.8.0",
      "hashPath": "system.reflection.metadata.1.8.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bzppCuAy5YoWk3oLnScPPzRFIWUqjEIUmXkeC2peaHMh1ddr2Zktdyxg52O3q4JLmk5Z7rMPYpukGgc3/qdN1w==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
      "path": "system.reflection.typeextensions/4.7.0",
      "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rpBkkzzrRXClGNQub12omip+Wg/pHnFpnZv1XDCWSCQk5yeTpzzj94QPet2whi8/H9XULSsJhK0J2sDbE7I8fQ==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==",
      "path": "system.runtime/4.3.1",
      "hashPath": "system.runtime.4.3.1.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/4.7.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
      "path": "system.runtime.compilerservices.unsafe/4.7.1",
      "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qAtKMcHOAq9/zKkl0dwvF0T0pmgCQxX1rC49rJXoU8jq+lw6MC3uXy7nLFmjEI20T3Aq069eWz4LcYR64vEmJw==",
      "path": "system.runtime.extensions/4.3.1",
      "hashPath": "system.runtime.extensions.4.3.1.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rv+e66sV+OwBWLV1juVPKx2h7p5H9YeE3iCP0nSVJ7tZo8/ceflghun/WlNSQpRFRHAkdYYy9jJYe0raNLB4Hw==",
      "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-0+kqt1VUow1X+dzvhjMgxmnrtnUi6JstHc9G/fEhOYPvATfNc8xmX2JUSi3tNJHqdCuR6/dbpRDTMjcolzbreA==",
      "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-oVV5sC1cPpN3BOeK/kGRV3FN1trqV7k/1W4nxypSz2DspfvRH8aXKj2oTMnGkXRTT0xAbaQ5OvQMcdBCcHx/4Q==",
      "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.Security.Cryptography.ProtectedData/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
      "path": "system.security.cryptography.protecteddata/4.7.0",
      "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mUB71e6JTuplj4Zg4sYdpOX5I7xIKbS8ZrpNcUzPZR4UXR5QNhsHwAaKWiGBm25QEaGwStrGGiol0ODzPDMiA==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZJ+yRTPD81g2QzuYvNZsgbsZ+9C77knP9H6t4V2dKePkwyV6ejZwahG++0/IhA4CIh9T5h0Z/V4XW7Qp4rrigA==",
      "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-TMoDE5dnU7cSy8JWEoVQ3YUmhn/zzsvHeft4LHHzBFcQN5Eu0O0luVOL/B0exMgeAO4WgoxWJmHrJzczgDGXyg==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "Fake.Core.CommandLineParsing/5.20.0-alpha.1584": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Core.Context/5.20.0-alpha.1584": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Core.DependencyManager.Paket/5.20.0-alpha.1584": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Fake.Runtime/5.20.0-alpha.1584": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  },
  "runtimes": {
    "win10-x86": [
      "win10",
      "win81-x86",
      "win81",
      "win8-x86",
      "win8",
      "win7-x86",
      "win7",
      "win-x86",
      "win",
      "any",
      "base"
    ],
    "win10-x86-aot": [
      "win10-aot",
      "win10-x86",
      "win10",
      "win81-x86-aot",
      "win81-aot",
      "win81-x86",
      "win81",
      "win8-x86-aot",
      "win8-aot",
      "win8-x86",
      "win8",
      "win7-x86-aot",
      "win7-aot",
      "win7-x86",
      "win7",
      "win-x86-aot",
      "win-aot",
      "win-x86",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win7-x86": [
      "win7",
      "win-x86",
      "win",
      "any",
      "base"
    ],
    "win7-x86-aot": [
      "win7-aot",
      "win7-x86",
      "win7",
      "win-x86-aot",
      "win-aot",
      "win-x86",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win8-x86": [
      "win8",
      "win7-x86",
      "win7",
      "win-x86",
      "win",
      "any",
      "base"
    ],
    "win8-x86-aot": [
      "win8-aot",
      "win8-x86",
      "win8",
      "win7-x86-aot",
      "win7-aot",
      "win7-x86",
      "win7",
      "win-x86-aot",
      "win-aot",
      "win-x86",
      "win",
      "aot",
      "any",
      "base"
    ],
    "win81-x86": [
      "win81",
      "win8-x86",
      "win8",
      "win7-x86",
      "win7",
      "win-x86",
      "win",
      "any",
      "base"
    ],
    "win81-x86-aot": [
      "win81-aot",
      "win81-x86",
      "win81",
      "win8-x86-aot",
      "win8-aot",
      "win8-x86",
      "win8",
      "win7-x86-aot",
      "win7-aot",
      "win7-x86",
      "win7",
      "win-x86-aot",
      "win-aot",
      "win-x86",
      "win",
      "aot",
      "any",
      "base"
    ]
  }
}
bin\fake.dll
md5: 67146CCC22E84A62EDD9C0BAB2A888C7 | sha1: E56105A7AAA50A7617DE5BD08120BB458CEE70FE | sha256: A2FFFB728DAE69982A6A256227648E5907CBE0683A469BDF90282990009B0B74 | sha512: 6949E3E9016CEFAC3F8FECE5DEF7E04ED3A8F6B661A022A969315E5A99FE85E0E50E110C20B7827E192945EEF6AA20F58690826339AFCD96B4214DF20F25BED8
bin\fake.exe
md5: 9DDE03D0F08FD78BBAD913D9C0C6459E | sha1: 778B8AA91D009D4E205D92931213CC385F321417 | sha256: 13E3E3485C9116A3ED94D0C6D55C619C23917825E261E26450BF6102462C3F8A | sha512: 963C7DE6809E995D130DFF28F5E04CF6E64F9A36FCE4F6EF08757C5277D03E09F021391090B212092A6D3F98ECFD85918969C6FA48B107A6C4C0CAC1BB96B82D
bin\fake.pdb
 
bin\Fake.Runtime.dll
md5: D5D0E7AC50E80F7BD083701D90848E8A | sha1: B8C2AA5058F12AED62E4244DB6025189D506C099 | sha256: CA1036EB90A95BB602B5AA06D8913E44B009690992CC03255083584114977E0B | sha512: DD6041F42F931C6E29592C440110AD926A3B39274020E2A43132EA9F9929DC909B3ABFEA96EA4A813532BD4EE5D7D517BC64A65881D0CAFBAAE054E65120D9B6
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="P:Fake.Runtime.CompileRunner.fcsDependencyManagerOptions">
<summary>
 options that must be added to compilations to circumvent compilation errors from the DependencyManager preview feature
</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>
<member name="M:Fake.Runtime.FakeRuntime.tryPrepareFakeScript(Fake.Runtime.Runners.FakeConfig)">
<summary>
 Doesn&apos;t create the .fake folder for this file if we don&apos;t detect a fake script
</summary>
</member>
<member name="F:Fake.Runtime.Tooling.GetTargetsWarningOrErrorType.EmptyInfoFile">
<summary>
 Most likely due to missing `Target.runOrDefault`
</summary>
</member>
<member name="F:Fake.Runtime.Tooling.GetTargetsWarningOrErrorType.MissingNavigationInfo">
<summary>
 Most likely due to missing `Target.initEnvironment()`
</summary>
</member>
<member name="M:Fake.Runtime.Tooling.DebugTraceListener.Fake-Runtime-Trace-ITraceListener-Write(Fake.Runtime.Trace.TraceData)">
<summary>
 Writes the given message to the Console.
</summary>
</member>
<member name="T:Fake.Runtime.Tooling.Target">
<summary>
 a FAKE target, its description and its relations to other targets (dependencies), including the declaration lines of the target and the dependencies.           
</summary>
</member>
<member name="T:Fake.Runtime.Tooling.Dependency">
<summary>
 a target dependency, either a hard or a soft dependency.
</summary>
</member>
<member name="M:Fake.Runtime.Tooling.detectFakeScript(System.String)">
<summary>
 Detect if a given file is a FAKE script
</summary>
</member>
<member name="T:Fake.Runtime.Tooling">
<summary>
 This module is to provide tooling support for FAKE scripts and provide common operations
</summary>
</member>
</members>
</doc>
bin\fake.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp2.1"
  }
}
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: 3EFE737305DCBF45B6F56003C27DFC3D | sha1: 6899BA2F65B33DDBC8FB6E239050621D8403FD07 | sha256: 147154CD8E33699C1458CD7653B78D6C93C2EA272E9AEB3F838AF95AF2A82B23 | sha512: 1D2E167788FE5E8D83C45FD735D5362430204AB84C87FFB69418245519831FC2BFAA350D3D926166BEECCC4444A388565F084B002BF6740823371651EF559043
bin\FParsecCS.dll
md5: B9F5BC32A35D9FE8D78344D26E6B7C61 | sha1: AEF4FD462AEBF1293A39B366B83AA3863F7AD1AD | sha256: 1822DE41FCF78BF92DE841F03E9A5C78DB7FB1EB19CF699F78E06F064E0D4013 | sha512: 517FF447FDC223F1E5A0373FE7F96D92FE9E817BA575852B20332E283A83CC7D06DE731479837B8DCCC974312DE70E4F56EF6072A70803E5376C6D429EA73B0C
bin\fr\FSharp.Core.resources.dll
md5: AAC7F0EF71E1781400910AEABE5DE5CD | sha1: 2537A6DDE47D70A5698F946E943E568F2AEF66BE | sha256: B763EC1248C27AB3B682F68A8823A08F3788B287252786393366E95D8B6A4C42 | sha512: 7E8444EB9489BA7BA583FDB665BB3C488B8D29CF60AC7AB86EE58E223B06BA80C708DA4C1A7A041007D439167A25FD7BF27BF04B415EFDFE94E42AD7C29FCF49
bin\FSharp.Compiler.Service.dll
md5: 38F760A1879AF3595440D478667EB2C2 | sha1: 85E9432F183D8F7781324CC79667889A0CB56B17 | sha256: E1D179014403E3032E4899C2F2E5CB29170A507B2F36DE6745A4B82FD016899B | sha512: 27B09B7BCBCF9D66BF319300EA6B607488D5D17090DFE0708F47FE1A71639C66AA8126BC268D8D73A88BEFA6CF15453BEBDE8683E3B4D4C11F998CE824812796
bin\FSharp.Core.dll
md5: 57F4C424626C2411B5386E7B3D26195A | sha1: 8CCBBC983288ECB9F9C126196F6C5B4A1CC747B2 | sha256: 8D1C6B3DC1B18D39A6F5949D7B5105F87B1149E20234C27FFA4BB204BDB54DB5 | sha512: 5267A6978AA21688D14450E188FE55DBF7865515BF65AB4A4688832D24B098830D3BD8F3C42F0BDEF98B7EBEE0F88DD275BF94BE4F524938032236423064C4FB
bin\hostfxr.dll
md5: 49F9E439984D937EFBC33A755A4BAACB | sha1: 4AEFF5FFF0CB9D81700DE60372B58B63D80FA14C | sha256: 6A4F33C0A947D3F8964876E082F75A05B0DE9BE59119421EF20F9BAE2FBA97C9 | sha512: 4E6EFC7E780F34FDC38F535E6D171421C4E24DD72CED307735F124578A709D558D9EEBE5EFF7E4DF80CC4511718300D5B9E18C3A1A46C072C3B24BBE9B3729B4
bin\hostpolicy.dll
md5: 957638F10B7B38F08C468B41454A1B25 | sha1: 3E6F72EFD9459111B95E840C8EA3F5FE8E3E6229 | sha256: 06C1A3AFC87A7ECDD1F4D17D622D368A95D081EDA9B9CFBF6544888DAC65C212 | sha512: AC3F0DAA1DF035D90A1CEEE4686F0FF31B546918485D8230A98B6BF493D6011AA6AE6D8971B4E621D84A0F2BA4AD71F84CB33D3315D84CC020C54C94A14861B0
bin\it\FSharp.Core.resources.dll
md5: 5EAE32AD32221FA42F9B7DDCDA199840 | sha1: 1BF3F58A326A2B8A20D66DC606F9C8544709C57B | sha256: B788AA09060053BCB1C8D66BA914E30F94D3228145709987E21144B5E7BCD373 | sha512: 594E78450877342A66D539DFD7F44809371E3243E0F7DC856FF9A3F7404A9697525E600300642DF1839ABFCCF4F5593DDBCDD6ABE0B95F9EBDEC5628F0D270A6
bin\ja\FSharp.Core.resources.dll
md5: 4E825E8952B29D2118396AEC1122D8EF | sha1: EA09C7C10C9BBCCD3E9FCD19059C2B60CDAAD57B | sha256: 171AF0A1C47B580A642B07DC51EF6BF87678D23EC1FF399E69569FB2B8C257FF | sha512: FD45B93D317A043B8F5F2F3A93856C1F1CCD878728AE7709476E4882E04D81B8BF352D494FD57A967F5927A37527DC765DA92C00847BB16F27E1E4CF8B4E5C5C
bin\ko\FSharp.Core.resources.dll
md5: 62FA236C8ACB56A3DC60D87743534B86 | sha1: 6CF38940477CA4EA5667595023BACACE26F1B9C4 | sha256: EF327A0A093F82C9C6C8F143BDCCEC88E79C14C5F0F3D2398E2CB58ECB228787 | sha512: 73BC89BCC6D3F1F39ABC0B4962BDB3B4B3E5617A2139916B4C0D639ABDD11FA49BDA41DBB68CE6E668C7F389CFFCA1D69DAC8970F0A2BA81FD3326CE96FB135C
bin\Microsoft.CSharp.dll
md5: 7C9C49282D80C85BA391AAF8BA6D26FD | sha1: 2C1B663D85341B5826BB2F8C68A017845E9C3117 | sha256: 669575F0C3F0E7CEF00530DCB161259101481061B1EDBE8777BC0914EBFD6F57 | sha512: D6453779D2B44EAE61E9BF5A1CDAA8B3E9B8F2CF661C19CB2A47FA4CCB3DF55124B617D5E94E13FF6B3AE5720603786398BE6C44E7F44250F268761D11A4F546
bin\Microsoft.DiaSymReader.Native.x86.dll
md5: 4FF7094E3EDFDA47CED912012044296B | sha1: C6F3C9D81713687DC3820D8CABF14C2A32208D27 | sha256: F21DA9FB831AC943736135B6EE109A4B352511B8D6C07CB03C66B61996D1DDC9 | sha512: 372867BBAE96C51EE11B413F552A67A53992B16DBFA44105381DB3813E3C2F9A3DC9D16FC6BD6366514D4E1B4BF1EECCCE5261BC3DF837BF3E3EB5A04446C551
bin\Microsoft.DotNet.PlatformAbstractions.dll
md5: 8ED1B343DC98E338ACC983A0687DE49E | sha1: D63333AFF2861F9FC39F3AB5DE75B7C8D6DD3340 | sha256: B9C07D7163691CF99134836C74FCB7ED60E9304A45E180990E8DB585A398165E | sha512: 68B4B1C4BC6345BA7796CAA907B84818E806FF0E16D93911562C62E85C274F0950EEABC616C220CC7EAF743171A03D30651F5F8BD0D8E2A5753AD00E96C27368
bin\Microsoft.VisualBasic.dll
md5: E8F176282DE796FEB322B373FA8A2F01 | sha1: 1617CFE6D0963E6E6A9F15264AB39C074634E413 | sha256: 8F00D712C5B49C86F44914ED877989EE9C1B4202828C6864554AD0CE36FDC598 | sha512: 5EFA8D74DBF5E9673ACC570CFDD22063167EFF14E2D81AA4481428582B2AEF8E27093588478D224EB3A182341D78455396430321AD80E0329F34AC37BE9416EE
bin\Microsoft.Win32.Primitives.dll
md5: A4F27E8A98B184F31698ACE02CA5BF51 | sha1: 45ACEA699DE55E76F9881E44803AACB4077DAB98 | sha256: 7518552AEF0C7DD4CB1014EABB868B6B142C3BE93A5FE0264315FA2BEA21E8BD | sha512: 5BB401E50C18FE2CD970AD8DEB2C7C3AC578EA0A457143BEBD95B35A544FBF9E9ACF17E13419D76BFA2926E7B24C447D98C819A394136AEC2BF3C553F910CA81
bin\Microsoft.Win32.Registry.dll
md5: 519A1EDC93492EDA21A6EAA43C73F223 | sha1: 125956186AF6AEACF5C577BB82D1671DAB36E2D2 | sha256: F49286F8894F1DDA92A6E31BE521074691C68C9E0736BAF3CFA0F88F0CEED6D1 | sha512: B4A596E4BAA30ECB94A96D570DF97E7273C713B68755E8FF2AA5A8CE73BBD67B1A54F1DEEB5609D36C0B56690D21E5F55C356071F77831CB1A1E9E08AD7A73F5
bin\Mono.Cecil.dll
md5: FF6AB9E0BEB760C4732F35EA41FC8889 | sha1: 63826AAEF7C649E9DE6F9B211F572394FA03A71E | sha256: DDAD90D7F37F81780A47638A8A9E2AF85B5261D6D9E698FCC8E0070A89DD301F | sha512: 217E50747E2B596326FF67ED380395064BDAFF3B08C1D2FD2039E23DAE1684FCFF1EAEFFDEACD8E59DE9A1890D3D087461F50EED8AE14EFB9E52D53B894C139A
bin\Mono.Cecil.Mdb.dll
md5: 098249FC0C8D966FF6D8C93D25A5E350 | sha1: 282DEFAFB58151069F9C9BDEA8E455B8E745D4D5 | sha256: 186F2504E211411C35F493E09BD8B0C3CBEB63724FCFC4B2D356C252300EE392 | sha512: B79720ADFAEB190B9997917F49CE0FCDE677ACDB6B41AA847E0C129275AE77A0FAA2E388ECE5DF19F83F47DC96E328C9797159DD9727A1482B5325048F975FFA
bin\Mono.Cecil.Pdb.dll
md5: A5C1843BEF449CB9D3B5E7750A16BA01 | sha1: DDBC565B0FB498F83DB03C80554E976F9DAEA92A | sha256: A626011CCC92ACB585A3D439E82341FA99B961A951929DF7BDF24CC569855BF3 | sha512: 4B5E54F9875DE858375E8CE656DC44435B363BD9DD495CFE1B57DF7DDFAACC91937129760ADA0D8DC1D01AA7A8A14A7BCE3118B39E41CD4F5AC53B2EC7EDFE48
bin\Mono.Cecil.Rocks.dll
md5: DDBD628656DAE456C28FC06AB26009A2 | sha1: DB7FA44E27C5A6B427DEF4E7BAAF47D426B94C63 | sha256: 60EFB0D5BA81B271DB0C5C5D6B651716199C38CB67F6E202595D52E570E5E9EB | sha512: E4D82EFF2CFF95F79148CCF16F4BA746A1BFE4702BD085AED934F8976F71BBA6E4BD81C41074737DC1D1F4540F87E34038082653E710805A0143C9F8C4EEB58A
bin\mscordaccore.dll
md5: 0E453FBEE2DDBE26085570FB5E74BA3F | sha1: 87FF40A72A6A94003B79C1AE0498DFA031ECEB29 | sha256: 754695BC2576CB24F1D2CC0F2A6EDADB0BA92DFFF2D8AE62DDB3512B8991CB0D | sha512: 9A4E077904E99A59CA7203B07FB6A28D39E315BAC35BC717100925696C4A8370A42066F525779F5C43D7C13FA04AAC012A7794338380E7FA2E9FF05858C84B27
bin\mscordaccore_x86_x86_4.6.28619.01.dll
md5: 0E453FBEE2DDBE26085570FB5E74BA3F | sha1: 87FF40A72A6A94003B79C1AE0498DFA031ECEB29 | sha256: 754695BC2576CB24F1D2CC0F2A6EDADB0BA92DFFF2D8AE62DDB3512B8991CB0D | sha512: 9A4E077904E99A59CA7203B07FB6A28D39E315BAC35BC717100925696C4A8370A42066F525779F5C43D7C13FA04AAC012A7794338380E7FA2E9FF05858C84B27
bin\mscordbi.dll
md5: BB41A6FC613107A07F2088A56405D584 | sha1: 58583C8FCC1DE460E67FE7045BC8B8408DFFA712 | sha256: 5A0CD85E66D7E413116C0C045DCE621A59E6DBB035E0CE04662D828EB90C5B57 | sha512: AA04F112723CFE682725A252332C7F6FB2561FD71C26A390BCE13BB546E3F62D8F514B5BA7D54E58B84ECEF0679F3BCDF90A572961B8467E89BE2E42ACDE76D2
bin\mscorlib.dll
md5: F6C3346329C9F0F5A32146D52475E09E | sha1: A78D7325064A897AAFF3F22ACEF9297CBDC9480A | sha256: B05A008034B98026512417FA010766C0B98C1A221E29BB2241993548AE0A9897 | sha512: FAE0B29CE4D4BEF513B2F3B41C827787A7936490050A2EBDC71D3AAE73D6A77825671F43394812E53FED44EBB3B703D0602328BD69433B60BD9EF4E393E9D7A9
bin\mscorrc.debug.dll
md5: 598379C0C7164E825755838940F49983 | sha1: 72377DE80DFA6AA40EDF863633CCBA5E7CFB9D64 | sha256: D5DD6615931491967E0892F19536DA53235798D3CB349972E865DFDC33ABADBE | sha512: DC1B3F8D1B9C871479048C35BA02F207B6FF7BBDD69E7B15CE4C5EFDAB6D14435C060855AE12F9AF076F95A58C6E66810E13DCE2804B20F74141F57C12591FD7
bin\mscorrc.dll
md5: D49C6F3D488222F9E598FBF0CABB8A96 | sha1: 3099610648C4C079FC64131157CAF4CC22E70BD1 | sha256: F88F4FF8F2AB623C058BED9E4A4EFF96D74E15CF2069E07A7EF969E70FB857BA | sha512: DA65D027752E51CB72A596E01A532D67B02644CC58A6B5ADED5B2CCD777C8B939254D1AEF0E464F60DBD451494A915F97E8C6FE61C8524A7599A1883658E08BC
bin\netstandard.dll
md5: 81C91E26DAEBF101B68A1C24F0FCA9D7 | sha1: BE380DF75F0EE0EA98B002FD7EDD5535BBD74FE0 | sha256: 8C16CBEE61AC23A265AC127181F6F46ED345D6B598BB8E39E428F27B8F3F7E40 | sha512: C00DE297E438BE0A4E6ABE89B1C45FF90C257EFB84C38EF6785FAC557FF336D165268AF0C1C329B21F0FD78D580F9BAE470F6D743A0110CD2E70D28B3FDF9D84
bin\Newtonsoft.Json.dll
md5: 9454AE6EB0C6AD77E93A95074BA29266 | sha1: DF83FCB3639596AD42D5BE8314EF9D672079198B | sha256: 99177A4CBE03625768D64A3D73392310372888F74C3EB271CF775E93057A38E6 | sha512: 8D1D2BEDDE2D5F33179560E1A4F72206EE1984B3F5EB96E93F94329C4C4A8044DD74D62F9E708293132DE8C8F351F0E7FED74A450A251A8ADE205702B29D9DE1
bin\Paket.Core.dll
md5: A0B741F5DCCE3669C6F9E201BF1F0268 | sha1: BF16D16CEDC545FFFCA37F223C5A14A7852CB688 | sha256: DED97EBD48DE735A539C2D7247DCD2365C6A795F7AF8DD9ABF9C6878E44782D3 | sha512: 15CCC255B756C7597678937793E05587EE9704CFD8D9706F81467BF394C5C27F8E8906FEED937048C0C92785F13FD5A50A0776F862A7405467FECF0CBEBB999E
bin\pl\FSharp.Core.resources.dll
md5: 6238BC19DAA337A9877E7A5B669E5655 | sha1: 380A4F13AD8B8042F8945E137642C58AC88400A5 | sha256: CF32C40BB8D51DAB4D41E6EA2C432427945A0A3C33821A6B19014D3663F3B11C | sha512: C854D1CF013FDA784F55B50089722E334706BA682E851AB30CEB81085A1F157A5F3CF71624458344A053FDE0106A5246CEC925307D9AC92B5B4696354432789D
bin\pt-BR\FSharp.Core.resources.dll
md5: 9194741D57FFB4F98868F1262CCAD6DB | sha1: 1A1F570714E5CBA0D5F6E563C29A24693881C1E6 | sha256: D06B0C3027D1E64F2166A0FEC56063C930423861B19BF43F43A6581BE0045CB8 | sha512: C3337877460B430B55A3BCCD214E3FDC0158DF5D76339A2F20856A5C8AC06D72234A379812089F3B5E37EBA298056FDC8B42CE60E0293D5E0F7F9482E334011D
bin\ru\FSharp.Core.resources.dll
md5: F3EC878C59F9F9FDA1736C480037DC69 | sha1: EC7280284652FA77A66093DE3201321565CA7E19 | sha256: EBFA208E7251E68CF9DE2C7E754DEE97D3471835949C2314E43070C72B244436 | sha512: 885C3737E96C4F0D93D103DF22134FFFA279BC4292124B6E658D6704CAE84D05135EAD338D0877D8E5CB0A89C1FAF5E8F0AB0DB5D9C6CB493629E3D3F916BACA
bin\sos.dll
md5: 346763D1A98044D0BD1C4C90C5661FEF | sha1: 5A46755A801E180072B3DFC249F07E6652EEDDA8 | sha256: 1B2AD9B462FE435344A5C20C07837682B01E4BA1FD3438C3B8737D657D36C215 | sha512: 897C7FE27F1AC3E5BDE62D10CACB2A3A409186E7591DBEB751EB46C019561471C426B656F30C486866CE395F88EF5E4B630E7D05E309CFFE555D4F3737C13136
bin\SOS.NETCore.dll
md5: 80B9DF9076D5656CB3EDBB22A34FAE56 | sha1: 9A7EDE3156D8DEBA32FAC298C28D9BC9832DB516 | sha256: 28423F2B0788186B5DFB4B5CCF419FF56AE94E117A8241F516A2EA0F2A1667F0 | sha512: 0BEB86D4EC06512571D61DDF9C1EB468E82860EB0D6B79B62B947BF9341BB291EBFF8E77E7C761C632C18B4EE7CA8703B68AF73DA96FAE63B39EF262D9995C6B
bin\sos_x86_x86_4.6.28619.01.dll
md5: 346763D1A98044D0BD1C4C90C5661FEF | sha1: 5A46755A801E180072B3DFC249F07E6652EEDDA8 | sha256: 1B2AD9B462FE435344A5C20C07837682B01E4BA1FD3438C3B8737D657D36C215 | sha512: 897C7FE27F1AC3E5BDE62D10CACB2A3A409186E7591DBEB751EB46C019561471C426B656F30C486866CE395F88EF5E4B630E7D05E309CFFE555D4F3737C13136
bin\System.AppContext.dll
md5: 9BE2DDF916E892FAED6CBB97E8D7BA8E | sha1: 6A9862D5681DBE8A0C33B4EA186F0540CDD4D0A2 | sha256: 3E72C204772A516A6BC24BE90E54D946A34541C53C1F6D6CAA392DA8EF1F7F4D | sha512: AB28DEB67F86119DABE1245FA1290AD0C814CA8B58593A25506A43EE011D22B318AD2BC5498B3648191255AEF11AC1EAA3742DA5A1C2BB4B9A477C0ACE69CE0E
bin\System.Buffers.dll
md5: F6652100D4DD6D47AA72E1F20D2FDCD1 | sha1: 72C996B6D564D7F4443A4EE2BF7DAFCF9EEA3B0A | sha256: 2BE74465B413BEFDDFA304AA12998586005B7A250F4CCACA1490904691AA4E63 | sha512: 3EDC10E54DAF021838F712DBF65EB4C565033CE47E5DE6B762099E2A7A4D709E0D0EF8CCE9D4D7CFCFDB43A024FA8EFECCCC5359CDFC2E59B028C6C890D62931
bin\System.Collections.Concurrent.dll
md5: 9B20ACB22D81EE3EA27D9B709A3AF874 | sha1: 163CDE4FC4E0EA8E91C10F3EF85159AD288D9750 | sha256: 227B64E0602A8C6CCD109F893BFD1AD10C741A9290861D9682E592A9952ABBA2 | sha512: 2675E434E65CE386BDA42F5745F9BE5F3B4926B9C1CE74997746BA5B68C7C8648D443F57E6722AEF06E453B47F4655011CF3832C53BEBAE0DCD650D4CC723CC9
bin\System.Collections.dll
md5: 813ADEC5D4F6DD8A3F96ABA428576421 | sha1: 699501874F9F609AC9247642EC98FD4AF398F64C | sha256: EBD223454FC6F42CCE7DACA9E4D94A117D408BB3695F9B3E5F5966A015439CC0 | sha512: 17CCBCF1B5085726A429F37342B6F0EDAF64829DBA5554FE67DE70B0FAFBE3461884598164DF7E0C5731CC3907130FEB76A190AD7DDF4742EB5D31184A7EF19E
bin\System.Collections.Immutable.dll
md5: 7EC24B7C7D3BEA8FE2A151F6E2C6059D | sha1: 0E5BC3F3B1A305198945156A44A57E2C472949D3 | sha256: 0595E122D16D5F52BA5018D94499E6827004D5017E9AB5DE3099391C7E39F9D9 | sha512: C92C563BB893D8FA10C459972BE4C049690A10420C334AF912C94E1D36199773D8B8648382BAE4165C1E08567D08EB6040CF2DBD0D3F5DA973D4B520164EBA95
bin\System.Collections.NonGeneric.dll
md5: DDD27058D1ECFD71C08A9535F34737CC | sha1: 882D0DC38541A9144131683F498EA3C7831BDA82 | sha256: 6ADE882AAFFD1260B4FAA4A9D9CD5552D719483E7ABA869C945E85AC0E149EE7 | sha512: 808241B85C276C2E53B0C037FD63909605B3CABFC61EA180307386BEF333BF58717FBB244235FADD187CBE468F87F989C3A997919BA75BFD94C82A6BBBA32E8F
bin\System.Collections.Specialized.dll
md5: 9FF2782E9D7BE89F92E6D5F3FEC2E559 | sha1: 6AED4A9B42E63A9CA307C2242737F1251140F1E5 | sha256: D4CADF35B8D5EC077ADDE49BF7A4AC30D41D947EEECBEC270F9D6E4A7A9C6D43 | sha512: D183F51E5D1AFA194E35E06A3673D7C032B20D64069BFF71606812D92F40DE2300AB2E121E54D0D0BBE8B176637470B44179947E28EE19526BE02A1F99E01C5D
bin\System.ComponentModel.Annotations.dll
md5: 8EAB3520EF562366AB69C3BA3384802C | sha1: CF0120E13E8DD6C099D2DAFEE0C7F673D54B9528 | sha256: A8D07ADC228F8CCC61C40BBA0CCE00BFD2EB05D6AD72DA55EB4876E73B010348 | sha512: F89BD78FDC633757FBC34CAC9D71E25D7F4135CF5E94B220F9D6BF999D74D6FA947286092DC468AD018D210204FAB9BA708082D62A2A512FFE42F86D4B259DA5
bin\System.ComponentModel.DataAnnotations.dll
md5: 7EDF34BB6896D89E2E615DD483C2423F | sha1: 624E0B0D114AAB7EC1E183D429733AEEE292D9C3 | sha256: A6C9F9E6FFA56BF4D28E25F056701865E50045B7EF3E8D89E2B86CB18516C0E1 | sha512: FACF0B63432967DB5D32FBD791FC8C301DE8DB013B6A8B20E9C66DD0E9508CB58FFD00C147EEF1AFF8DC100C7FF30E37868B494ABE66F707946FC3B161724944
bin\System.ComponentModel.dll
md5: 0AAC5F2935298A975B28CBCFC8ABFF0F | sha1: 4D75379A03F8C6FAD6C4443330185B1CEDABF82F | sha256: 74315E733512486868509C2511DE2C031C7843E461FA7145A774325D67F8D3AF | sha512: 6DEF1F5B81F16D106598FAE96EF2883ADF870999D63CB79BEAE2B798776C09EAE122FF4471E4E87692CE20241ACFE613A014B1B7B5AE3FBC6BE12036CCBC6089
bin\System.ComponentModel.EventBasedAsync.dll
md5: 687E6F256053B81C32F6B1DE7B9101A4 | sha1: 24D4704E9C156B1AA50CC96AB82769579725B5B4 | sha256: 825397EEF4B50CF09036BF7538E354121D19A1F13A1258867685FF7F8C0ADEEA | sha512: 5232F1DB7EE9FB2D34F1EDAEBA063E2D7A136D8A79C04806E11E3CE12A8CF35E3B784C42734BC3A12D15F4EF6842223CAB2AC34CE694CF120F9898F94DFDD51E
bin\System.ComponentModel.Primitives.dll
md5: 4572A442869107C0B5853B3605F72424 | sha1: 5B43B4D843B2D60BAB987B90A35A9C070A5159EB | sha256: DC1396AFA99BABBF5C304AD929858D542542C46E2DD638A6259A0E9097E6ABE1 | sha512: 237503E0DBB765DDF13EF988605DFDA2B65785BEE3ACAB3FF47751C7C666D2C8B46FCBB96DE588510AEFE93E8ADDBF3EE4CC86D3B41D904C6618D27EFDCB7B85
bin\System.ComponentModel.TypeConverter.dll
md5: 118621B71C5E420E6D50DC36EC80715F | sha1: E0DEB9FD03AA0335E1D9AEE185FFD6F134F072D5 | sha256: CB8439A67D708D867BCF57C05A6230AA9B160675B869169038C71D46852EA9E7 | sha512: 51985CC1879CB2AD133BA976BA9E176F78665E0F6AA37F4CAFBD6F1F8DDBDA74F24B3F1022CB902CD9572108309A1D3160938ECB004DF1C0B1159E2606A5900A
bin\System.Configuration.dll
md5: 9292BD8DA421D9441AA3AFCA704590DB | sha1: 8F69B243335FFE78C08D7448826227C13936BEBE | sha256: 85CA713374154BE6D0543571570F17A0711FB46A7A425A7B2F138625AE59F165 | sha512: E0258F4DF94A4064C9066B467753896191852FD18E1CB8FA1763DC51A76648D2687E2606E4C47A5F2D31FA4637F9A7E41F061821C164E05D922224ED6385AEE2
bin\System.Console.dll
md5: 2D40477720918A3C02A3B76E551561C7 | sha1: 566E32925B95BDDBC18637646D1FFF9EE716EB62 | sha256: EA4588001104701E2D03402FA06C2A6C6D73EBB7F9DAAE0AE5FDA5B20FA167DA | sha512: 2D528E54F79585434D0449E9611C2CEABDE8F6BE40CB7A1ADB0C2E91B2937ED45017204239AAA2A00E7367E2ECD6C9F2445EA6D1B437F045FA590B280E1D02C1
bin\System.Core.dll
md5: E67DC8755D59CB16CB64774A2CDB8609 | sha1: 96D98B1AA7E58B82C602E2C999607477C3F701DE | sha256: B2E3DC1E07227639F2B55FAB77482017571CAAEE73162F7B735C2FA5DFFF0A0B | sha512: 692617FC70A5089A64270C8B2A1DC22988DF0F1C512055E033FB4EF1D45F1A287F9C490532561BA66F8BB766A0DB0EC99E928F5AB4441274EFDD6563CE07660D
bin\System.Data.Common.dll
md5: 45E9BB825C8913C6D20453DA711A7ADA | sha1: 456F3B00E5D7B6985B62F9DC40E217D10A9EA5A8 | sha256: 8A96075BB41E905F9CC91A24E3D5930160778B529988161A32B6E86FF24873D6 | sha512: AABD446D7873274CF6ABAF76408A974CD305F45BFC7CB16EAEC9B9BE8F9C6B86B05D29F8BCCC80B78AD568A6D966D0A7E844C8D16C82888BA3AE1F273166AE5E
bin\System.Data.dll
md5: 0B59C042B0FB9E22C3C2F5C169556B27 | sha1: 6D0833233C9B6763F5DBD92A74721BEF9F09F59E | sha256: A7385B1E48EC8113910373CD193E878DD9237AE6A9607ECAA024E9A73BE57AC2 | sha512: 2D11D59441FDC47D540C4D9325E423B879660D4980356A1E761D4CD43266E997CEDD61993E8BF6C5CB075E163159D0F98A569277B7DD54C79D8FD337C1D01290
bin\System.Diagnostics.Contracts.dll
md5: D140C7921659B0F7BC9830CA27B57BBA | sha1: F0798520B00E3FEA7D7B0B79E882B8BA77A2AAFF | sha256: 966B05EA8ED2D3E59A8BA48F21D0BBC5E53458D2B34688CDA6F29090A78C6208 | sha512: 69AECE1A5ED7BDAB053781854D05E486495286399E5AECE9627D45C8A2C43AFBBAF6EE2FC22E28FF5FEB7B873EC1939E8BDD8B92316DDA17D05D637504E4FC0D
bin\System.Diagnostics.Debug.dll
md5: EB6AE408E08117554EF3D3A850C7AC0B | sha1: 2B5089244314DF5748D1632B5B9A5B126F229C96 | sha256: 4EB0DE99BF4B25B80E138D53BE7BE6D482F9B6FC2DB2051669922FD8F6B1E33B | sha512: 584772884CD9A1F9090B5CDAAA777190C1AC5C140DB57C434789D42BF14C8C1B60CFB31D7DDF5EB7D62EF1E3203C7148C8FCC7BCA5416BDBFA6AFBD57738E7A0
bin\System.Diagnostics.DiagnosticSource.dll
md5: 70FEFA08F31F9A586D034555EB7DA51C | sha1: 60FDBB57755A23D556149BB721B8A283CF280430 | sha256: AFEEB77C751389F6D2F97C7A96889CA2F1F46AF9E626C8E0E311B0A0F54524DB | sha512: A2664B51B0A2E9BAA2AF1B04E1F5D48CD39B999A4582EF3057C6E8B11E6B844C69B6186D639EC17B8D4736FC3658D85DDEB2C7AC1F45782D9C92F34B587BFD62
bin\System.Diagnostics.FileVersionInfo.dll
md5: A4A0AFDA0CEB341C1351BF6FE846162A | sha1: E594327A46FD712004B77544F1F72C632758FDAB | sha256: 16581FE66B02A4668CDD307FAC300D7B388881DCD829F4246860455577EA8A50 | sha512: 6BE55731DAC230F5C4D8FEFB6C4F5D414CE86DF329B5ADC23CF9DA58FE11A2326EDC1F27C80AFAB68AC2849B39619DB113FA58C6FFD09ADD642414B2DD404F01
bin\System.Diagnostics.Process.dll
md5: 74BC604F7308436C9B60AD00BF03ADEF | sha1: F82F4A91BE75D2D42457CB87A03F0177D7271C57 | sha256: 68D9C382959B5F76D78227410A290A8403DAF137643F2DC49A5326C091037C46 | sha512: 2E826DE545990A6C9E1CB452C3CA0CDAD86FD757969C6B39C7694A212AF59E25E52A9261C2412582449B34A2A490B20A0A6568E71FB39D982856F546B4EB8241
bin\System.Diagnostics.StackTrace.dll
md5: 141D875DCDCEA606CE866DB7B72399B9 | sha1: AB3138305A8BEB4F97B55AF978C6C425248F4262 | sha256: A8C8448F8E6F6965EB37A5469D50DFBA53E3F95339C4705C13CE81B189284927 | sha512: EDDF2D802C76CAE915F59DD510F31BBAF20353A9EA3BDA1AA48366AEFE41DDE9422567ADDF35666CD9B3CF33B359B82A9F20587B2CF75BFF2E25AE92CF87053F
bin\System.Diagnostics.TextWriterTraceListener.dll
md5: 0ACAE45C9D267A51AC1510CC5A37C98D | sha1: E12C1F83F522C96EBAEAF3C592286AFB31322168 | sha256: 8C374736A7EC88088527E3CC47D14AA9D2311197C1F43A86A994CD15BE11BF36 | sha512: 648FE8DCB4695FA325B80B7EEB39B77CA185CC546023C9272A36B1B9648F19730E71E422A23274FDF187C71FA85A07A8C32DC6DD730E2FCA7B4F265888AADA86
bin\System.Diagnostics.Tools.dll
md5: 6936CE71CCAB7E6ED5BBE2FB93395F97 | sha1: 8CFE842CBF7F92A72712DF410733087AEEECBB39 | sha256: CCB6ABFC27CE21562F47347B4BCE6BE7E3FF8133982EB144418E4F95DAD4228E | sha512: CA1948759CF054057CB444B241782F0C7B9E488580A53327ADAC9FD621A18724F2C693C84ACA4763526664CBFBC4EF656BE427D6F7C945DE280F74A8C6D5945A
bin\System.Diagnostics.TraceSource.dll
md5: 89A215C0AD0E789D02D888AF3C3F0480 | sha1: 0960B899CBB58AA8E95A6781C9FCF25D6365B40E | sha256: 7D98C47F9DAF722ABD53A0FA9907FB4A2E386509E7B21870732107BEE64A30B2 | sha512: 12C449CDA2ADA92B0C8FF35DFBD0ACDC09220B69755F36C0FB22A05D11024D2EFB8BD69D74649387B99287C9F3651815A29DFFE59A62679B08C4B008C406860D
bin\System.Diagnostics.Tracing.dll
md5: 50907C1AE3AD2EDF77FDFE8B64A0F50A | sha1: DA8BAB531BE84C0E5441F7197375BC6E31542B4B | sha256: ED2181D193721CB14ECA56E87D10297798091AFB0A9D2FA898DA5308FF625D81 | sha512: C3910B1B34FA1C1682F9F4B8777C592598EBA52A48AE6E8B4AABF4568BA101C79D8FBD566F7C3435D145BB0853018B7FAE13A017EA0A166AADB3F2055A511A2A
bin\System.dll
md5: FCC9C3FFA17C62A79DAD9F1578414F4E | sha1: 0993F019D210946815CA9836D93CBC7877316F30 | sha256: 031CBC0450B5CAD5091BDCC3DC651048AD908DE035E7C04A0BA2089495E6DAC0 | sha512: 757AEB31BBB3F4A23CD81A47781F5D3F0FE650519D6B750640A5B8D627B6BED09A2EC01A8002B67A485ECC5381C5607662126B580AC7FEE2B64FD681C74FAB36
bin\System.Drawing.dll
md5: 84273758DBFC1FAF49664B9914BD0B50 | sha1: BB13DB87C58C0A89190959FB3FF762C0003D5078 | sha256: 2C4338FAD83DEFE997D04722195AA5E6F06ABA009E0C897CBAB1617CCD283E84 | sha512: B8293B75EF2B4D20AEAFE643CD2614699A67A9B3D3A103C71D9BC55E811F9B4C37C0C47AA5EAEFDCA10808E24956099E4A08629BA2F833C9875CCDADD3CB52AB
bin\System.Drawing.Primitives.dll
md5: 47AC0002E3FA9B77632B117785C89998 | sha1: CDC9D8A6CC50A3878F1E93C2153C11CD1C677C21 | sha256: 4B83D41984B48CBDB92EDF1D6707BAED00A27BE173A8B2C6F5E00D26ED0BF519 | sha512: 71C645F2172C5DEE8D984E69559CC000D4B73443CE8A34CD4461DB53B824581005DB31EE492FD97EE319554750A021C1E89AFFF296B97E54907BC6DCFBD31294
bin\System.Dynamic.Runtime.dll
md5: 16D67A792C85C75D781F5BF0E0D7288B | sha1: 50D126A534B37905A63C96A0E64FF9B18BA03FA8 | sha256: EE1DF52E054BF7EAE51D8A2E1D6DEE3A4D1741615AFD1B51003F2D5A8E9745A8 | sha512: DB2CC139D64C04C49D033CD3550FE7784F90ECE7E973C6D7D02C29077C56C64D79ECB4ABCDCF0341B2E4B4498F636385B2E376FF5A2E679F9686A4443946927D
bin\System.Globalization.Calendars.dll
md5: 29187E49193735F02F90AAEA33459449 | sha1: 2F54DF9DDF50F132AC14D8A0574804FA87D20D30 | sha256: F023AD187DDA78F31A2A73C82EF57668784FA7996474761C468F1C34EE8A4AD6 | sha512: 6D31B40E6FF3F7A98C9D01C492AD4E1B88432D382B22C6123AAF0559C4DAA592140936F8F0C6BA2F849F61009F23DD0647008F1F05A3D9E5D1833F0EE0C49FDF
bin\System.Globalization.dll
md5: D9E6EF79F98CF3EE6A36ED147771E0D2 | sha1: DC36563673CF690EA29374B6961F40BCADABD023 | sha256: 42A54C20FF481101B706250AC0CE8FDF5F74560112827FAC575C19FBFAE9BF20 | sha512: DD978CC0466424E6BEBBA5F0A0194FF715D2F09FE61C4B9C8BB62A4B4F32E94831B8996468E3594D9914A2AFEB590C78FDC6D3084F1E0F6B77C208ED67B7797E
bin\System.Globalization.Extensions.dll
md5: 4552A9D174902AE2C4B66380EC0783E9 | sha1: 4E74BC0D47CAE6EAC6D436E6F5321C9A8D6CC4B9 | sha256: 6184BEC70C0B909B6E2751C8E506C3C632D5AC25143182CE008262497CA7C043 | sha512: 9D27F1D7A28000A182F2B619EEA741D49711FFA20246B983B58E65B27D652222319FE7FF27EC6A3F610C1B396C7B28554B0217A3116183C70BC200366F81D4CC
bin\System.IO.Compression.Brotli.dll
md5: FEFD99FB4DF3E3CAE2586A1A6CD41B6B | sha1: 72B54E01DEE7EFBBCAA1CA25909327C6BE8672A1 | sha256: B5C7C5B86752DA8AFD962F32871E15007721AB63BBCDCD8E4B88B9D6B9133BE6 | sha512: C4DC37FCB92E67387D8D7F3AD81F9FB56E2266926F7F3F5F239E50B1523620C3A1F6B38A6C862E6A54AE7241E48374A6CA7D3C0E8BABE8DBB5BEF0BFEDB943B0
bin\System.IO.Compression.dll
md5: 481E8C3522F386C46A15622C37771746 | sha1: 30D6AC53204242F6D144E1CAB4845DBF99737A2B | sha256: 1B7A6B368B5061330838E931557A9853DDC8BB608C840E6F73159B3C26E89F9E | sha512: 37CF17657EB773ED27A72AC8FBE27D2945180864EA287A3AD13D7AC2B6228E19CA89D9A87827403540646D658D182CF4821894E9B9E8118BD0F55ECD871319B8
bin\System.IO.Compression.FileSystem.dll
md5: 89D5CD29C2A15CDFC5B6A7DB5738B437 | sha1: 715AFACE37C6791D9E8C9286B1CE330050974E8E | sha256: 0875F74D41C815D5739FC6DA8383D81E88E683D0CE3953199701639D956C62D5 | sha512: DB667DCA80453FC9AFB86C41E0605D80ED22E55C128D5137C4D3148F73404BF01D357A83C278277B36DCE58654496696A25DE6925DED86810AC7F43C808191EA
bin\System.IO.Compression.ZipFile.dll
md5: BA2175D03C810AF60484F89AA79614AC | sha1: 8A2631F31D14E42F977A63A2380446048B9919D2 | sha256: 8195415B43B9504AAE2FA92BA656940DE137DD1E0E33895AF39ED4DC584A0353 | sha512: 015047101AC9C2DBD2723EE32EA7EFBF2F9E07FE5EBD0CB91EC1C034CDA91AC0515382EA4BB45544B16180DB7687D0E232FF23285720C28B8AF944D79CD823F2
bin\System.IO.dll
md5: 33E74D97ED219CDD4620F6C0460F7427 | sha1: EEA3EF6E648F4D363B1E9522A52ADE37EE8216D9 | sha256: 0E359A414635FCE8632BF1DAC41FF209F3015AC25EA79339AF0E1C59D96986EC | sha512: 0F8DA1F37B51C98099729F66BE640E710951BE01BA90AACADBA90A3D116BE84CC7A60928663023946DEB2E76CC551AD0A10136F14E8565039CA73E601BBB9BAD
bin\System.IO.FileSystem.AccessControl.dll
md5: F47EF0D905E2FBB152E4CD65A88A7E9D | sha1: 64EABF227A2D32398651F1B194FB7FA3C6FBB81E | sha256: A6F4F419DDBE7CFC059E67499F69B233AFD9F6E454579ECAA7C517AD6E8A5C55 | sha512: 0039A8DD053D18024BB00CCF9BB2009F47F9F216776FF084858A8335145C8DEA3985A1C003937B7B4B4A981613DA032F318AE9950D7EBE39C431741B037247D5
bin\System.IO.FileSystem.dll
md5: 0C6222EF62DC533DC1A270DB1D55FF56 | sha1: 25206A80BA39FD5DAACADCD97B745770941EA5BD | sha256: 1E7751836D995260086F3070554204C8BFF71A4B185398A03CF9E1B938132538 | sha512: 5DC5322B62DE9BE31CA6F8BF11EAD176921E9E2D1B6FD7668D18FA414141B677617B25B10D4E0D6270E3B57E0E7CD1D0BAC29577311A833AF23B487550BFD040
bin\System.IO.FileSystem.DriveInfo.dll
md5: 0B86E1F55C084285175B5C6F87AA2E8C | sha1: 6750768A0BDFEB72AF4243D65210499D34E986CD | sha256: AF0D0243B8157A42091DDAADB09F9BBD8BC320EC9FA284E215B982CB89FEC262 | sha512: 533A12635C403A0BFC8BEAA148F19E204357B2DC39FA76D6798B7523F827FEE2E93297D30630E537288912D1EF65B1997B7DE6D91E5AB46CED6DD5CBD832B55A
bin\System.IO.FileSystem.Primitives.dll
md5: E49DC2B68569AF73453CFAA34D69678C | sha1: 472F97216028D1F09D1886854ABA670166AAD449 | sha256: A925D9470C765CF5B8996EE1EF2C7248F6C7F7896AF5A770B5365FD6BFE0D38B | sha512: FFD9E29A3E010D24C2B0AC85D7C83083899F9216EDC208C8EB010B106600B8072CD6FC5A99049932C21960C972F68E090FF02E49067EECBCB114C934A7EDA0F6
bin\System.IO.FileSystem.Watcher.dll
md5: E6CC6D4D64018307DA88D8CCEAC129F9 | sha1: FDAF794EEEA2E4354A2CAD95765EB1764104E835 | sha256: EB14ED068C583EEBC53E6CBA7897E3354AE0AD21F415A48E0BECF6B1DD55C434 | sha512: 7DEDAC0FE2899144C5FFBC6C8EBB6F6AB26D24D64082294756B0C8452C86065E5FEC6BD5CEE205B661BB08F258D485D4BD43A8214D9745732F7B87DFAAF47C7D
bin\System.IO.IsolatedStorage.dll
md5: 948031F0ACB3562D49B0AAA692486555 | sha1: 59F451228BCD2FC72200D29CC422EACBC8E28708 | sha256: F59993228ABCE3F48B6D03FC4F574BDA8F54B90FF0754809A926512CC21DD84E | sha512: C5DF474B36D884FEA4B88153511F34D81D2447CB504A8BFB0456BE4C8A02CFFB220C3E769BEDD1B78DDFF1427305899EC5E83DF798AE46AC1B7E19A3B6FF9F81
bin\System.IO.MemoryMappedFiles.dll
md5: 66D0CF53045C37FE47DC44D683D55091 | sha1: 7E91CFFD4AFF65D0CE68F670811688FC7DC9F261 | sha256: 8F22456E5F58F76AAA3B9ADC8581E6EAB96F25D1D80E7D5C1150CC7D5AE4AF9D | sha512: CFF77D719E1F6008CEBE8E7B22D4BD9F0FDDB544FD7AB0D0DBB9F7E0A3718DF5B89665AF03A05B21C584340CA209CB51D0B73E1FA491DEC329F7B31E1D8E5C1F
bin\System.IO.Pipes.AccessControl.dll
md5: F856079DFB2711A0C6FADBE8C7EC03D3 | sha1: 4EDF4DB060FD1297BD48CBAB6BF3C6B719783CD1 | sha256: 79C5005CEF8F324BBC72388820B5F51F19C2E5ED42379281C149A6D851E19AED | sha512: C059F63C0EBE12650945C316F61838EF0541CA42BD369C27E2DA07CF215EF41E051455C9520038CB8163B2E326634D6CCDD78B9F72ACB5189FE787A76222B168
bin\System.IO.Pipes.dll
md5: B9FF008874D951A9E3C1F26DC0F9267C | sha1: BFA8B9D323A4C350A39BE1679579377464E1D07E | sha256: BC100E2E9D9D580F57F25617EE24F46AADCFF30610492BEE68F7E3B3563C017A | sha512: C79687D24DA5684813E326AF8C2792EC11152E7C5BE30456A724DA6E1021C35F66FEF85B5523D42073E2586E627B97513CDB30AB4D77185896EB3B18977657C4
bin\System.IO.UnmanagedMemoryStream.dll
md5: A37B6C40FC1CE6F56DF117FFFC14AF38 | sha1: 6F182ED137A2E88BBB65836FDA2AE2A6126F3FAB | sha256: 02BE81D740282D2B85AC9CC7DA12BE0E5F8CAEC7DDC2BDF094C39383D343681E | sha512: 8FFAC49D603BA35A8747CDC78B8ECCA0ECE9F592C6A37DB01A3831D8922B6D2AECCA8385E6406F5C58D2AEEFA0677A2E17352DDAE29467FECFADBDCF208D1089
bin\System.Linq.dll
md5: B5D36843ED2257FA6B3E04FD696B9BF1 | sha1: D5B02C9ADCECE58EC856F35F3F800BF3CFBE0267 | sha256: 0CC507EFD596931EE2FF5DA304E35063B017140DED6D9A48DBDA39DB9D327C95 | sha512: 8F7E88F77DEF05A0A4ADADF3F258DD46CE7FDA9402F36F2B70BFCCB4FB0A4681119048B6C7646A3B75A27EA772266632FEB0825CB89CF01E1E83D0E1ADD60307
bin\System.Linq.Expressions.dll
md5: E0CD0587A7B5101BF923F3DC8D716505 | sha1: D33175F16A9FA9D8A9257ED691B88897A3CEE800 | sha256: 683DDD86637F463D44AF616FBD79A4E754AFC1054AE0C412BC8F1DA5060FBA93 | sha512: 26381980E52E3FA7EE63FEB04480D8F1318E019EBED6945E633AAA06AC882B60D8C6D9FF6F690E6DDAC0DA603D4206CAE6F6D9922AC358DF2EF5434C19DFCCD8
bin\System.Linq.Parallel.dll
md5: FFC1B856F3AB34F55920905631FBA7D1 | sha1: B6CE33B2790BBC0FEBFE6C3080BCF296B37630DA | sha256: 335D6D17C07D01B98369FD2F88BBCDDF119AC5FC08E6EDCA58E503FF98794F18 | sha512: A65926017EDF95F5F037153068306849960BFCA50DC152FC1A5CB1326161C8FB2699BA303B78FD19EC173D7577BD6978BF57944D8DFD162719D29195F5CCC927
bin\System.Linq.Queryable.dll
md5: E11BF0069617E4487517A8E7FE694EF1 | sha1: 599B59C3AB22CE21BC271AC9C37194B65A10213A | sha256: 6770B4C224F75C6E36474A4663C48D6D11247EA1E3D4233A62158D4A62C77683 | sha512: 2D3B11D60DB95E908381C6DCACE4E9B82CB4CFD514AC47A8280F922AB120E707226BD164B178A24E14A7A1265BFBB0300CB94FE3E997366860E0ED835DFEA108
bin\System.Memory.dll
md5: BAF8668EB33C3CB7C6C22DAA1FDB815E | sha1: A68181213D3DF75234BE128FC06DBD06CAA233F2 | sha256: C4A70BAB0A6630901A6C3682DE51CA9A0FE44B10590671E77D96DB72A373CC3D | sha512: 520CB4B1628D848220A2CEBA117758541B3FF5055E8A50BCC627352B4FECB3D311128B7E713F9D834FDF36505DE0A25EA34DBCA5B8052F0FA4B10C660E4BD2AA
bin\System.Net.dll
md5: D7E040D6FC679FC6868079091404E5F5 | sha1: 47FBC052EE1C7E35B5720E3DF4D443338AC1AA98 | sha256: 0B3C074770731155291B8389F931C7B4048ACB4F7143381CBBB61CFE355443EA | sha512: 42C3D58A65EF71F4C4A371BB2AFE05FC0E7328898605283D5670D9056424B79BF910DF433ACD0F1482D93910CE5A39C5FD52DE9C5D3FA14475D1C23F76775A76
bin\System.Net.Http.dll
md5: 5753DD414ADE8FA3A77A8F41BCA262BE | sha1: F067A64455966C4110F49B278F1C9451978F788E | sha256: D8F1C123A496F8F6DD71F1AE9DDCDA3FA992933FF0865D4F00B6F20960B03E0D | sha512: 13E29CBB71A5CC2139C6C9A3722CD79D457135B6844E5286AF04C3AFCE3A925D955E5E09C5EDBAE9D60B0B120CB544D7B39CBA7DECDBBF14E443F1DE8D5AF216
bin\System.Net.Http.WinHttpHandler.dll
md5: 2D166686706438033BBA5DD8BBA4031E | sha1: 363B338899FFFBD69A05BF9CBDE7A50ABABB0F77 | sha256: 621D5B1C1D600ABD567ABE360262B250A65BB3B73B346592FF8A263CE992782B | sha512: 2A12B0DAF6C5A35B1BD7F4E9FAB731CB9A189922C1267D29EB4080F8719DCDC92C6B0DFBA67857578DC42D71231AC297AD62DA50866AA660418861925E50DE41
bin\System.Net.HttpListener.dll
md5: 7ED3FA5C5E5ACD25B814A4D1052EC807 | sha1: 11F17929C542860E6212423151A158807A24244C | sha256: 5F0EF3A2763987A94A2ABBDD95723271522FE005765B7841AC6F90ED41272821 | sha512: E5BF04F2DBFB776554BBDF802B380E65AD60138C65DEE152406AF302C90DB06D33F3A41326F16F4BF4DF94880C8C0DABDD686AFED2683B955C074C0F45940F69
bin\System.Net.Mail.dll
md5: A2B95875B6C9F306152A5760E7B8E7CC | sha1: 3C5E682093D3DAC106A5E64D4DB1DC93E66642B3 | sha256: A1B29ADB4725C699F11A30E80F8D045E95246B1C4FD2D35B43968346B2815C72 | sha512: 9D47BE06D311E4305C098E0FFC1970875D0EB6E599EC2401E9E67817DDEEC6D37F94EB087BE0BF1F7A71B69CEA0A14A3560709333148F150AF9DE212678F1B25
bin\System.Net.NameResolution.dll
md5: C24361028C2AF19DD06F064F9C4DA5E3 | sha1: 234292ECF2C2F6F99D629D8D05D3D24D0BFAF236 | sha256: 1ACE07B5F6C88111BCCD9D218D4EF39F5605873C5EF28F1A7FCF53F2280FC8FD | sha512: 970538C9560B9C84DE18138FB44F8C3DD00937852849919A112E989CDB10A89FF56906366B59DF87882CD4F2483A3D997DEE8C5BD4F42AC6FD812C921DDDF489
bin\System.Net.NetworkInformation.dll
md5: ABB1BFC9187E207CA105AA65910DCDEC | sha1: 6CF1B927CFBC500D2255C5246B44FAB022313093 | sha256: BFB27B6959173D234365436EAB308E37E1BB50AA3B15B48BA9006A3B5C1DE2AD | sha512: B86E010936109EA50A90A13A8E24DE0C100EF17FFAD9C6D595E27430772221791A1AB9A6E0A6422637D096A80B1FED427E2A68246B5236F3A28C0C4D106A2848
bin\System.Net.Ping.dll
md5: EA32289B6829DBF81FB110722ADA1817 | sha1: 29AC06B077AE5F2984F109C90BE21A21BB1685E7 | sha256: 9571D00AC26159172CE110A56F09DB45433CBEAAC595929EA16C324105F69F01 | sha512: FDC7CFA7AD3BA7BF63D63D36CDE3753DB7F3DA928B51417837403E9E42AE223C2BDF9718F5EF20975BCCA9E408BC32BCDBE6EE1A4E1DB2910C8980EFFFC2477E
bin\System.Net.Primitives.dll
md5: F9C094AAD29F8E6188A54D21B9880A4E | sha1: D9538FF7F2A166A65D7AC983DD5A9977F076D0B8 | sha256: 126A74F8AEA521B4226E5CA017D40FA36F3594F5F3F967392454857F98DB3609 | sha512: 8E24E5D5E0489F23E47DF696F104E49AB6218934A2A8AAFDF78376DFDC54B7B65C678750E52BDC7B1AD6749233DAA81BDBBBAF426AE4CE7E02627F7CEC38D97C
bin\System.Net.Requests.dll
md5: 9CD8D7F3E3CF4D2A43821161FB252ECB | sha1: 4BCEF850AE9734F025666C0A400675CDFABC2434 | sha256: D59AD4DEF416DCEB558833516C0084FA9556D94BDB22FCD781B11EC2A48648DA | sha512: 676B69441ACE8DEEBB855896EC2DEFE676D3F72D8B5FA1C1BB53391C496EA6C14F1F7A0FF17EEDF6D9A64DA77D4D15E0FE7762CB68B636361F4CA65C35A0F655
bin\System.Net.Security.dll
md5: 92CCD3811D8EBEC60441B207F3F14C35 | sha1: 1D22CE66706908BBF5E74BEEE65F91C7E9B0165F | sha256: 3673B4A5D49B2930023B67118C80E43C5C6B33C50442F71C59DAC83EC2412FC9 | sha512: 6533222BB02C4EC635A08C4798CBD9A0EBD0174DE42BBB422A80DCB5BABE9979D25D70B2E3C2B05434B362B74C23900DF63BAC9FB9C47DD7C661D8361139D457
bin\System.Net.ServicePoint.dll
md5: 70AAD6ABC8B142092C0BECDE6E70FA03 | sha1: 704FEA905A0EC8BF83E53C73A95D598E1CB7C449 | sha256: 592A4E4BC4FDEBEE27086BBBCFABC886B87CE0DA58EA4307A404BABAEEFEA11B | sha512: 303E753151B8807C957C0E77FC2E67B13B600A485492D8C58638B680F486B68895EE1CC4A523FBB6D68475F45CD9B66EE8EA9671830AA5E6F56488847CB39137
bin\System.Net.Sockets.dll
md5: 3B08E6FE5CEE5E82DB412C10F80F3CF3 | sha1: CE052006265F9A168D78A17D7B2C8D469B750C84 | sha256: 695A4EF12ADFF16F8FCE15F2F55C02B3BAEBB907B8A6FBAA71C00D49E8E0DF92 | sha512: 7B91AB8A3508E1959C195860712F20C4799CA8B869936D61EC1ABF17C5D44C7FF25D2520DD4FFD074DB7B15BDFCB9B50A79581BD3739C3F250085DB68B2BFE5C
bin\System.Net.WebClient.dll
md5: 370EFF058A68C2D93D919553617FDEF6 | sha1: E48A4B17DF68D7A27A1CA41A10D931094ED19FCB | sha256: F41A8E16B77E46928B2E1EA5CB5F2FA306854D6CCB4C30848E1BD4D0FDAAB4EB | sha512: 53F771C07A3316E6EF53BCA2C71C2ED8B7B572B49409714C2B2AA488DDD8DA91FC9207AB67E8BEFF9B5CB41DB3A0C4A4EF489A0555A39F1C863442C48E46A7F6
bin\System.Net.WebHeaderCollection.dll
md5: 9BF2171896D989546912DCA6E9B4712A | sha1: BBF09BA08BBAC3D4BCC865F04AF86D6CA215A125 | sha256: 48D51BF03D1E222A0CD8A864812EFEB3FBF25C500EF1FA7E5110D655C6134E7E | sha512: BD7A2A6207C15CC0BC9A492810342F0D777C33B048FEF5D11866B25F3AF8BD3792CB88526C916B46B38C3F07A617351E91B95EAF427726E65463295258B8B0E3
bin\System.Net.WebProxy.dll
md5: 4F35725E26BA6601D0DB55F0F940681A | sha1: 81134569BBAC0D3E58C5DF0DCA5151E2DE5F3507 | sha256: EFF04C6B8CFCCA1C4A93451769C3D64E28CCA12A079CFA358E03414D47387A98 | sha512: 99C398DE4E7E43B9EBB297F8D21F073391EB962E46FD172473087987B756507ECE661BE7CC076E9F5757B8C5E047C6CEB28F634E3EAFDD5A45CB8758B157F39D
bin\System.Net.WebSockets.Client.dll
md5: 90C23D6F8F19AFB32E377AEFE6650666 | sha1: C42D2C0A4540659B6C320B7AFC235F4402C25949 | sha256: 07CD7BE165F8E0E708C392A14D40E57AD5410730C50035E27B613A041FA0C499 | sha512: B456E48112790917E979ED0AED1573E7FE0D6802AD92171AE24E122151ED813040661064A9EDA1F7C731A3B1630E5B316CE05D73D722429921131191D23F1783
bin\System.Net.WebSockets.dll
md5: 0AB78B293AB2D959C82F8CEEC6B92E9C | sha1: 520EBEAE296D9AB9854DC0F29D8A2EC75AE2307C | sha256: 4BDE6080F0D01BEAFA54FEE722323612AACCA50DB85545F5BF2B9A47266A2097 | sha512: B4F10808904EBA7EC005345F03377307085B78422E93FC04814C1E27ABC0D7A56EA5F825EC95C26F62D08D5BF89F365AE013C0BF4DE5174A4B49645514E96683
bin\System.Numerics.dll
md5: 26A86B3FE010AA54275B6B484A8068B4 | sha1: EDA8E5D79DB01AF02F8784941BE5F7ACA8819F59 | sha256: F86B0F979D2A7036D87EEC7862ED103581EDD2FAE80C4EB7ACE6F290F9BD2BCE | sha512: 5C048DF0B1949B14E06542ADF4347889087794DA83E4E721611DA88BE33B83698DEA6345B56692D0D86ED96A5DADBB62ADB8EAF51C93A9E9501957234443486C
bin\System.Numerics.Vectors.dll
md5: 6A6EFED1ADCE4B8747D79D94C1A3A9BF | sha1: FF94BD47F1C796A0CB94FDE70523051481CF00E6 | sha256: E1384EF54E5B79AFA191CCBA99001F16F6903AC19D71A1B4E446DCA69D618903 | sha512: 7CDC2A2E700D70CE094A8A782DECFBC3AD69B72DE0277989B0370362ACDF656B3D3E70A92D889B53C160A134C16A63A1D53621EDE5D5DE3F12B3BFA12798F26C
bin\System.ObjectModel.dll
md5: FCBEF73889F8FF1B46D85A5CE4BB4E38 | sha1: 190922506C9E387F5D11773DE2CAD5144EF271D9 | sha256: A2558C0903000D54543E84E2554300C59E182DCD70F4B7FEE6F7838B9C631AA9 | sha512: 26D92453EA4E93537A68BA706B74585358AA85E80E7122BE99F7DAFDF1D7D3680B865B258004E3B0E449738DD3D8679A6FD650A55708C87126C99855855E9A96
bin\System.Private.CoreLib.dll
md5: 45E4EA5008C04DD864368A9C7EE6FEEF | sha1: DF69FE4CBBADBB0E2BF78FB05A294B7FBFD9586B | sha256: EE1963777C04272BD1AE72E7B54FD5F664B8189A3959F093769590B3315EDFDB | sha512: 76A36A280F602A186707948F7ED1B44E9DAB022C5BC3A65126C2BC1E0588E259E40F003BFE7FD8DB70D2A8957E3DCF8852C219D74393E0ED67E3422B7E550E0E
bin\System.Private.DataContractSerialization.dll
md5: D9D12C624F7960F2CD9BA4756F7D3837 | sha1: C83B26B424FBE86285461D346CD7E16BD3EA1F67 | sha256: 8E9CB5B0E44D1108A4AA9DCE4A9DC46446915F0FC6C2121D0943866732BFF72D | sha512: 8B5906482495FF0AE93D567B124D6CE8E37A4612DE709DE6D179ECD89721B548D3D38D3D0B175E02F7BD0313D4142E85588654D383EBC29CD3D2D014890E3549
bin\System.Private.Uri.dll
md5: 17003B55AC48C9287A3F7A12184E3992 | sha1: 5FF44120E2C7D2618BA3DBEF5D34290CBF27B9EC | sha256: 111876DCCA96D3B2B2753AFFFFD1601B78FE759043FC3586E3979A474FA9AD7C | sha512: F33AEBE22B6054B2660705CADB037F0F6101D25B2C82B868A6EA894814D52CB8D9993041BBDAC9E35B505A71F850242A2B985825CB95FC2194A89E5B11FFEBF4
bin\System.Private.Xml.dll
md5: 4AD8E4B46AB0E3E5033332FD1CB23483 | sha1: 2C410736AA9E8FE129F20FC6019B4694A2537576 | sha256: 5286BF0DBD5B1C6AB928E58BF58D6F4077B3DCD20DAACD8FE6F69CFC772930E7 | sha512: 2E1ECECAAB75B7D89467B88051C5027E8732605FC06FB2E5362855ECD112AA868E2AA3E857B90F98D52A930E06BADEC7C9F9B22751617D1B61B787B6BBA44514
bin\System.Private.Xml.Linq.dll
md5: 1D8BD77E2D9D5B01F5DB8322C5662F5F | sha1: 376551A4D4C8EB62343EF0B352835D151CB4759A | sha256: 3834EA5CAECB2C98DAC7A166CB0A9289084484E2483C00D4C5840F5AC3DC427D | sha512: 78C131F0C6C1954363467AD468E245E3F9365D2935327C99138EA25735EF4C117DC7FC9CF09ACEB66C64171F6BAF1E1240431DAE8A0C2CA3B305095EECD37897
bin\System.Reflection.DispatchProxy.dll
md5: D40B547B3F6FF821974D842961DB4F6A | sha1: B70C31A1466986FD2B70CDED84DBFFB36A87FBAB | sha256: 8CA615406021755A1705203F5E6225E1569DD184CFB80F1C9684AB4EF8A08C27 | sha512: E9D018E5DCD0FED9078888D963444D6481B063B696DAF1DE012FC58503EE038BE9B121FFF08512840211C7E439EAF9C0EC69746F4B7AFA433DD9595551CDFA0F
bin\System.Reflection.dll
md5: 53968B656402368330559F16501EB0F8 | sha1: 0B073C3C57AE9E52B2CFE8DD11F5A28A59763049 | sha256: 45D2561150B3669F0EB379E9D4E5B41523EAC894D9F97AC6679E66EF857DB5FF | sha512: 23FEAEDFF3055B5FBFFD34024D3F42275F33F13AD79B2F1C3A4486F2C827B0BEC35BBC67232872A04610C2E6014552BFBB1F967F96343412AB9AD39978A8C876
bin\System.Reflection.Emit.dll
md5: E4C911700D95C56BF0960790756765B6 | sha1: 2864A05C7A68FB68671231705BC2D60703495DB2 | sha256: 451BBF8ED2D24682EF54E878215B8A27C9436EFA10A2A9FE0B3A0C16E0363972 | sha512: 2383D0D9B7C28C1C62502928C52B39FBCDF5D23D863FE9856BE3B6F74C5EA8BBC8AC1F7E9CAA8935ECE946389E458E5D568E0278B8FF6EC137D59E6344490B35
bin\System.Reflection.Emit.ILGeneration.dll
md5: 141005772C014982C149C62F2FE36B26 | sha1: 5C0B5BCA83B0AD7E3B44079923B44C62F1CA4DC5 | sha256: EF97743DADF99A1A3BFEE909C613D4D5682EBD9C49C1D7A3377EEFAEE64BDB90 | sha512: E403EA83EDF9F5C69E07D2ECF8B326BA6EE612A50E7BD57C5A61F88E25ED0665FB2424111947CD44E8D03819943D870D04F73D973DBDA161926D8DA2088291BE
bin\System.Reflection.Emit.Lightweight.dll
md5: 6795D7EBC74FD90F0939D7CC2398F697 | sha1: A7706C3EAF724F3350FBD6093AC0E25A84422FDE | sha256: 09D37FD8B3BE78299BCEA5D622CB5D66E2815E44BF4D36A3717AAE91018544F9 | sha512: CCD94D520BF6D566C75C87DFFE5D3FE09986E0D1292B0DDB458B84800D5B32E89CA6C855115CB7E1840F4D6000FD41CFC031E6F5451A8BFEB0E26DA7B9FA55E9
bin\System.Reflection.Extensions.dll
md5: 7E51C4B59EBCBB70B922A43CB976C435 | sha1: D48DB3FC704783CD415D5CD3995F7DD94E48A5CE | sha256: 19D8A7129A205FEA5858CCD581216970A2D7AAA17B44C735CD4EA2AE7293BDAA | sha512: 22D834F161985B2A5BAD3F89012F1D73DE13769A870608F18A3FA6E05FA1BA7F51DC818D35EDFD7E5DFE47BAE815C63873A9CDC1CB0DA54F0517487F67502B2C
bin\System.Reflection.Metadata.dll
bin\System.Reflection.Primitives.dll
md5: 03DCA9C89FF97F7D441703F58933C060 | sha1: 394FE9A694FF21C88C7C38569044D088350F59C2 | sha256: 124DAA16A4D33F834062BFD444B0FCD37074F6D65D425DD966E1BFC3E9EB06D9 | sha512: 3C191651B50A9970B8B192FBE8073FCC2F0EDB5F8D7980BF332B76C14C93BB7C9AB4EE53829BF0CE846C38CAE19FB89C6A0850F0A2511E8C956B58D755F1C83D
bin\System.Reflection.TypeExtensions.dll
md5: D9BC0E4D9E7256B506C197B1813C9D20 | sha1: D4C7EF97633030AC881178977A0AE05C6B4F99E4 | sha256: 27D40353A8D7B4CE4611CBE142917482B225CFA13738A3D0D3B4A6112A958BF3 | sha512: 09DACBEFF46E5664E3B26242F4838681BB521C645ABBA734E40977E1C7E3683599C5C8D2FE2DD47DF5C6A4D06B9F520C3B357F0C0502948BE79C2F97C3478688
bin\System.Resources.Reader.dll
md5: A139540470615C8FC0AD3C8AC3154DA2 | sha1: 2438150DA59E8DDC1B114EF4C5F112F0BE9F5795 | sha256: 09A30F77927E8A94BF5B99FB5F94C44D124E4C0D2DCF02026BCC7E9BB90AA81F | sha512: CDE847B5842B9BCD6DCF428AD0B4D0BECA25CCE8D030005F95BA28428FCEC3F1EAE153BC62056ACCCCBE5C9C93AB3C9F709844B1C1082599D348F57406FF0E6F
bin\System.Resources.ResourceManager.dll
md5: 12E4EC1F9957A14EED89794109943BB8 | sha1: D8F6AB06A6A2E9CB3DC4A3C344D5CD59733B02F9 | sha256: F3B6B6F05BB6CA4F488A7C848C9E3040C1DEA98DAAC33F0524F82DC0C3A57A16 | sha512: 5FD99A7D90F5BC92FB49B720CDDD52F896298D8BC91C0805E81E8B59F9DE28D6FE84B3095089E0CE3D1B1201B7FD937BEB32DAEB14B61E02B3B997EE2920B819
bin\System.Resources.Writer.dll
md5: CCB759081CB4941836D5BFB9FDB3AF3C | sha1: 7DC967DA99B81665A2DBD8C6AF4B8A2EBF357CA4 | sha256: 47715B4BC989745B38CC9F1A4076F4F23B0B291CEB053871FBF10C8C5E585008 | sha512: 58577580A8B9E8CC7D123F53507B310436A459EDF5CECC353982FE6F4817ABC4F8D26D2B63477A2B3211931A9B84FB1AD6727644DAEB84D5113EC50B5BDEC5E2
bin\System.Runtime.CompilerServices.Unsafe.dll
md5: 9FB6DEA8FF1600497A9CE3A345459457 | sha1: BB489190FD821058DB86C2339DDFB183B3655B64 | sha256: FB00D92C7E3A85D5D0A8CCDFB33DE4830D1E7882D9DDB5FBE569DF1FA8538215 | sha512: 99DE1E884E6D6B0B708E633ABE4E724196E23BDF477D110EDCBFDB864308F95189468762DD9FCCC294DB040D33655CB18B47CBA386B03919F3B3D4F57B998AF1
bin\System.Runtime.CompilerServices.VisualC.dll
md5: 36D516D0E99695747F500F3DA9BB060F | sha1: FDCA5E2C0E3F6CED2E6CF19D955495599CAE2AF0 | sha256: A8DB35EAAC4B0BDB1EA06F8F512E5003B910E83E2BEBA773609E8CDEECEC257D | sha512: E88AB59F0D08E3086AD59DC6BF59CD2A24DFBF3FCE497E81B954A1507225DFD435A1B1756E96B734C5BD947C18E87EAD926995F94ACA23619284407543BA5CBF
bin\System.Runtime.dll
md5: DB03E50AAF752042A0AB87AB3DB140D1 | sha1: B36DA25BF29771BA27B31FF17335668404CC70B0 | sha256: 3E3532B369C5D277E76D2A0BB0897C729516AF9B3CC0EC1D34C04FB81C300FA0 | sha512: 4BCBD9C63C3529E1E512864B541624188B52915A17C58137C453154C771BE0571E2CB3661774D8300372C882365AD3857944CB60067F0733A5D1D9F23955DD8B
bin\System.Runtime.Extensions.dll
md5: 96460546392362AD6EF12C77093FD0E3 | sha1: 6AB859708335ECD15846B4E5D07C5E22D18CC9B2 | sha256: C4CA854B9E0E25CF94848A3CBE4FC2377DE7EA5D89947DB6C31E97063ABEE6D6 | sha512: 7F8CFF4EC235866332ECCDD99A0EFEFAF5F19FB0774D0EB8DDEA0A974FDCA3059D8339AAEB4CD89A20334506A92F4584753063753B1F50093A5A3672EB6F2872
bin\System.Runtime.Handles.dll
md5: 53344290FF78BBC579BA68BAAF0887F2 | sha1: D13650BDE61827D21F698E6643659B2D360791A9 | sha256: 8B095357DB96D7BEB25779AFDC43BD70609F28419B2D125D7688B31D6514C03B | sha512: D513BA41136765139D06097C6AB96E2A39159AC52A1427525A8A7B0566ECC48BE4F07BEDD5E47F19DF3DBBE46BEB96AB64CF9253B919152A045D864F89398E8F
bin\System.Runtime.InteropServices.dll
md5: F1015BDBA1DC6DCD98EDAEA61F87494E | sha1: 46C097C81AAEE6491950F489618CED3EC968DD66 | sha256: ACF45C85BD81AA44556A106572A6313368FFE28ECE8B379F60F691063681FD0A | sha512: 4969BE7367572159CF8EB6AF8ECD66AC2F99267A7C6D1EE9EAD6C8D1661923ED7E659199266203A97E442DEE9AEF8562E23FBCE332BFBBA3999475935B31647E
bin\System.Runtime.InteropServices.RuntimeInformation.dll
md5: 6504D2176925E105620724C796C47581 | sha1: 75D5DE7EFDCDF1A37327FA743497066C8A2C2006 | sha256: A43476AA48D1A826F77A5DC2D28774369B712451E491A4F48C1A6D192358C187 | sha512: 10B1D13406201835CC03114EF3A7BDA0BA83523815ABA9988555069C8EEE6BCD31FA6D237977C7B4FD91F440042B61F6D2C4C03574E2BB24C5BE8E13C9E9AC0F
bin\System.Runtime.InteropServices.WindowsRuntime.dll
md5: C93C07CF2137E8D3F516750ED823BF02 | sha1: 93DE27F2523438C89B010A8A588AEE148DA058F2 | sha256: A527C679BBB8862B4EDDA34A52404E5933B31366C2D6E572F15D0D027549C70F | sha512: 1059D3377381764D022140D15E96198CF8E776D758F8F80D62673962B7A3941EB3655DB060608E2050EFDB834B508BE5350F5FCBCD9FD9FBE631285A3ABA3155
bin\System.Runtime.Loader.dll
md5: D2927B7DF12680ECAB359499CBA528F5 | sha1: F53614EC218C8953162A9E7B8DA16F5287EC4ADE | sha256: 8C8ED840FCAB8700F5F72871B748C5FA660BEDBF742C0174605D8BEE0B3252BB | sha512: FA22EFB6787BA36F5D32288DA0D24AB8BFFC51F8245F336F6DB3C429DECEF46F17D6839427E035C178592E7389853FA1145B1B53AD162388DF247810D8761BF0
bin\System.Runtime.Numerics.dll
md5: BFC1CB1A1B786E226D3DDF30BB08AC85 | sha1: 70A9B3084F9557A56555B86912CBC794F37BDC42 | sha256: E836915CCC88C5FA503D12E1CD40F2502203FF00F7DD0FD4206315F061CF8DE4 | sha512: 4FD9CE693EEE45798ED9BF03AF3FB519FE6490DCB1412F1F99517D397D452E50145227B9E920072D2FF9BAD203AED4A80878AD5BB810C2D7FD2CD825499B63DF
bin\System.Runtime.Serialization.dll
md5: AD995988FF292B18A56476EA8AFC0CB8 | sha1: 8C4CFC3857496B7F6E6DF96754CB12FE57D263DB | sha256: 28C9AB4814527547C1DF72671FA8458FB2CA7CBA8A4A968A540CDA80C873B496 | sha512: 7FD18D982384479F2F59CC49324FED94694D832D5BD5ADD6ABBDDEB33B9C09F154BAD67E5080D30C1E19F41CF5C2EB480A0BCDDACB7BF8BFF33606209ECA61CA
bin\System.Runtime.Serialization.Formatters.dll
md5: B0270E3ECDB0AC59D54A18136AF8097C | sha1: 648D4B6C65A55DE480D57557711DE3460405D5AC | sha256: 2AC5CD3374A71C68A09002482960DAD65F27BC25DD64E4FCC5558980ED6BB16E | sha512: 29ECB6B7CD7F5EE0B0A09C7733E666B572ED58CD790B20FC04A176CDE12CAE3CFD041AE56A924C521C6DB78CA5A273A812179495818031C1AA8F5F01C1DF411D
bin\System.Runtime.Serialization.Json.dll
md5: CF4C237BFBD46B02D7E859EA67B8B425 | sha1: C1A786174D57ADA009D829980A084A0CCF6DA2CE | sha256: 1D5AE2F7D7BBFB3588B2228A35B95C817534DEB4F3CE5A85A06F40F91892A95F | sha512: 6F405A6EC1D3A35B8BE3A34B024A2CCE88154681BE5229025F35B8DEDC735E9608A1F4C0AF7C1154F51AE631E9BCD474DEF2A235A27D21E4CB8848AE2FADC3F1
bin\System.Runtime.Serialization.Primitives.dll
md5: E4CB57FB1EDA978B9F2B991F269567F0 | sha1: B20F8C20F90667FB008D7541E9292D514DE0251F | sha256: 31881DF32F519D9952D39B3D0EEC51FF79A6C093750654B126053C73B613E44E | sha512: 37D27AD648087C510A960A1370F7165F6B1CB53BE08EAE7AFE98C755CB3EA6445A5034471C5A0CF13401570AE3D295BE282C204AF19023AF030EF4FB19578ED9
bin\System.Runtime.Serialization.Xml.dll
md5: 1654C08ED6DB1B7AA934B8E124DC4C0D | sha1: 421EB614BD9320DBCDC6AA88F13A3FB18D512C45 | sha256: 6164390B628C03AA9DCBE831EA28F0F7D176A9C52B718765C2AC06DFBB909E22 | sha512: 96CC06EF2DE70F91CD9A17478710E56AAA32039A478A039BFCCCBC44CEE9123D0A18187A6526EAA56ECC582D7651EF64F2FE77948FC34C9E53436AB63BBDA06E
bin\System.Security.AccessControl.dll
md5: E467E7F63139E1ED41AB89B2A9457F2E | sha1: A7F25466E33F328915222AA94238F1A264E23694 | sha256: 7242A3A18C297C0C8682D9EC9D496BAB97C6EAB0F0033F795AC6325F3994D0A2 | sha512: D6BD3D081F14E21E6C6ABAAC3475AA41C18A5E575EF25C107AFFF4B401D5911FA348278B1211CF8C5AAF58DC64EF7E243142522AFA70B89CB5717609D9A8A87D
bin\System.Security.Claims.dll
md5: C01E9E78671EBA2556C822F6F7F954B6 | sha1: C88723CE34E90A98D1DC69E4E3B7664A4FD99E0F | sha256: 41DE2BE731F7824DBB24F079E560F1D7E011338F6A0BB53ECE38AB4220410D75 | sha512: E76E237463B11CF6848ED6BACD7B89EC6250B0DAA4ABCEC196E3FEF61B2024A4817D6F41AE9E0461BCAAB45770B91305F2BF930C76FA97BCA3A986DB44E69493
bin\System.Security.Cryptography.Algorithms.dll
md5: 5D1FE8DEA183AA333F7E56E2DE08A0BF | sha1: 8CE42EF60A433C7DDF403ABB71B11D79C0171FB8 | sha256: CBC41346068A3CED419BC0B3BABFE1601F828A06076F1EC8E32C79E7D00A3F2A | sha512: 63935D15738385B74F03DA1D6EDC7AAFAD979649810239D1544241C707632C86DE89B2EFF02371ED66364E0D9C6252E755DC8A33C0614CDD086DF48403206004
bin\System.Security.Cryptography.Cng.dll
md5: 3B2AF88FB3FC1BF6457EB255D7BF506E | sha1: D5C864D38E39C1179DA521355CEAB91FC707C5B3 | sha256: A19BBBB8A15810C3B2EC1BC9FD3EB848EE507C136D1947BAC1EB9D42236CA8DB | sha512: B6AD3C5270CD494953F3BFC26EE102270416ED9ABDB3ED6E9A0701D44ACFCF8D913DCC0BFF8BBE60C516C5B287A55EA28946BB3123ADADD2288D1501EC10D586
bin\System.Security.Cryptography.Csp.dll
md5: E51B174D23D56A653C5FDE3D5827D746 | sha1: 0FF578A02A799644A2B444091219856513238AC4 | sha256: 17A85CB043A2EE90D6518E6B6830E9C994CC68FC481ECBD7EB1D56D63064A44D | sha512: 2278C3F9A6AF9D58BD1308BB8218FE39E4FC855B97F6B3EF543EDAE1F4B37D231C0BFC6CC87116563F912F06A4AF61F1453531F27EE8F28D613DAF744BE06B81
bin\System.Security.Cryptography.Encoding.dll
md5: 09BE5DAFCA4F664BD0ADE089514AC9A3 | sha1: 1A3B3C8249889654B56AED2353AF548006B9E1DE | sha256: 7CB9033D80B89B28CED3F5C1A7E5857AF8977713815D0CE7DE355F8EFFCFE6A9 | sha512: CCC8C80C342FAFF073AE2816CB916869E0B8B21B2DDDDB9FEE3F8B4E628DD2754687A7A60EB9E682803AC12FC32211A901C54E6C4697AE441A0E2601CB338A76
bin\System.Security.Cryptography.OpenSsl.dll
md5: F774D4C6DB40899D17BFC384CC8DE756 | sha1: 0B1095B6C450593024A78B76F795C3BAC43794C1 | sha256: 448B81C0C02B6916A119DDA4C8A13CBA035693B695BA9CB7DE5D49677A7432D0 | sha512: 651755F794C7CE80A9915C39C9A621057FF40BC09687DBEF514D00F11A61DCA1F9C94757FBB4D2811C8144FF931DA29D3292E7A9781AB36C441FC5105C350EC0
bin\System.Security.Cryptography.Primitives.dll
md5: E36670164E2D5F67D2045CE909074A70 | sha1: 8D00682E6DCBBC377A4D668E8389A101A989359E | sha256: B710DD5A82644F33B198B065F511542FDD6434DB6B2D9B3C19EBBA831101ED09 | sha512: CFF5BC64F7DBFE708E76C50BA61E2F3EE4C4F996A6395481DD63FB9BAC0F5084635B2F922ABF82DDE29FEE69052D5E6CE68438B1E62E17EA1FA8CF4D3AF4A309
bin\System.Security.Cryptography.ProtectedData.dll
md5: A03540DF7D46DBDC432635BF2A27963E | sha1: 40DFBC479D15856E1D324BC34D9C83A0FEE5781E | sha256: A2C267A61EE145D69128220C10B3DDD451A137273126EF7B4BD306059E1727AF | sha512: 9A811203AC66805BA80E09AB63B868291CB3764D0581C09BD19BEDD234144EE5050AEA1BBDA51981505264E35DF2AF58F9BF2E9A80DC71F18AA7215D5524CA67
bin\System.Security.Cryptography.X509Certificates.dll
md5: FD79639913F2F10AC0880443D64F8DA6 | sha1: 294C970215365E17755FC81AEAA49CF3B5635800 | sha256: 3D8EF02CE232153589E6D64594E0DDD743F47DDCFFA3F874D014E73D5DA52662 | sha512: A3CD7319DC456EA4653CBAEF9AC439A093004E2EC3185368E62E26253ADE5D062B83F472EB0B9DA826F4DCE41F1D3DBBDE685C3A2CCC280B60EBC7919BC38C71
bin\System.Security.dll
md5: 9E8F2964210FBAAEE29B492D05038A5A | sha1: 766B9177E9D4F9215D87F009057ABFC841DB49AA | sha256: 22E9F7075DDE1DCFC5C95DA9A53373D011E7FDAB331349A03B9DD94BF0F4BE20 | sha512: 52F7B8DBC6EB16732FD9B4B2D43D2C5AA154BFEF24F4E879CBAD29C93749AA176563BDA1D6B4CBAC3E6282575C5E5E63E376B68BFDE223623E99891A5626AC7D
bin\System.Security.Principal.dll
md5: DA711098E0B55B7842A8DD3E834FFA6B | sha1: FD0C44E81A87B69E6DF589331DD8650990534F21 | sha256: 5C32513D5903AC8A19F9E16DBF44A0F07D75F506C7E4A3EFE4275A617A0FFA38 | sha512: 821F56A865E2BB548E7AC08D24AF9BBA2A9C4A667232942F26671C0CE066EDF96724047DEA0DE4F96E931D6C3E887EC5D23C4CF8E5B37DFC1FD8AFB46745FA30
bin\System.Security.Principal.Windows.dll
md5: 618233493E50D7CDA5C785569C732184 | sha1: 1D8FEF2D2884495199B3617702746B460BA462EE | sha256: 93004762DE6EA6C3064CBA98F2BD6BA1CCDDD9BB53B325EA445834DECE7B5F54 | sha512: FBC6D1592C5128133FB1140CBB8A465750D1AEC662491FC94CEE0D92AB602C207403B51623E6BE68DCE6F1F60C76810CAEBCAC640B2B230DF9DE680DCD62EAC7
bin\System.Security.SecureString.dll
md5: 53C398D609AC83D9DF2CD464133B544B | sha1: 97DC72436CB915D5060D48003F32BFEE993EFB77 | sha256: C4EF4731FDFAB6ABC6E020BA7C854DD744B77BFB9B5E16F30682DB2DF68DBB4E | sha512: B6818D5AA2278E07E564E9DF6788640ED63DDC9D445A2FE23C3C2EFE1C4FDD8CE2A1591820EE96B625AD120BE5D83BA640866725AC46AD4BD5E8FC25A1814DC2
bin\System.ServiceModel.Web.dll
md5: 6D03D8F803E9F9FA4195D3E7C92FC4D9 | sha1: 5E9EBE17635D0C3075D136FB39B9E9FFEC5D2F14 | sha256: FBC9A45646439F661B2210A1F975D093E5F563CA9A3EE0615BC73FA0A8D942B5 | sha512: ADE263C395CEAF85C8CB0B101BDE011ADF83D4FD5D6FBC67C02DA0093D00284C82D649C7B46553E4D7C6FCD06B63B6E632D693398A4D3A9E616B5ADD89E7EDCB
bin\System.ServiceProcess.dll
md5: 049147FD6053BC51C13922329AF19529 | sha1: 5E3DC89C5A149FCD9D6492E926627A587F40E9F2 | sha256: 46C0C18C29FBA88FAE6C1AC279FBEBC4169580DF2D02511B9042D430D64E2D2B | sha512: CF81D4154E5DF127575C3914844EE904FF2984BE2D4DF797679D16E81121AD615AD9E92E2E3299A23C65AAF26E128AE43A88C37FEC2630CFEE76C091C8D31106
bin\System.Text.Encoding.dll
md5: D87E252D1E14482223CCA7774EB26AAA | sha1: 0FC409301433034F53B1AD7E810682B096DB95A6 | sha256: 90B7006CD353AE574A45FD7A717E6069E4D2B4F4530D40BAE69AF916B36D6A7B | sha512: 704B35A27013E288B1F8D696264CFD19F37489095DC7C7BBCBA43C063CC28795864E492E3BC9FF2213235938E88FD90F7E94EEA206E946D0C85C401A8F431D92
bin\System.Text.Encoding.Extensions.dll
md5: D3BDD4A627532D368C7735DC7374905D | sha1: D69C0D7917C8F5658519D079170A889B172F4EC6 | sha256: 6626D5D4FC1F32AD3D63920122223A5A8A9FD6B41B40071A5B53E7008B5E652E | sha512: 9460FB81D33E87461A9556E454A0B650689893107D4FA614068F56B6F3A7F44903AF618489035EAB5671A77E9BCBBF0F8F6C8ED788C97B312CC1E920C12E7CDA
bin\System.Text.RegularExpressions.dll
md5: F823C91F5B583B23D4A4179861331DA4 | sha1: 671F9FA6A52CDF12A75FCD44A05CC3DB77DDB1AF | sha256: D948C5186C241C7E9DEEF1BB7028E390AE96871C255CFE9BC6B6225BA5092998 | sha512: B66FD69569F125CB7AE7DD05D5D202C34AD4CE4A52769E31169842B9C68E1D250BA7A78BBDD2C7C6A8E8D72C0995A7B91E0C3DB0E8CC3C46828CEA7FA35F12DD
bin\System.Threading.dll
md5: 7E0480F9C0659F00FB31FFA00831CF39 | sha1: 5A08F588570F26BD132ACD6D9CC9FBD717099F45 | sha256: 494C520FF1F735A70D5C9B3D39D7FB8D23CD5506412FAAB9E68314F143492FE4 | sha512: 53544741156D6555F6B0F1CB4239A91BD1A50B773657416891983A36749F158D70245C93DE77E470C390DE5FAA9F863BF5DE234E414A3630BE7C4E3F6B2FAAA0
bin\System.Threading.Overlapped.dll
md5: CFACEBBB36BCDE536E98C6A43277CD34 | sha1: 1EA10548625B5CEE9301336D955A1168F3FC0FEC | sha256: A1D7A85950DCFD03D8AADAAE702C98F86FAF104EE62262D31ACFF1D04C74F318 | sha512: 72E934AD4B53F0120C5B04D365DBA30050F1A4C60AED1FF7BB3CF3F8D73E2A0F5CCCA57405EB9AD24D327DB249C7F1B470CD02F81F02297E66D87BCE92774DE6
bin\System.Threading.Tasks.Dataflow.dll
md5: A6C148D07F9D2F0BB662B743272AD9FD | sha1: F4855FE62BB6716CB54F18E6DB71DC6CC65B042E | sha256: 2CD7B8B1F7441933054F171B6028C6787999AE9319226340B0D467314933B5AA | sha512: 2D58918C99BDA221C3C81697C29A97CF98C9E1C9BF26CC8DA07C68AE14A28CA44A0E7CF6A71D98B5125DDD2935F0BE1D441CEAD69DAFD0BE97F7C981042FCACA
bin\System.Threading.Tasks.dll
md5: 1EA80BBFD959E0C0A3E0B4897B6E0CA7 | sha1: E9D5392603C7EC1B4EF7E985B63944B036C6410A | sha256: 9937B9396BC4EA861FA5176C48FADE9BBB6613AA784770941577FD6EBF095339 | sha512: 45F562AAC7E58BD304F07424A4673A1A3AF55677A5DA62B3268453C90A3E43C08F7BCACB148B95BE80C63FD18701775D806AE615268EE57BE6BBD818D93D4437
bin\System.Threading.Tasks.Extensions.dll
md5: 241B79FEF8BCD7A6CC23729D4461DEBD | sha1: 855BBDBE8F2874D33919BB73E734949DB832FE94 | sha256: FD5685A1C6988E6F0AEB3F448C8DF56DE6A1B66BCC3BA1B58789996B280DAB62 | sha512: 390829E3DF9BC73C50F7B8AEB61AA4ABE074897A294FE97D5AB00CECAA4540CC14CB005E0B91CD3C1486F9E688AFBF34FD4AD70F78441898E1BA5456D16DD72C
bin\System.Threading.Tasks.Parallel.dll
md5: 55BB2B83FD0375A92B3E655BB3965931 | sha1: 908BBC4EE642A2E02A42D557EB7B698E13D256AA | sha256: 25C467EDDE73B30F227F3B678794CECCD089C09C8F4D9168BA269BD05E0EC8DF | sha512: DD117726D5D5D59EE4544722BFA2D8EACF30910F0F4B86652ED806ACE74EEE2F7A75AA0BE0664C0D5CE4A407FE197703A939B6B7FB1C91443BD46559ED50F8AB
bin\System.Threading.Thread.dll
md5: 476D746563E365E6783532D860D1179D | sha1: D80C7D3B752CAD8747890762E6DDE0D63C416252 | sha256: 9989C3B728037C08FD9B749E5EDFD6F879C1FCF81572A066BBEF0DA4182D6904 | sha512: AEC080691B7F6D7BEFF52C0C9EF602CDF39573FBBE11038BCC152FBD59C0D5D816D8028F2CE4E24DC939DCE594BD4E4181DF266F448882F57795719992FA481E
bin\System.Threading.ThreadPool.dll
md5: EC3CE08CC60028EFC466933D0E49FFDD | sha1: 4E0D614DE9B032F855A553D341C32903874B89D2 | sha256: C00B917DC70BC85EA9E3C7BBC721AA88E185BE957EE5FC17FAACFFB4C981393A | sha512: C6E4B7A66C32F57E22AD3CC0882ADA517F74E55CA8498588A11260EC873281B60E9BE1ABA26D303E13DC0481B9F95754503B555924E3A8706302027E6E701906
bin\System.Threading.Timer.dll
md5: A5B9B3EE7EC27752558A94C74AB1FA23 | sha1: B9975003DB077C825F4A5543C56123958B13D8C5 | sha256: BB2021E49C50EF917FBAEA6001DE9B9EB5CFA9DC2C6ED3709AF0ED2FD4E50ECF | sha512: D0B985E9EF60657506DC5BEF8AAF5821FD37B72B6EDF8ABE72F37C3A9B048981016BF0819F25366BDE6656E8BEC01FF76A9958C720B7B4E07D8475481F282F80
bin\System.Transactions.dll
md5: 7553BBB439AA0814FE6761DE9EBA5AF3 | sha1: 948D4EBEDC7BF34A9D860CCD48A6C1F2057B3A81 | sha256: FD72849208D0C36C94E8163F867A8B16C27143AA737087A334D93D51F1B9AD89 | sha512: 15098F6288DEF26289CD2F62FB9DC24ECBFB8CDE133B7BE0E9956977011429CB452CA96AB035755043772E32A8E4CD404AD49E224C200AC5CFF1A3AE83D6F06B
bin\System.Transactions.Local.dll
md5: EB19A31BB38C369F2F54A720AD4D41E0 | sha1: BC31460D67FCFEC9EF19BE587A24F2ACCF43515C | sha256: A8AD856B9193AACA43DC9EAC095CFD9CEE4280DC6308E754A4C876D865316196 | sha512: 3B4EB9B4B557423D44C343FB2F0F154FD055E70CCB4E3CFE9E3468C2EAF7A2439DB96248E0ADACD33DD5332A9F63B75EBB13784B4AE04FE450B78055D13565B7
bin\System.ValueTuple.dll
md5: 1DB2F387DA166163CE50EBE4F03B79F3 | sha1: B168CF97296D922D459FD16D7D36ED855C63EA02 | sha256: C1842E26BEEDF87732DFD46E4AEE37D53BB1F719CD889B4386CADA54AC8D6ADD | sha512: ED01AA491FE8550084F35830A034614DE9ABFE6BE0A76C34CFC37C418286CFD95CA7A68242F9ED14E7E4573414008EB951F043C5FAB546758C954DCC7472DC25
bin\System.Web.dll
md5: 5D8B655FDCA9E12655971EA1DA46692B | sha1: 15E775D955D218AB79321ADF1E3D681AF0ECD0C0 | sha256: 30C1E8E83F57298B3E80F13153B79EC795213CDB0DBADB9231BD9D43A9E32060 | sha512: 7D3D9D3406562E5DA529B07E9E648716EE9A9B027650166FF4E02A4429794FA0DB23F3E3E29623F507A2F4C1595168665D1B15CC63CF2398112A878291FA35AE
bin\System.Web.HttpUtility.dll
md5: DEDD2E6E48BDDA9F1EEDD9381BCFACF8 | sha1: 5446895AD817538D71BDFC40665D1A43C0C339E1 | sha256: 92ACBC96699D58B0C18255B58F94562A3BFAE1FA38E82BDB4CF58E9C44CF7F92 | sha512: F09D66878C7B1940D063E38853B77B19C7A306362EEB2AF0130A515C5C6BBA3880C80ADDA041B8595AE091E0E4CFEB378D138A076CA76F4FF99604593A9C7605
bin\System.Windows.dll
md5: 51D07353740ADC1B6EDD9980FD02CF0C | sha1: 0041CF59DF80B6D3948C5998610CEDE86B7D1BC9 | sha256: 6CEBECA0C9C18053AE6B79B0DFD3944170F8996CD5FA0EC76C9CD59601F0D8D6 | sha512: 119393B196B3859CCB9751C2DDB9321E5468DE6D426D9F3C467A2ECB38AEA9DAB2B94119DC2686159E7FCDC48794514D0E3EDFB9ADAE4F30402572264876F376
bin\System.Xml.dll
md5: B274E38F13EA603F43179F1B2356D3C2 | sha1: 4C8BBDF71C7DC2C185974F2A9D331C8D3F4B911E | sha256: F042D868AA3CC34E95CEB48FCDC7BDE85D516953EA1E9D7DA0E2737020FBFD2E | sha512: 88B4B299FD272B0A05288562F64ABC8F21FF8B0938989B27CE432F4F7C4065F3ED4F0332000FFCA2A7DAA83F9DA83F0B24FB02B8DBFE41C4E244707FD96BDC3F
bin\System.Xml.Linq.dll
md5: 193C35FC25D91644EA3F5B46F380EFE0 | sha1: 5EA4E0F903095BD455B71CF3EE0D7085CA6B3589 | sha256: DE5DD6D3AE35E865F9E0CBEC3E31406A115E2ED273A3D635AE2DF5A02B87799C | sha512: 0BB15EB6091864EFBD3E2250BCE259F0B976FE00607D34F5382190D999CB7463A0AFAAF4A8C82D4BB3E000B6CB11167087D8E9F4CF4F4DD171645B2ADC29653B
bin\System.Xml.ReaderWriter.dll
md5: 0FC83BB771A2557B2BA3ED23E8EB7C8A | sha1: 9272730B1FCA6CDC9519D10BC8442E77D7EDDDA3 | sha256: 6A425FB073FEF93D11475E990C8C5DB74669321E5FE2172F390BA5D728AE34E1 | sha512: A99F8461F837EBBCECB3EAF28C65E19B79C564C4567A274F3FD2C9E0E624D924C8142E6258F212454AA01B62F5A09CE3D68BBDA87F73C09429D64DC775BF4B21
bin\System.Xml.Serialization.dll
md5: 8F9C7E6BFD53B95A38AA7879E8CD8731 | sha1: 0A3230EA968DEF4ED2E66C0D597BB56105C199F9 | sha256: 6FDDC3212913E9CF285FBEAE90BE7B20188457233160D5433EF11A463602FF8E | sha512: B38F139FB3FDF63F245FAF0627C0CE7866E25B7D88B3D4822A9E217A55CCAABD338549EE4B6C68C4C1D40C5F11B9629F5ABCA6DFB8C1AE4712FE2F98C4955C76
bin\System.Xml.XDocument.dll
md5: C37B3F3C4B2D0A71CEA9A2A796B5061D | sha1: 713D064F12076EE56789E34C51D7F81299A51D78 | sha256: FBBE426A5B7AF13809E056CF4509A1C4D1F7124EA769B28692B766EBE83C4176 | sha512: 0EBF50D0D76BA25B5BAC282825FB8A60BEAB30678E8C2B4B1FA58B71FB5CD073337A0BF9F3D9AF5A2AF5B92A681DB2DBF815991ECB015A695C91FD7EA7812225
bin\System.Xml.XmlDocument.dll
md5: 0245417EAF082BBA7BA85FF2DE2EBD7B | sha1: 35DD4AAA7A6E39FD60892F2B2DA808995CF4D402 | sha256: C1E522F6DFEC8109F08B932A349F6433DA9981FB64C1E3E7664B083257A29FF2 | sha512: B5C701EF0F840BA3B348BC261B105D0A6F0F8BE12075063AEE1CAB7D3D3C1E0BC015B06975EC0B2687619C994151FC0D79CF12DD42D6A815EFA944EB8F76E84D
bin\System.Xml.XmlSerializer.dll
md5: 4197482A2E75386E9F953375CFFFB6EB | sha1: 9B513FFCB42FCA24CFFD6BC2DB392606F5D9A70C | sha256: 71906D6BE0C4A73ABBC05F4ED8CEF54B29EBB0D56FBFCB4D7AE72B27C788104A | sha512: 8B3BF1BADD7EB10DB3E4D35A620597ECD2952821862998B758393AD1B43AE11CD2DD82341A871A1C384B0732973168BF00643857A9B6EB40FB838FBDEF3A4EFB
bin\System.Xml.XPath.dll
md5: C527DE2257E978B7E85FA52834AFCA5C | sha1: 833A90ABCDFC787CB290F77A3DA8A33476010976 | sha256: AFDA30A67B956CE85E1C2A12538FAC51798F6721A55F95FC896FDCB11F7CA471 | sha512: 5C1C823BFBC156D39A069B91593395542848F50C172023CFA36F8E30DA8EFC011D5EC3F2ACBC94BFC99CD04AD18DDDFD00140E5683597DC642C32806BA7592E9
bin\System.Xml.XPath.XDocument.dll
md5: 11E46A1395933B6FBBDFD4FAF4E69F62 | sha1: CE94B8722C20350427BC3E513811443C913A8354 | sha256: B0D0C5BC795BDBEB601E4504CB11A08238688FF8E1A9DE6CAEA5C436C7846F54 | sha512: 6BE35586082F025B9D69247F6CCB089EB6168E71EF2E656BEB25803525CECB20FF5E688940B75B5D4EBEF852AF80FA710A8F94670C054446FA01010DF1B40D0C
bin\tr\FSharp.Core.resources.dll
md5: CECE27FC135D1529AA8DBD7A0B44CEBD | sha1: E3EF562452A56EFB5439CABB1FA5C153B2D752A1 | sha256: DF81D98E0440AF064643A5AF69515F7E26168D4A7FD400DC7F1A64263ED17B1D | sha512: 009396358E4DE3F55F7564FD133C3A687DAF718B8B2DD08C0BF193271FB0D4A4BDEC02518D88F76CE04AD5927CF0BE6E548E585065B67A99731A5C69D4D547E6
bin\ucrtbase.dll
md5: 6343FF7874BA03F78BB0DFE20B45F817 | sha1: 82221A9AC1C1B8006F3F5E8539E74E3308F10BCB | sha256: 6F8F05993B8A25CADF5E301E58194C4D23402E467229B12E40956E4F128588B3 | sha512: 63C3D3207577D4761103DAF3F9901DD0A0AE8A89694AD1128FD7E054627CDD930D1020049317C5A898411735E2F75E2103AE303E7E514B6387A3C8463A4FB994
bin\WindowsBase.dll
md5: ACC061DE33B9A72F7BDDFFC82F3205C8 | sha1: D915A7C7F8C1BB4851FF42B8D09C4F84498FFD7E | sha256: 560A0BC66327D213E707E3113718F386C031C833C1C4A2800D17B36871DEC83A | sha512: 2B61FAD35221E7FF380BD4A4A7D7808B3496857A3B69121B7AD82E0D36042592A01A7FC52D21B0BCCC44F29FA3F8DC25007FAE6F077B94020D2FA2484A0FA12D
bin\zh-Hans\FSharp.Core.resources.dll
md5: B5A33250B3271A2485F195D13D26E148 | sha1: D4D56B48BCF25F79E984054A448B319D79E4B797 | sha256: E91A27699B7F5CBEDEB25FBBFDF58A95BB4B0640D4C4C19ED5B5CB458B330734 | sha512: 75C6849027077B2AA3464FA32C5ED93A8BBE0F985B21F93B78D8FF5888EDCE66EB151DBEF5FA6F0F2BA22C7CFEB7F80C08A9D6FDDF4E63F883F718612A6D63FD
bin\zh-Hant\FSharp.Core.resources.dll
md5: D16DD59BEDE95D76497920E773048602 | sha1: CFC5D8064A9130716D3BC5AD82B5CF167A9319E4 | sha256: 712CD6F04ECBCF06FAEBC47F65A18DC79DD60CFE2C544A461598E622770E93E8 | sha512: 5B32047DE709EFA794F98C87D8AA6D137C21701B43A9C380BB0FEB3C081A74FC39F1CE201788C3C8C6B301A6D700AC67B328A48C1B7F6CC861DA51318BE87B1A
LICENSE.txt
Copyright 2008 "FAKE - F# Make" Project
Copyright 2010 Steffen Forkmann

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

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

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


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

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



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

   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

   1. Definitions.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

   END OF TERMS AND CONDITIONS

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

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

   Copyright [yyyy] [name of copyright owner]

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

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

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


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

Microsoft Public License (MS-PL)

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

1. Definitions

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

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

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

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

2. Grant of Rights

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

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

3. Conditions and Limitations

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

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

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

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

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


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

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
FAKE - F# Make 6.0.0-beta001 53 Wednesday, December 21, 2022 Approved
FAKE - F# Make 6.0.0-alpha004 39 Thursday, November 17, 2022 Exempted
FAKE - F# Make 6.0.0-alpha003 35 Friday, November 11, 2022 Exempted
FAKE - F# Make 6.0.0-alpha002 39 Tuesday, November 1, 2022 Exempted
FAKE - F# Make 6.0.0-alpha001 30 Tuesday, November 1, 2022 Exempted
FAKE - F# Make 5.23.1 298 Friday, October 21, 2022 Approved
FAKE - F# Make 5.23.0 184 Monday, August 1, 2022 Approved
FAKE - F# Make 5.23.0-alpha002 45 Friday, July 22, 2022 Approved
FAKE - F# Make 5.23.0-alpha001 43 Friday, July 15, 2022 Approved
FAKE - F# Make 5.22.0 347 Monday, February 14, 2022 Approved
FAKE - F# Make 5.21.1 156 Sunday, January 30, 2022 Approved
FAKE - F# Make 5.21.0 139 Monday, January 24, 2022 Approved
FAKE - F# Make 5.21.0-alpha004 83 Thursday, January 6, 2022 Approved
FAKE - F# Make 5.21.0-alpha003 134 Thursday, November 11, 2021 Approved
FAKE - F# Make 5.20.4 515 Wednesday, March 31, 2021 Approved
FAKE - F# Make 5.20.4-alpha-1658 107 Tuesday, March 30, 2021 Approved
FAKE - F# Make 5.20.4-alpha-1642 284 Friday, October 23, 2020 Approved
FAKE - F# Make 5.20.3 680 Wednesday, August 5, 2020 Approved
FAKE - F# Make 5.20.2 522 Saturday, June 27, 2020 Approved
FAKE - F# Make 5.20.1 274 Saturday, June 13, 2020 Approved
FAKE - F# Make 5.20.1-alpha-1590 246 Thursday, May 7, 2020 Approved
FAKE - F# Make 5.20.0 427 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1584 209 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1583 221 Tuesday, May 5, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1580 184 Monday, May 4, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1566 242 Monday, April 13, 2020 Approved
FAKE - F# Make 5.20.0-alpha-1545 266 Saturday, March 7, 2020 Pending Automated Review
FAKE - F# Make 5.20.0-alpha-1535 242 Friday, March 6, 2020 Pending Automated Review
FAKE - F# Make 5.19.2-alpha-1526 181 Thursday, March 5, 2020 Approved
FAKE - F# Make 5.19.1 592 Sunday, February 9, 2020 Approved
FAKE - F# Make 5.19.0 405 Thursday, December 19, 2019 Approved
FAKE - F# Make 5.19.0-alpha-1473 205 Wednesday, December 18, 2019 Approved
FAKE - F# Make 5.19.0-alpha-1439 235 Monday, December 16, 2019 Approved
FAKE - F# Make 5.18.3 526 Monday, November 4, 2019 Approved
FAKE - F# Make 5.18.2 388 Saturday, October 26, 2019 Approved
FAKE - F# Make 5.18.0 361 Sunday, October 20, 2019 Approved
FAKE - F# Make 5.17.0 351 Saturday, October 12, 2019 Approved
FAKE - F# Make 5.16.2-alpha-1304 308 Tuesday, October 8, 2019 Approved
FAKE - F# Make 5.16.1 720 Sunday, August 25, 2019 Approved
FAKE - F# Make 5.16.0 498 Saturday, August 17, 2019 Approved
FAKE - F# Make 5.16.0-alpha-1228 241 Saturday, August 17, 2019 Approved
FAKE - F# Make 5.15.4 580 Tuesday, July 16, 2019 Approved
FAKE - F# Make 5.15.3 399 Wednesday, July 3, 2019 Approved
FAKE - F# Make 5.15.2 315 Wednesday, July 3, 2019 Approved
FAKE - F# Make 5.15.1 362 Monday, July 1, 2019 Approved
FAKE - F# Make 5.15.1-alpha-1104 335 Friday, June 21, 2019 Approved
FAKE - F# Make 5.15.0 503 Monday, June 17, 2019 Approved
FAKE - F# Make 5.14.1 363 Thursday, June 13, 2019 Approved
FAKE - F# Make 5.14.0 346 Wednesday, June 12, 2019 Approved
FAKE - F# Make 5.14.0-alpha-1085 312 Monday, June 10, 2019 Approved
FAKE - F# Make 5.13.7 512 Sunday, May 12, 2019 Approved
FAKE - F# Make 5.13.5 449 Wednesday, May 1, 2019 Approved
FAKE - F# Make 5.13.3 362 Tuesday, April 30, 2019 Approved
FAKE - F# Make 5.13.2 501 Tuesday, April 23, 2019 Approved
FAKE - F# Make 5.13.1 315 Monday, April 22, 2019 Approved
FAKE - F# Make 5.13.0 449 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.13.0-alpha-987 286 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.13.0-alpha-975 365 Sunday, April 14, 2019 Approved
FAKE - F# Make 5.12.6 695 Sunday, March 17, 2019 Approved
FAKE - F# Make 5.12.4 585 Wednesday, February 27, 2019 Approved
FAKE - F# Make 5.12.2 350 Tuesday, February 26, 2019 Approved
FAKE - F# Make 5.12.1 514 Friday, February 15, 2019 Approved
FAKE - F# Make 5.12.0 994 Saturday, January 12, 2019 Approved
FAKE - F# Make 5.11.1 643 Thursday, December 6, 2018 Approved
FAKE - F# Make 5.11.0 381 Tuesday, December 4, 2018 Approved
FAKE - F# Make 5.10.1 673 Sunday, November 11, 2018 Approved
FAKE - F# Make 5.9.3 647 Monday, October 15, 2018 Approved
FAKE - F# Make 5.9.2 404 Sunday, October 14, 2018 Approved
FAKE - F# Make 5.9.1 340 Saturday, October 13, 2018 Approved
FAKE - F# Make 5.9.0 414 Saturday, October 13, 2018 Approved
FAKE - F# Make 5.8.4 532 Monday, October 8, 2018 Approved
FAKE - F# Make 5.7.2 605 Monday, September 24, 2018 Approved
FAKE - F# Make 5.7.0 346 Sunday, September 23, 2018 Approved
FAKE - F# Make 5.6.2-alpha-494 339 Sunday, September 23, 2018 Approved
FAKE - F# Make 5.6.2-alpha-491 314 Saturday, September 22, 2018 Approved
FAKE - F# Make 5.6.1 538 Sunday, September 9, 2018 Approved
FAKE - F# Make 5.5.1-alpha-403 376 Sunday, August 26, 2018 Approved
FAKE - F# Make 5.5.0 423 Sunday, August 26, 2018 Approved
FAKE - F# Make 5.4.1 452 Thursday, August 16, 2018 Approved
FAKE - F# Make 5.4.0 382 Saturday, August 11, 2018 Approved
FAKE - F# Make 5.3.1 463 Sunday, August 5, 2018 Approved
FAKE - F# Make 5.3.0 484 Monday, July 30, 2018 Approved
FAKE - F# Make 5.2.0 612 Monday, July 9, 2018 Approved
FAKE - F# Make 5.1.0 566 Sunday, June 17, 2018 Approved
FAKE - F# Make 5.0.0 653 Wednesday, June 6, 2018 Approved
FAKE - F# Make 5.0.0-rc018-248 417 Tuesday, June 5, 2018 Exempted
FAKE - F# Make 5.0.0-rc018-244 425 Saturday, June 2, 2018 Exempted
FAKE - F# Make 5.0.0-rc017-237 366 Sunday, May 27, 2018 Exempted
FAKE - F# Make 5.0.0-rc016-225 409 Monday, May 21, 2018 Exempted
FAKE - F# Make 5.0.0-rc015-196 393 Sunday, May 20, 2018 Exempted
FAKE - F# Make 5.0.0-rc014-167 384 Saturday, May 19, 2018 Exempted
FAKE - F# Make 5.0.0-rc013-141 336 Friday, May 18, 2018 Exempted
FAKE - F# Make 5.0.0-rc012-95 407 Saturday, May 12, 2018 Exempted
FAKE - F# Make 5.0.0-rc012-93 337 Saturday, May 12, 2018 Exempted
FAKE - F# Make 5.0.0-rc011 492 Sunday, May 6, 2018 Exempted
FAKE - F# Make 5.0.0-rc010 361 Tuesday, May 1, 2018 Exempted
FAKE - F# Make 5.0.0-rc009 315 Tuesday, May 1, 2018 Exempted
FAKE - F# Make 5.0.0-rc008 420 Thursday, April 26, 2018 Exempted
FAKE - F# Make 5.0.0-rc007 416 Sunday, April 22, 2018 Exempted
FAKE - F# Make 5.0.0-rc006 356 Sunday, April 22, 2018 Exempted
FAKE - F# Make 5.0.0-rc005 421 Sunday, April 15, 2018 Exempted
FAKE - F# Make 5.0.0-rc004 393 Monday, April 9, 2018 Exempted
FAKE - F# Make 5.0.0-rc002 329 Monday, April 9, 2018 Exempted
FAKE - F# Make 5.0.0-rc001 366 Saturday, April 7, 2018 Exempted
FAKE - F# Make 5.0.0-beta029 502 Sunday, March 25, 2018 Exempted
FAKE - F# Make 5.0.0-beta028 330 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta027 388 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta026 360 Saturday, March 24, 2018 Exempted
FAKE - F# Make 5.0.0-beta025 441 Monday, March 19, 2018 Exempted
FAKE - F# Make 5.0.0-beta024 617 Friday, March 9, 2018 Exempted
FAKE - F# Make 5.0.0-beta023 500 Sunday, March 4, 2018 Exempted
FAKE - F# Make 5.0.0-beta022 354 Sunday, March 4, 2018 Exempted
FAKE - F# Make 5.0.0-beta021 362 Friday, March 2, 2018 Exempted
FAKE - F# Make 5.0.0-beta020 463 Monday, February 26, 2018 Exempted
FAKE - F# Make 5.0.0-beta019 440 Sunday, February 25, 2018 Exempted
FAKE - F# Make 5.0.0-beta018 421 Monday, February 19, 2018 Exempted
FAKE - F# Make 5.0.0-beta017 362 Sunday, February 18, 2018 Exempted
FAKE - F# Make 5.0.0-beta016 355 Saturday, February 17, 2018 Exempted
FAKE - F# Make 5.0.0-beta015 320 Friday, February 16, 2018 Exempted
FAKE - F# Make 5.0.0-beta014 394 Saturday, February 10, 2018 Exempted
FAKE - F# Make 5.0.0-beta013 447 Saturday, February 3, 2018 Exempted
FAKE - F# Make 5.0.0-beta012 407 Sunday, January 28, 2018 Exempted
FAKE - F# Make 5.0.0-beta011 359 Saturday, January 27, 2018 Exempted
FAKE - F# Make 5.0.0-beta010 649 Saturday, October 28, 2017 Exempted
FAKE - F# Make 5.0.0-beta009 358 Saturday, October 28, 2017 Exempted
FAKE - F# Make 5.0.0-beta008 445 Monday, October 23, 2017 Exempted
FAKE - F# Make 5.0.0-beta007 387 Monday, October 23, 2017 Exempted
FAKE - F# Make 5.0.0-beta006 384 Sunday, October 22, 2017 Exempted
FAKE - F# Make 5.0.0-beta005 504 Monday, October 2, 2017 Exempted
FAKE - F# Make 5.0.0-beta004 394 Monday, October 2, 2017 Exempted
FAKE - F# Make 5.0.0-beta003 476 Tuesday, September 26, 2017 Exempted
FAKE - F# Make 5.0.0-beta002 378 Monday, September 25, 2017 Exempted
FAKE - F# Make 5.0.0-beta001 376 Monday, September 25, 2017 Exempted
FAKE - F# Make 5.0.0-alpha018 358 Sunday, September 24, 2017 Exempted
FAKE - F# Make 5.0.0-alpha017 350 Saturday, September 23, 2017 Exempted
FAKE - F# Make 5.0.0-alpha016 365 Saturday, September 23, 2017 Exempted
FAKE - F# Make 5.0.0-alpha015 634 Sunday, August 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha014 478 Friday, July 28, 2017 Exempted
FAKE - F# Make 5.0.0-alpha013 443 Wednesday, July 26, 2017 Exempted
FAKE - F# Make 5.0.0-alpha012 406 Tuesday, July 25, 2017 Exempted
FAKE - F# Make 5.0.0-alpha011 417 Monday, July 24, 2017 Exempted
FAKE - F# Make 5.0.0-alpha010 568 Monday, June 12, 2017 Exempted
FAKE - F# Make 5.0.0-alpha009 531 Saturday, May 27, 2017 Exempted
FAKE - F# Make 5.0.0-alpha004 624 Saturday, April 22, 2017 Exempted
FAKE - F# Make 5.0.0-alpha003 495 Friday, April 21, 2017 Exempted

(Minor) BREAKING: Drop support for net462 and update to net472.
ENHANCEMENT: Keep unreleased changelog section when promote to new version, thanks @vilinski - https://github.com/fsharp/FAKE/pull/2480
ENHANCEMENT: Added SignTool for v5, thanks @jhromadik - https://github.com/fsharp/FAKE/pull/2444
ENHANCEMENT: Remove old netstandard1.6 dependencies, thanks @teo-tsirpanis - https://github.com/fsharp/FAKE/pull/2493
ENHANCEMENT: Add support for running Octo as dotnet tool, thanks @jeremyabbott - https://github.com/fsharp/FAKE/pull/2489
ENHANCEMENT: Add support for --include-symbols in dotnet pack, thanks @devployment - https://github.com/fsharp/FAKE/pull/2508
ENHANCEMENT: Add support for default proxy credentials to GitHub (Octokit), thanks @csmager - https://github.com/fsharp/FAKE/pull/2507
ENHANCEMENT: Fake.DotNet.FSFormatting supports the 4.0 RC release
BUGFIX: Update FCS, fixes ionide FAKE support (https://github.com/fsharp/FsAutoComplete/issues/561), thanks @baronfel - https://github.com/fsharp/FAKE/pull/2475, https://github.com/fsharp/FAKE/pull/2479, https://github.com/fsharp/FAKE/pull/2481, https://github.com/fsharp/FAKE/pull/2500
BUGFIX: Fix Paket.restore references-files, thanks @nilshelmig - https://github.com/fsharp/FAKE/pull/2474
BUGFIX: Fix/octo args to string bug, thanks @ids-pfinn - https://github.com/fsharp/FAKE/pull/2469
BUGFIX: Fix an AppVeyor environment variable (APPVEYOR_REPO_COMMIT_MESSAGE_EXTENDED) returning null, thanks @teo-tsirpanis - https://github.com/fsharp/FAKE/pull/2448
BUGFIX: Fix potential FileNotFoundException when cache is outdated.
DOCS: Fixed typos and improved docs, thanks @milbrandt, @jzabroski, @objectx - https://github.com/fsharp/FAKE/pull/2492, https://github.com/fsharp/FAKE/pull/2497, https://github.com/fsharp/FAKE/pull/2502


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