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:

1,303

Downloads of v 2.0.0:

46

Last Update:

11 Dec 2023

Package Maintainer(s):

Software Author(s):

  • BBT Software AG and contributors

Tags:

bbt bbtsoftware policy devops azure

Azure DevOps Policy Configurator

  • 1
  • 2
  • 3

2.0.0 | Updated: 11 Dec 2023

Downloads:

1,303

Downloads of v 2.0.0:

46

Software Author(s):

  • BBT Software AG and contributors

Azure DevOps Policy Configurator 2.0.0

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Azure DevOps Policy Configurator, run the following command from the command line or from PowerShell:

>

To upgrade Azure DevOps Policy Configurator, run the following command from the command line or from PowerShell:

>

To uninstall Azure DevOps Policy Configurator, 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 azure-devops-policy-configurator -y --source="'INTERNAL REPO URL'" [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 azure-devops-policy-configurator -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install azure-devops-policy-configurator
  win_chocolatey:
    name: azure-devops-policy-configurator
    version: '2.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'azure-devops-policy-configurator' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.0.0'
end

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


cChocoPackageInstaller azure-devops-policy-configurator
{
    Name     = "azure-devops-policy-configurator"
    Version  = "2.0.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'azure-devops-policy-configurator':
  ensure   => '2.0.0',
  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.

Package Approved

This package was approved as a trusted package on 11 Dec 2023.

Description

Azure DevOps policy configurator allows to apply policy settings on an Azure DevOps or Azure DevOps Server / Team Foundation Server project collection based on a JSON configuration file.

Features

  • Support for Azure DevOps, Azure DevOps Server and Team Foundation Server
  • Export current policies to JSON files
  • Apply policies from a JSON file to a project collection
  • Support for global, project wide or repository wide policies

tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

# Determine installation path
$pp = Get-PackageParameters
if (!$pp.InstallDir) { 
    $pp.InstallDir = "{0}\{1}" -f (Get-ToolsLocation), "AzureDevOpsPolicyConfigurator" 
}
$installDir = $pp.InstallDir

if (!(Test-Path $installDir)) {
    # Create destination directory if it doesn't exist
    Write-Host "Installing to:" $installDir
    New-Item -ItemType Directory -Force -Path $installDir
}
else {
    # If destination directory already exists, remove all except config files
    Write-Host "'$installDir' already exists and will be updated."
    Remove-Item $installDir\* -Recurse -Force
}

# Move files to install path
Get-ChildItem -Path $toolsPath\bin\* -Recurse | Move-Item -Destination $installDir

# Create custom pointer
$exepath = "{0}\{1}" -f $installDir, 'AzureDevOpsPolicyConfigurator.exe'
Install-BinFile -Name 'AzureDevOpsPolicyConfigurator' -Path $exepath

# Delete bin folder in package
Remove-Item -Path $toolsPath\bin -Recurse -ea 0
tools\LICENSE-THIRD-PARTY.txt
AzureDevOpsPolicyConfigurator uses third-party libraries or other resources that may
be distributed under licenses different than AzureDevOpsPolicyConfigurator.

* Apache log4net (https://www.nuget.org/packages/log4net/)
* Azure DevOps Server Client (https://www.nuget.org/packages/Microsoft.TeamFoundationServer.Client/)
* Json.NET (https://www.nuget.org/packages/Newtonsoft.Json/)
* Microsoft .NET Library
* Microsoft ASP.NET Web API 2.2 Client Libraries (https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Client/)
* Microsoft Visual Studio Services Client (Interactive) (https://www.nuget.org/packages/Microsoft.VisualStudio.Services.InteractiveClient/)
* Spectre.Cli (https://www.nuget.org/packages/Spectre.Cli/)


1) License for Apache log4net
-----------------------------
                                     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.


2) License for Json.NET
-----------------------

The MIT License (MIT)

Copyright (c) 2007 James Newton-King

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


3) License for Spectre.Cli
--------------------------

MIT License

Copyright (c) 2017 Spectre Systems AB

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


3) License for Azure DevOps Server Client
   License for Microsoft ASP.NET Web API 2.2 Client Libraries
   License for Microsoft Visual Studio Services Client (Interactive)
   License for Microsoft .NET Library
--------------------------------------------------------------------

MICROSOFT SOFTWARE LICENSE TERMS

MICROSOFT .NET LIBRARY

These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms.

If you comply with these license terms, you have the rights below.
1.    INSTALLATION AND USE RIGHTS.

You may install and use any number of copies of the software to design, develop and test you’re applications.  You may modify, copy, distribute or deploy any .js files contained in the software as part of your applications.
2.    THIRD PARTY COMPONENTS. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the ThirdPartyNotices file(s) accompanying the software.
3.    ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
a.     DISTRIBUTABLE CODE.  In addition to the .js files described above, the software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.
i.      Right to Use and Distribute.

·        You may copy and distribute the object code form of the software.

·        Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.
ii.     Distribution Requirements. For any Distributable Code you distribute, you must

·        use the Distributable Code in your programs and not as a standalone distribution;

·        require distributors and external end users to agree to terms that protect it at least as much as this agreement;

·        display your valid copyright notice on your programs; and

·        indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your applications, except to the extent that any claim is based solely on the Distributable Code.
iii.   Distribution Restrictions. You may not

·        alter any copyright, trademark or patent notice in the Distributable Code;

·        use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;

·        include Distributable Code in malicious, deceptive or unlawful programs; or

·        modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that

·        the code be disclosed or distributed in source code form; or

·        others have the right to modify it.
4.    DATA.
a.     Data Collection. The software may collect information about you and your use of the software, and send that to Microsoft. Microsoft may use this information to provide services and improve our products and services.  You may opt-out of many of these scenarios, but not all, as described in the product documentation.  There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
b.    Processing of Personal Data. To the extent Microsoft is a processor or subprocessor of personal data in connection with the software, Microsoft makes the commitments in the European Union General Data Protection Regulation Terms of the Online Services Terms to all customers effective May 25, 2018, at http://go.microsoft.com/?linkid=9840733.
5.    Scope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not

·        work around any technical limitations in the software;

·        reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software, except and to the extent required by third party licensing terms governing use of certain open source components that may be included in the software;

·        remove, minimize, block or modify any notices of Microsoft or its suppliers in the software;

·        use the software in any way that is against the law; or

·        share, publish, rent or lease the software, provide the software as a stand-alone offering for others to use, or transfer the software or this agreement to any third party.
6.    Export Restrictions. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting.  
7.    SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
8.    Entire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.
9.    Applicable Law.  If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply.
10. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you:
a)    Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights.
b)    Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software.
c)    Germany and Austria.

(i)        Warranty. The software will perform substantially as described in any Microsoft materials that accompany it. However, Microsoft gives no contractual guarantee in relation to the software.

(ii)       Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as in case of death or personal or physical injury, Microsoft is liable according to the statutory law.
Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence
11. Disclaimer of Warranty. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
12. Limitation on and Exclusion of Remedies and Damages. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.

This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.

It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your state or country may not allow the exclusion or limitation of incidental, consequential or other damages.

Please note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.

 

Remarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.

 

EXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.

 

LIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.

 

Cette limitation concerne:

·     tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et

·     les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.

 

Elle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.

 

EFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.
tools\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 author, BBT Software AG, itself.
Any binaries will be identical to other package types published by the author.
tools\License.txt\LICENSE
 
tools\bin\System.Runtime.Serialization.dll
md5: 75F38E36232AF3B793F86C4BA176D4DC | sha1: D45CD39684D5220D90B7121E1F002E0241402AC6 | sha256: B8A3D5A76AABCF1D83BB051315F0914372015EBA537813A8C819BF1D0A71532C | sha512: 7369CD682E3DCFBFD3367E659E29A72BDA04B523CBB4A3A91A590765CBA21B93A8B12F7D2BFA2C7D6709BD64490C7829A7912616C3BD6BB94D5523B1377BCE59
tools\bin\AzureDevOpsPolicyConfigurator.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v7.0/win10-x64",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v7.0": {},
    ".NETCoreApp,Version=v7.0/win10-x64": {
      "AzureDevOpsPolicyConfigurator/2.0.0": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.205.1",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.205.1",
          "Spectre.Cli": "0.49.0",
          "StyleCop.Analyzers": "1.1.118",
          "log4net": "2.0.15",
          "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "7.0.0"
        },
        "runtime": {
          "AzureDevOpsPolicyConfigurator.dll": {}
        }
      },
      "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/7.0.0": {
        "runtime": {
          "Microsoft.CSharp.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "Microsoft.VisualBasic.Core.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.22.51805"
          },
          "Microsoft.VisualBasic.dll": {
            "assemblyVersion": "10.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "Microsoft.Win32.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.AppContext.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Buffers.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Collections.Concurrent.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Collections.Immutable.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Collections.NonGeneric.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Collections.Specialized.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Collections.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.Annotations.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.DataAnnotations.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.EventBasedAsync.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.TypeConverter.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ComponentModel.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Configuration.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Console.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Core.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Data.Common.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Data.DataSetExtensions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Data.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.Contracts.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.Debug.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.DiagnosticSource.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.FileVersionInfo.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.Process.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.StackTrace.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.TextWriterTraceListener.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.Tools.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.TraceSource.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Diagnostics.Tracing.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Drawing.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Drawing.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Dynamic.Runtime.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Formats.Asn1.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Formats.Tar.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Globalization.Calendars.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Globalization.Extensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Globalization.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Compression.Brotli.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Compression.FileSystem.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Compression.ZipFile.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Compression.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.FileSystem.AccessControl.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.FileSystem.DriveInfo.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.FileSystem.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.FileSystem.Watcher.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.FileSystem.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.IsolatedStorage.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.MemoryMappedFiles.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Pipes.AccessControl.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.Pipes.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.UnmanagedMemoryStream.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.IO.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Linq.Expressions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Linq.Parallel.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Linq.Queryable.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Linq.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Memory.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Http.Json.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Http.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.HttpListener.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Mail.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.NameResolution.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.NetworkInformation.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Ping.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Quic.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Requests.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Security.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.ServicePoint.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.Sockets.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.WebClient.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.WebHeaderCollection.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.WebProxy.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.WebSockets.Client.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.WebSockets.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Net.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Numerics.Vectors.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Numerics.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ObjectModel.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Private.CoreLib.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Private.DataContractSerialization.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Private.Uri.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Private.Xml.Linq.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Private.Xml.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.DispatchProxy.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Emit.ILGeneration.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Emit.Lightweight.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Emit.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Extensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Metadata.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.TypeExtensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Reflection.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Resources.Reader.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Resources.ResourceManager.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Resources.Writer.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.CompilerServices.VisualC.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Extensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Handles.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.InteropServices.JavaScript.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.InteropServices.RuntimeInformation.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.InteropServices.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Intrinsics.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Loader.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Numerics.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Serialization.Formatters.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Serialization.Json.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Serialization.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Serialization.Xml.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Runtime.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.AccessControl.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Claims.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.Algorithms.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.Cng.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.Csp.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.Encoding.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.OpenSsl.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.Primitives.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.X509Certificates.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Cryptography.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Principal.Windows.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.Principal.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.SecureString.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Security.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ServiceModel.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ServiceProcess.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.Encoding.CodePages.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.Encoding.Extensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.Encoding.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.Encodings.Web.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.Json.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Text.RegularExpressions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Channels.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Overlapped.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Tasks.Dataflow.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Tasks.Extensions.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Tasks.Parallel.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Tasks.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Thread.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.ThreadPool.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.Timer.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Threading.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Transactions.Local.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Transactions.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.ValueTuple.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Web.HttpUtility.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Web.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Windows.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.Linq.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.ReaderWriter.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.Serialization.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.XDocument.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.XPath.XDocument.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.XPath.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.XmlDocument.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.XmlSerializer.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.Xml.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "System.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "WindowsBase.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "mscorlib.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "7.0.22.51805"
          },
          "netstandard.dll": {
            "assemblyVersion": "2.1.0.0",
            "fileVersion": "7.0.22.51805"
          }
        },
        "native": {
          "Microsoft.DiaSymReader.Native.amd64.dll": {
            "fileVersion": "14.28.29715.1"
          },
          "System.IO.Compression.Native.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "clretwrc.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "clrgc.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "clrjit.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "coreclr.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "createdump.exe": {
            "fileVersion": "7.0.22.51805"
          },
          "hostfxr.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "hostpolicy.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "mscordaccore.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "mscordaccore_amd64_amd64_7.0.22.51805.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "mscordbi.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "mscorrc.dll": {
            "fileVersion": "7.0.22.51805"
          },
          "msquic.dll": {
            "fileVersion": "2.1.1.0"
          }
        }
      },
      "log4net/2.0.15": {
        "dependencies": {
          "System.Configuration.ConfigurationManager": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/log4net.dll": {
            "assemblyVersion": "2.0.15.0",
            "fileVersion": "2.0.15.0"
          }
        }
      },
      "Microsoft.AspNet.WebApi.Client/5.2.7": {
        "dependencies": {
          "Newtonsoft.Json": "12.0.3",
          "Newtonsoft.Json.Bson": "1.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
            "assemblyVersion": "5.2.7.0",
            "fileVersion": "5.2.61128.0"
          }
        }
      },
      "Microsoft.CSharp/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
        "dependencies": {
          "Microsoft.CSharp": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Private.Uri": "4.3.2",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Json": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
            "assemblyVersion": "5.2.6.0",
            "fileVersion": "5.2.6.0"
          }
        }
      },
      "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Logging/5.6.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Tokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Logging": "5.6.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Security.Cryptography.Cng": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.NETCore.Platforms/2.0.0": {},
      "Microsoft.NETCore.Targets/1.1.3": {},
      "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.205.1": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.205.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.205.1": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.205.1",
          "Microsoft.VisualStudio.Services.Client": "16.205.1",
          "Newtonsoft.Json": "12.0.3",
          "System.ComponentModel.Annotations": "4.4.1"
        },
        "runtime": {
          "lib/netstandard2.0/MS.TF.Pipelines.WebApi.NetStandard.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.205.1": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "4.5.0",
          "System.Data.SqlClient": "4.4.2",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.ProtectedData": "4.5.0",
          "System.Security.Principal.Windows": "4.5.0",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.205.1": {
        "dependencies": {
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.205.1",
          "Newtonsoft.Json": "12.0.3",
          "System.IdentityModel.Tokens.Jwt": "5.6.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Client.Interactive.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.205.33618.2"
          }
        }
      },
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.AccessControl": "4.5.0",
          "System.Security.Principal.Windows": "4.5.0"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "Newtonsoft.Json.Bson/1.0.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.1.20722"
          }
        }
      },
      "runtime.any.System.Collections/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "runtime.any.System.Diagnostics.Tools/4.3.0": {},
      "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
      "runtime.any.System.Globalization/4.3.0": {},
      "runtime.any.System.Globalization.Calendars/4.3.0": {},
      "runtime.any.System.IO/4.3.0": {},
      "runtime.any.System.Reflection/4.3.0": {},
      "runtime.any.System.Reflection.Extensions/4.3.0": {},
      "runtime.any.System.Reflection.Primitives/4.3.0": {},
      "runtime.any.System.Resources.ResourceManager/4.3.0": {},
      "runtime.any.System.Runtime/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.2"
        }
      },
      "runtime.any.System.Runtime.Handles/4.3.0": {},
      "runtime.any.System.Runtime.InteropServices/4.3.0": {},
      "runtime.any.System.Text.Encoding/4.3.0": {},
      "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
      "runtime.any.System.Threading.Tasks/4.3.0": {},
      "runtime.any.System.Threading.Timer/4.3.0": {},
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "dependencies": {
          "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "runtime.win7-x64.runtime.native.System.IO.Compression": "4.3.2"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
      "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "native": {
          "runtimes/win-x64/native/sni.dll": {
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
      "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "runtime.win.System.Console/4.3.1": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Diagnostics.Debug/4.3.0": {},
      "runtime.win.System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "runtime.win.System.Net.Sockets/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Net.NameResolution": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Principal.Windows": "4.5.0",
          "System.Threading": "4.3.0",
          "System.Threading.Overlapped": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "runtime.win.System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "System.Private.Uri": "4.3.2"
        }
      },
      "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.2": {
        "native": {
          "runtimes/win7-x64/native/clrcompression.dll": {
            "fileVersion": "4.6.26622.1"
          }
        }
      },
      "runtime.win7.System.Private.Uri/4.3.0": {},
      "Spectre.Cli/0.49.0": {
        "dependencies": {
          "Spectre.Console": "0.33.0"
        },
        "runtime": {
          "lib/net5.0/Spectre.Cli.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "0.49.0.0"
          }
        }
      },
      "Spectre.Console/0.33.0": {
        "dependencies": {
          "Wcwidth": "0.2.0"
        },
        "runtime": {
          "lib/net5.0/Spectre.Console.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "0.33.0.0"
          }
        }
      },
      "StyleCop.Analyzers/1.1.118": {},
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Collections": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Collections.NonGeneric/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections.Specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.ComponentModel/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.Annotations/4.4.1": {},
      "System.ComponentModel.Primitives/4.3.0": {
        "dependencies": {
          "System.ComponentModel": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.TypeConverter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Configuration.ConfigurationManager/4.5.0": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.5.0",
          "System.Security.Permissions": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.win.System.Console": "4.3.1"
        }
      },
      "System.Data.SqlClient/4.4.2": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.4.0",
          "System.Security.Principal.Windows": "4.5.0",
          "System.Text.Encoding.CodePages": "4.4.0",
          "runtime.native.System.Data.SqlClient.sni": "4.4.0"
        },
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Diagnostics.Debug": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tools": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Diagnostics.Tracing": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Globalization.Calendars": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IdentityModel.Tokens.Jwt/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.any.System.IO": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.IO.FileSystem": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Linq.Expressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Net.Http/4.3.4": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Net.NameResolution/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Principal.Windows": "4.5.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.win.System.Net.Primitives": "4.3.0"
        }
      },
      "System.Net.Sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.win.System.Net.Sockets": "4.3.0"
        }
      },
      "System.ObjectModel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Private.DataContractSerialization/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        }
      },
      "System.Private.Uri/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "runtime.win7.System.Private.Uri": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Extensions": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Reflection.Primitives": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Resources.ResourceManager": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "runtime.any.System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.win.System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "runtime.any.System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Formatters/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Json/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Private.DataContractSerialization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Primitives/4.3.0": {
        "dependencies": {
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Security.AccessControl/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Security.Principal.Windows": "4.5.0"
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Cng/4.5.0": {},
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.OpenSsl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.5.0": {
        "runtime": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.3.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Permissions/4.5.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.Permissions.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.6.26515.6"
          }
        }
      },
      "System.Security.Principal.Windows/4.5.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Overlapped/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "2.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "runtime.any.System.Threading.Timer": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlSerializer/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        }
      },
      "System.Xml.XPath/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XPath.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "Wcwidth/0.2.0": {
        "runtime": {
          "lib/netstandard2.0/Wcwidth.dll": {
            "assemblyVersion": "0.0.0.0",
            "fileVersion": "0.2.0.0"
          }
        }
      }
    }
  },
  "libraries": {
    "AzureDevOpsPolicyConfigurator/2.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/7.0.0": {
      "type": "runtimepack",
      "serviceable": false,
      "sha512": ""
    },
    "log4net/2.0.15": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GahnO9ZgFka+xYcFwAfIFjW+k86P2nxFoaEpH6t3v4hiGj7tv2ksVZphxCVIHmJxoySS0HeU3dgCW+bSCcfD0A==",
      "path": "log4net/2.0.15",
      "hashPath": "log4net.2.0.15.nupkg.sha512"
    },
    "Microsoft.AspNet.WebApi.Client/5.2.7": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/76fAHknzvFqbznS6Uj2sOyE9rJB3PltY+f53TH8dX9RiGhk02EhuFCWljSj5nnqKaTsmma8DFR50OGyQ4yJ1g==",
      "path": "microsoft.aspnet.webapi.client/5.2.7",
      "hashPath": "microsoft.aspnet.webapi.client.5.2.7.nupkg.sha512"
    },
    "Microsoft.CSharp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
      "path": "microsoft.csharp/4.3.0",
      "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z+RMsrkkaEYR+obg9G8Nr2C9HZZAcmzCMqvBAmY94DhCJCW5KxAHyTZjlYBM6fx5tC7blFtYRDogvb0EtTwJMQ==",
      "path": "microsoft.identitymodel.clients.activedirectory/5.2.6",
      "hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.6.nupkg.sha512"
    },
    "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
      "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
      "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Logging/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
      "path": "microsoft.identitymodel.logging/5.6.0",
      "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Tokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
      "path": "microsoft.identitymodel.tokens/5.6.0",
      "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
      "path": "microsoft.netcore.platforms/2.0.0",
      "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
      "path": "microsoft.netcore.targets/1.1.3",
      "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
    },
    "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.205.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TkIBlzwgmw4mFO20r0DZcm5WGGGZhUgE0vfPC9KzlTvqALhoVMYJfpn0ewfib6IofiAMxDd7GFp9GScj4LtOWw==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.205.1",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.205.1.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.205.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ti6Tt348tTdKhqHmlV0+PZ6T+/t6W2qhbKFK+vDZstDD/JetKfO8/O8JcS8HnURdQ+D4Y/n/YjZ8IITUUZb68g==",
      "path": "microsoft.teamfoundationserver.client/16.205.1",
      "hashPath": "microsoft.teamfoundationserver.client.16.205.1.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.205.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3mebm1OWVNeYhtGM1tT/vwRGNeNoH5snt0sYJXPz+TipzlUf7Dv0vaMsizbbI0jZESlWbz61g/lx2yF1eym9qA==",
      "path": "microsoft.visualstudio.services.client/16.205.1",
      "hashPath": "microsoft.visualstudio.services.client.16.205.1.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.205.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qD21TkxtxzJqasOzayCc1fRipRoN/78yQJ8oQCAvsDHD2yiiL+h3QNaCQDK0M9ebM50pTipd0GCH3Jrew8BJiw==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.205.1",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.205.1.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
      "path": "microsoft.win32.registry/4.4.0",
      "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
    },
    "NETStandard.Library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "Newtonsoft.Json/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"
    },
    "Newtonsoft.Json.Bson/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
      "path": "newtonsoft.json.bson/1.0.1",
      "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
    },
    "runtime.any.System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
      "path": "runtime.any.system.collections/4.3.0",
      "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==",
      "path": "runtime.any.system.diagnostics.tools/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
      "path": "runtime.any.system.diagnostics.tracing/4.3.0",
      "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
      "path": "runtime.any.system.globalization/4.3.0",
      "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
      "path": "runtime.any.system.globalization.calendars/4.3.0",
      "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
      "path": "runtime.any.system.io/4.3.0",
      "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
      "path": "runtime.any.system.reflection/4.3.0",
      "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==",
      "path": "runtime.any.system.reflection.extensions/4.3.0",
      "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
      "path": "runtime.any.system.reflection.primitives/4.3.0",
      "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
      "path": "runtime.any.system.resources.resourcemanager/4.3.0",
      "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
      "path": "runtime.any.system.runtime/4.3.0",
      "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
      "path": "runtime.any.system.runtime.handles/4.3.0",
      "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
      "path": "runtime.any.system.runtime.interopservices/4.3.0",
      "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
      "path": "runtime.any.system.text.encoding/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
      "path": "runtime.any.system.text.encoding.extensions/4.3.0",
      "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
      "path": "runtime.any.system.threading.tasks/4.3.0",
      "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "runtime.any.System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==",
      "path": "runtime.any.system.threading.timer/4.3.0",
      "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
      "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
      "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
      "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
      "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
      "path": "runtime.win.microsoft.win32.primitives/4.3.0",
      "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Console/4.3.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vHPXC3B18dxhyipVce8xQT1MQv1o5srYZqBlCNu9p9MNjhgGOntdQh/Xh2X4o7M2F839YUcQiGwu8Q498FyDjg==",
      "path": "runtime.win.system.console/4.3.1",
      "hashPath": "runtime.win.system.console.4.3.1.nupkg.sha512"
    },
    "runtime.win.System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
      "path": "runtime.win.system.diagnostics.debug/4.3.0",
      "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
      "path": "runtime.win.system.io.filesystem/4.3.0",
      "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
      "path": "runtime.win.system.net.primitives/4.3.0",
      "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
      "path": "runtime.win.system.net.sockets/4.3.0",
      "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
    },
    "runtime.win.System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
      "path": "runtime.win.system.runtime.extensions/4.3.0",
      "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "runtime.win7-x64.runtime.native.System.IO.Compression/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QZj+xNVPDGJV1hs/bW5HIhiN/LOpKvmPlJiWr9H2kqucFKD0ZzZJYzJbE1W267QEe/Rl+WXODdmfrZuv8b9tVw==",
      "path": "runtime.win7-x64.runtime.native.system.io.compression/4.3.2",
      "hashPath": "runtime.win7-x64.runtime.native.system.io.compression.4.3.2.nupkg.sha512"
    },
    "runtime.win7.System.Private.Uri/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Q+IBgaPYicSQs2tBlmXqbS25c/JLIthWrgrpMwxKSOobW/OqIMVFruUGfuaz4QABVzV8iKdCAbN7APY7Tclbnw==",
      "path": "runtime.win7.system.private.uri/4.3.0",
      "hashPath": "runtime.win7.system.private.uri.4.3.0.nupkg.sha512"
    },
    "Spectre.Cli/0.49.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GW9suoSurtuZ5ceebvuJzi4xmSRwZUTYJ0bNSIRm6ilp+QCey758Zh6hA3WraSKS/Xs6h2abKKMPM9XKoViueg==",
      "path": "spectre.cli/0.49.0",
      "hashPath": "spectre.cli.0.49.0.nupkg.sha512"
    },
    "Spectre.Console/0.33.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dGHOdW9S0ZI3ltieuDkIuq0vHUZgGjYxhZxvm85/Z6rO1EvrBF4KX7k2j7X+7LVL/OLmCgYEJAdtWzcOqVtdFw==",
      "path": "spectre.console/0.33.0",
      "hashPath": "spectre.console.0.33.0.nupkg.sha512"
    },
    "StyleCop.Analyzers/1.1.118": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==",
      "path": "stylecop.analyzers/1.1.118",
      "hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.Collections.NonGeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "System.Collections.Specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
      "path": "system.componentmodel.annotations/4.4.1",
      "hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
    },
    "System.ComponentModel.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
      "path": "system.componentmodel.primitives/4.3.0",
      "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.TypeConverter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
      "path": "system.componentmodel.typeconverter/4.3.0",
      "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
      "path": "system.configuration.configurationmanager/4.5.0",
      "hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
    },
    "System.Console/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
      "path": "system.console/4.3.0",
      "hashPath": "system.console.4.3.0.nupkg.sha512"
    },
    "System.Data.SqlClient/4.4.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bv5J2EBAdP7FSgehKYN4O6iw1AaZrw4rFFqwt9vZSjRvC70FpwP2d9UG4aTaI2wh3vfrBKK+tjewowGM2Y6c1w==",
      "path": "system.data.sqlclient/4.4.2",
      "hashPath": "system.data.sqlclient.4.4.2.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
      "path": "system.diagnostics.debug/4.3.0",
      "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
      "path": "system.diagnostics.diagnosticsource/4.3.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tools/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
      "path": "system.diagnostics.tools/4.3.0",
      "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
    },
    "System.Diagnostics.Tracing/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
      "path": "system.diagnostics.tracing/4.3.0",
      "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
    },
    "System.Dynamic.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
      "path": "system.dynamic.runtime/4.3.0",
      "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
    },
    "System.Globalization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
      "path": "system.globalization/4.3.0",
      "hashPath": "system.globalization.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Calendars/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
      "path": "system.globalization.calendars/4.3.0",
      "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
    },
    "System.Globalization.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
      "path": "system.globalization.extensions/4.3.0",
      "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
    },
    "System.IdentityModel.Tokens.Jwt/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
      "path": "system.identitymodel.tokens.jwt/5.6.0",
      "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
    },
    "System.IO/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
      "path": "system.io/4.3.0",
      "hashPath": "system.io.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
      "path": "system.io.compression/4.3.0",
      "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
    },
    "System.IO.Compression.ZipFile/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
      "path": "system.io.compression.zipfile/4.3.0",
      "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
      "path": "system.io.filesystem/4.3.0",
      "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
      "path": "system.io.filesystem.primitives/4.3.0",
      "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
    },
    "System.Linq/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
      "path": "system.linq/4.3.0",
      "hashPath": "system.linq.4.3.0.nupkg.sha512"
    },
    "System.Linq.Expressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
      "path": "system.linq.expressions/4.3.0",
      "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
    },
    "System.Net.Http/4.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
      "path": "system.net.http/4.3.4",
      "hashPath": "system.net.http.4.3.4.nupkg.sha512"
    },
    "System.Net.NameResolution/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
      "path": "system.net.nameresolution/4.3.0",
      "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
    },
    "System.Net.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
      "path": "system.net.primitives/4.3.0",
      "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
    },
    "System.Net.Sockets/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
      "path": "system.net.sockets/4.3.0",
      "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
    },
    "System.ObjectModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
      "path": "system.objectmodel/4.3.0",
      "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
    },
    "System.Private.DataContractSerialization/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
      "path": "system.private.datacontractserialization/4.3.0",
      "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
    },
    "System.Private.Uri/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
      "path": "system.private.uri/4.3.2",
      "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
      "path": "system.reflection.emit/4.3.0",
      "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
      "path": "system.reflection.emit.ilgeneration/4.3.0",
      "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
      "path": "system.reflection.emit.lightweight/4.3.0",
      "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
      "path": "system.reflection.extensions/4.3.0",
      "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
      "path": "system.reflection.primitives/4.3.0",
      "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
    },
    "System.Reflection.TypeExtensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
      "path": "system.reflection.typeextensions/4.3.0",
      "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
      "path": "system.runtime.handles/4.3.0",
      "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
      "path": "system.runtime.interopservices/4.3.0",
      "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
    },
    "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
      "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
      "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Numerics/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
      "path": "system.runtime.numerics/4.3.0",
      "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Formatters/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
      "path": "system.runtime.serialization.formatters/4.3.0",
      "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Json/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
      "path": "system.runtime.serialization.json/4.3.0",
      "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Serialization.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
      "path": "system.runtime.serialization.primitives/4.3.0",
      "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
      "path": "system.security.accesscontrol/4.5.0",
      "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
      "path": "system.security.cryptography.cng/4.5.0",
      "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.OpenSsl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-is11qLXIHKIvbTipyB1an8FT1ZKavmgf/qJUSIz7ZP830ALRRhPSt5NhplW0/wMk0tNDQWQLluVap6HsQN4HMg==",
      "path": "system.security.cryptography.openssl/4.4.0",
      "hashPath": "system.security.cryptography.openssl.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
      "path": "system.security.cryptography.protecteddata/4.5.0",
      "hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.X509Certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "System.Security.Permissions/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
      "path": "system.security.permissions/4.5.0",
      "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
      "path": "system.security.principal.windows/4.5.0",
      "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
    },
    "System.Security.SecureString/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
      "path": "system.security.securestring/4.3.0",
      "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
      "path": "system.text.encoding.codepages/4.4.0",
      "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Overlapped/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
      "path": "system.threading.overlapped/4.3.0",
      "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlSerializer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
      "path": "system.xml.xmlserializer/4.3.0",
      "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
      "path": "system.xml.xpath/4.3.0",
      "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
      "path": "system.xml.xpath.xmldocument/4.3.0",
      "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
    },
    "Wcwidth/0.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-H7no2W0vuLJTvSPanlrijtG3UdJNVoeWBOp2a5dJFVa2tqSQuP5GfbJw1xAtPG9agRW310nFTUUsyPz5tuVIxw==",
      "path": "wcwidth/0.2.0",
      "hashPath": "wcwidth.0.2.0.nupkg.sha512"
    }
  },
  "runtimes": {
    "win10-x64": [
      "win10",
      "win81-x64",
      "win81",
      "win8-x64",
      "win8",
      "win7-x64",
      "win7",
      "win-x64",
      "win",
      "any",
      "base"
    ],
    "win10-x64-aot": [
      "win10-aot",
      "win10-x64",
      "win10",
      "win81-x64-aot",
      "win81-aot",
      "win81-x64",
      "win81",
      "win8-x64-aot",
      "win8-aot",
      "win8-x64",
      "win8",
      "win7-x64-aot",
      "win7-aot",
      "win7-x64",
      "win7",
      "win-x64-aot",
      "win-aot",
      "win-x64",
      "win",
      "aot",
      "any",
      "base"
    ]
  }
}
tools\bin\Spectre.Console.dll
md5: 0F4E6B3C4ACAB05D4D1A32312F63F952 | sha1: 37B0AE92EE9611537344B038432AE840427EC5F1 | sha256: B3007172D086AED701A65D576DDCA6BE702C2918D28A0DE9A08D3C7CA2E8B7A2 | sha512: 020F631B692699E0877CBE4A6894670D8FA7516739AA8D817D8954CC39620A2D5AC44DAD4E8DCF2E10C34879C656759B6905E11574B34FBBED3C4F9EE6EACAAF
tools\bin\System.IO.UnmanagedMemoryStream.dll
md5: B4A3952F265BA1089D0D6BEF07C41CCC | sha1: 0CD58756BF9E6FC4F87ACF1582A65993B0D93C25 | sha256: 8A2A3A6131D5CFB1A82A5C3B22B770EE20F57CB0AE6F51F2772A764D4E01FA3F | sha512: 2AB0ED95540219D394C490D4A273A72C12FC0253744950CB8F625627FA097D2BEB7573AA22DFE2C974FB479080FDADECCECFDFFD638047D82ED535509D87DECA
tools\bin\System.Runtime.Serialization.Formatters.dll
md5: C3B413D5E38410FBD33612ADEDD57427 | sha1: 36A9124A3EAF754AD8ECB8028786DEC1EEE02BAF | sha256: 09E481D080B6857432FB6FA3022B5EA4E7272D02401B59FFCC3ED57F1FFB35B7 | sha512: B2EABB23C94E942AD5F4A18E270725A13F4426478CCA123E52203D20D1074DE73ED1F2EBE0C7578EEA0AC2ADFD700D235FD6ED45E5212A69840EA42B35DFB444
tools\bin\AzureDevOpsPolicyConfigurator.dll
md5: CE8C7A167DF11BE62311407982D3FDF9 | sha1: 9D569440C3C56BF298AA80B4EDE49D3A3014A5AE | sha256: 1A8DDE9BAD69CD4B6D5B1371DB17149D7E28645D1E7300B3C5123167C1E2123A | sha512: 6BC3B1D066E85C87A4717739CFEABBE795FD8707B2A0215452EFB5EAA343D500C0362B732E95369C3B8CF2B032598F4F297E1693FF89C159D7210E95A5AEAD61
tools\bin\System.AppContext.dll
md5: 2381927315046185B8C8477CE3483AD5 | sha1: 2A59B31030FD138265D249A782C1E31EE85E1923 | sha256: 930152ED71554BF75B9A4D36D034EB50DD5935DBDCF1DA0D8B90F2CC615D68C2 | sha512: 744297F411746AE1DC37FD5C3796B4AD157EF074F28C6F2136B087EA8C36FF756B6840B6493D09DBC53CD01CB16317E3A2A1834E0D0F3424E36879343205AE94
tools\bin\System.Linq.dll
md5: 94B9E483B9B3DE4F0C810DD6856AFC62 | sha1: 839BCC905EF6D922E07AB7DBCBC1F304165593F0 | sha256: F23D94FA4B2B8B0441C94421D3628FFF97ABC2C150A5E88EFEA16ABE7934CF6F | sha512: CFEFE4DC7D608B498D81456ADC3851689FA4DF4B77DAB02627BB7CA104D4B902BE534859C76265E1A2CA74C563F581588600DA52F0BA16E51A1CC524E8E8AC8C
tools\bin\System.Runtime.Serialization.Json.dll
md5: 6A29773AACFCAFF66375B7651A4CEEB9 | sha1: 06754DC34C180CFE660E1F4CA7E9F483A2005EC6 | sha256: 5CF4F5D39FFC4D4A5C579DF8A184E86233A8D173AF9F415C88034FA59588AE71 | sha512: B7612E58E70356E9C85651321D8F301569D15A7643F267206E7A31E55F644174099937D63BBFAF7099834800A6EF3FD8BC81FFE84836BB9F6261F31DEDA2CD75
tools\bin\AzureDevOpsPolicyConfigurator.exe
md5: 71C148E47E077F312345C96F71486D43 | sha1: 91555BE814FD8541CD894ABF00C26B796166A241 | sha256: F5D067A3BFD8351C292529FF7570564B32D9D4060B08524F3701BB2F8E3CE4E6 | sha512: 296951FD45339BD82C3DC657127BC37D4B82F0D84682629992895769F9E2EC7BC1643EF39CC60E3A5737D9954F45464DC55960B11AD888AA7EF1D4C7AEB1E5D1
tools\bin\System.Buffers.dll
md5: 80E743C40B9F0C0EB205CC7D65C2BE9A | sha1: B63863012736FB5CA90005B33CEEB4099D9FB43F | sha256: 3748FF59945E67F1680B8A8C3B9F6DB634183D417F7B7F00A363105948200769 | sha512: AF5FADE29436819F1EFE40F3A8CE440F8F06710496159F1D6DAFCB42E8008EC15900F6FF3359FE8FFF78F4ACCB6F3441AE62BD9EA8D227B8958C0342A1C92018
tools\bin\System.Linq.Expressions.dll
md5: D2426DD8A3044B121D9F854F29477272 | sha1: C71E95E1BA160CF9C2E61FD95807140C4BEAF694 | sha256: A39B53A8854DF80977F495F3C939653412105A83FDEA166A0B32E64F84EF5E4A | sha512: C26356448232B0DC00E5F08946CBB2A05AEB330F1B1FF17CF2B06E0513B181F6F449FF248104CF9114E8113AC6449710FCACD2E74973067C84848271FFFF0950
tools\bin\System.Runtime.Serialization.Primitives.dll
md5: A38B6B5FFC02DEFBDD8B6099AEEB45CB | sha1: 527113BB8792A844FB4EA138469B15D2E7294525 | sha256: C672483727D20F57DFFAFEF73F8F606F39577213E7084EEF1A9C9A1B539231E2 | sha512: E5A5978BD26E1714ACAB9D8D20C1192090CDDF5AC152123738D4D6E3349788E643D730C31E68B2DB8886DEAC4E35649B4DA7CF9E58F1907DE25F4B173435D505
tools\bin\AzureDevOpsPolicyConfigurator.pdb
 
tools\bin\System.Collections.Concurrent.dll
md5: 7A7B342E3DFD81DE717F37E0E5AC02AA | sha1: FBC3C5A222DB3BD499C5329FAD26768AA8859DC2 | sha256: BD6F3D211099163BC4A37B063A9704D6E855A7C6B813CE95780E14478F7238EF | sha512: 34AC8CA954AFAF16AFE98FD36F1BFEAB45471952822389099785EB138230BF9E680CD706D7787A9E1DA22C1374642A58644765A8498651DF756EB35E8B61C8FB
tools\bin\System.Linq.Parallel.dll
md5: 57740D6A23A57ADFF8BFED9F1E85025B | sha1: 486FE6618C2E57459E1D1ADD702B81AC81C573CD | sha256: FBE8111E65AB7162DFA6023BA9977284411CE891B7E115C0E11B8EA8E7A77D07 | sha512: 3BC6EEB031DC28897B94C7332175639574275706495EFB88EE92249B4CCF6FA0DFDFB5B9E6E4A6B094D4D3B141A15389338D0FEA75221EF520C77AE098DF521D
tools\bin\System.Runtime.Serialization.Xml.dll
md5: 756166E810A87E62C3EB42ABDEB1FF91 | sha1: EE49805F11070E2C1473382557BD507FA896FFD8 | sha256: D0226AD2560E158E14B9866E2E056C9F5924930BD437E8BE6B923ABC4E704177 | sha512: B245601CFE7892CAFC62D85AC3FBF853F0267F31462486631916FABA55A96DE3F502C637CB2A985F1E3FF089BC997BA7655165F779438AE2F01961B0CC1A5A3E
tools\bin\AzureDevOpsPolicyConfigurator.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net7.0",
    "includedFrameworks": [
      {
        "name": "Microsoft.NETCore.App",
        "version": "7.0.0"
      }
    ],
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\bin\System.Collections.dll
md5: E056170B15152EC7D96204E6BC0FB6C7 | sha1: 66FF674E3C6EEB8495B975001DDAED3A18E7A0C8 | sha256: A77DADBA30C53A8643ABC980352642B28830EE8206E8A158993DFD2E4B61FC41 | sha512: BA5EED899A5FA1A466710372132A9F2844ABEF663E582F21F6401163FAF5001778D9365921945E062528DF33828AF6FE19A9F0998DF47B150535AEE9BCD91026
tools\bin\System.Linq.Queryable.dll
md5: 80596E8170CFAE87C17F8A26BCA482F7 | sha1: 22F3AE3050C0930B651B4DC76568470829763B07 | sha256: A60E38F8F1499AD114DCBC4DE2DEFD3C7ABDCBD9D970DDEC9CF70EF3A7C9BC78 | sha512: 6CB389CFEA13B7C9AB1EEAEE671EEC450ADBD1B74F38616E7DFA237612ED59B8C9D4014A3C5F98F8955FF39DE8601C500F3D5DE530458FBA6435631424E26A98
tools\bin\System.Security.AccessControl.dll
md5: B11BA2A7CD3CFE34872BA7C099098484 | sha1: E17BA0AD53CCCCCD0969BEE1BE47FC1F7050BA81 | sha256: 650462CCC83AE464AD13EDAA4AC8D54BC16BD3815D7C5D45E6CA7C4085B85ABB | sha512: CB9C2C9C75F4702B1E394B66A8D3BE826232D7A05D7A57A046944CCBA913A2BF1C311C6D80A3C9A1CADEFE7B1706F137CB6C9FDDA0957C8B47EADDE975584836
tools\bin\AzureDevOpsPolicyConfigurator.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>AzureDevOpsPolicyConfigurator</name>
    </assembly>
    <members>
        <member name="T:AzureDevOpsPolicyConfigurator.AuthMethod">
            <summary>
            Authentication Methods.
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.AuthMethod.Ntlm">
            <summary>
            Ntlm
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.AuthMethod.OAuth">
            <summary>
            OAuth
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.AuthMethod.Basic">
            <summary>
            Basic with username / password or wit PAT
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.AuthMethod.AzureActiveDirectory">
            <summary>
            Azure Active Directory
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.BaseSettings">
            <summary>
            BaseSettings class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.BaseSettings.CollectionUrl">
            <summary>
            Gets or sets the collection url.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.BaseSettings.Auth">
            <summary>
            Gets or sets the authentication mode.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.BaseSettings.Password">
            <summary>
            Gets or sets the password.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.BaseSettings.User">
            <summary>
            Gets or sets the user.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.CommandBase`1">
            <summary>
            CommandBase class.
            </summary>
            <typeparam name="TSettings">Settings type</typeparam>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.CommandBase`1.Validate(Spectre.Cli.CommandContext,`0)">
            <summary>
            Validate base method.
            </summary>
            <param name="context">Context</param>
            <param name="settings">Settings</param>
            <returns>ValidationResult</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ExecuteCommand">
            <summary>
            ExecuteCommand class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ExecuteCommand.ExecuteAsync(Spectre.Cli.CommandContext,AzureDevOpsPolicyConfigurator.ExecuterSettings)">
            <summary>
            Executes the PolicyExecuter.
            </summary>
            <param name="context">Context</param>
            <param name="settings">Settings</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ExecuterCommandBase">
            <summary>
            Executer command base class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ExecuterCommandBase.Validate(Spectre.Cli.CommandContext,AzureDevOpsPolicyConfigurator.ExecuterSettings)">
            <inheritdoc/>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.GenerateCommand">
            <summary>
            GenerateCommand class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.GenerateCommand.ExecuteAsync(Spectre.Cli.CommandContext,AzureDevOpsPolicyConfigurator.GeneratorSettings)">
            <summary>
            Executes the StructureGenerator.
            </summary>
            <param name="context">Context</param>
            <param name="settings">Settings</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.WhatIfCommand">
            <summary>
            WhatIfCommand class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.WhatIfCommand.ExecuteAsync(Spectre.Cli.CommandContext,AzureDevOpsPolicyConfigurator.ExecuterSettings)">
            <summary>
            Executes the WhatIfExecuter.
            </summary>
            <param name="context">Context</param>
            <param name="settings">Settings</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ExecuterSettings">
            <summary>
            ExecuterSettings class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.ExecuterSettings.Input">
            <summary>
            Gets or sets the input directory.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.ExecuterSettings.Verbosity">
            <summary>
            Gets or sets a value indicating whether the output should be verbose.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.GeneratorSettings">
            <summary>
            GenerateCommand settings.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.GeneratorSettings.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.GeneratorSettings"/> class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.GeneratorSettings.Destination">
            <summary>
            Gets or sets the out directory.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.LogLevel">
            <summary>
            Log level
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.LogLevel.Info">
            <summary>
            Log level: INFO
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.LogLevel.Debug">
            <summary>
            Log level: Debug
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.LogLevel.Warn">
            <summary>
            Log level: WARN
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.LogLevel.Error">
            <summary>
            Log level: ERROR
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Data.ApplyTo">
            <summary>
            ApplyTo class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.ApplyTo.Projects">
            <summary>
            Gets or sets the projects to apply to.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.ApplyTo.Repositories">
            <summary>
            Gets or sets the repositories to apply to.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Data.MatchKind">
            <summary>
            MatchKind enumeration.
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.Data.MatchKind.Exact">
            <summary>
            Exact
            </summary>
        </member>
        <member name="F:AzureDevOpsPolicyConfigurator.Data.MatchKind.Prefix">
            <summary>
            Prefix
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Data.Policy">
            <summary>
            Policy class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Type">
            <summary>
            Gets or sets the policy name or id.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.PolicyType">
            <summary>
            Gets or sets the policy type.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.HasSubType">
            <summary>
            Gets a value indicating whether the policy has SubType defined.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.SubTypePropertyName">
            <summary>
            Gets or sets the policy subtype property name.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.SubTypePropertyValue">
            <summary>
            Gets or sets the policy subtype property value.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.UniquenessDefinition">
            <summary>
            Gets the UniquenessDefinition for the policy.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.TypeString">
            <summary>
            Gets the TypeString for the policy.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Project">
            <summary>
            Gets or sets the policy project name or project id.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Branch">
            <summary>
            Gets or sets the policy branch name.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.ScopeBranch">
            <summary>
            Gets the ScopeBranch with 'refs/heads/' prefix.
            This can be different from <see cref="P:AzureDevOpsPolicyConfigurator.Data.Policy.Branch"/> for <see cref="P:AzureDevOpsPolicyConfigurator.Data.Policy.MatchKind"/>.Prefix.
            /* or * at the end will be truncated. Otherwise /* or * are also included in the branch name for the policy.
            e.g. refs/heads/release/abc* -> refs/heads/release/abc
            e.g. refs/heads/release/* -> refs/heads/release
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.MatchKind">
            <summary>
            Gets the match kind of a branch.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Branches">
            <summary>
            Gets or sets the branches.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Repository">
            <summary>
            Gets or sets the repository name or repository id.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Repositories">
            <summary>
            Gets or sets a list of repository names or repository ids.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.IsBlocking">
            <summary>
            Gets or sets a value indicating whether a blocking is needed.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.Policy.Settings">
            <summary>
            Gets or sets the policy settings.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.Policy.PrepareSettingsWithScopeAndSubType(System.Guid,AzureDevOpsPolicyConfigurator.Data.Policy)">
            <summary>
            Returns the Settings property and adds scope
            </summary>
            <param name="repositoryId">Repository id</param>
            <param name="policy">Policy</param>
            <returns>Settings JObject</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.Policy.PolicyEquals(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Retuns true if every property defined in Settings in this object equals the equivalent PolicyConfigration.Settings property,
            and the IsBlocking property equals the PolicyConfiguration.IsBlocking
            and the PolicyConfiguration.IsEnabled is true and PolicyConfiguration.IsDeleted is false,
            otherwise false.
            </summary>
            <param name="serverConfiguration">Azure DevOps PolicyConfiguration</param>
            <returns>boolean</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.Policy.PreparePolicyType(System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType})">
            <summary>
            Prepares the PolicyType
            </summary>
            <param name="types">Types</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.Policy.JsonEquals(Newtonsoft.Json.Linq.JObject)">
            <summary>
            Deepcompares the 2 JObject, and ignores scope property.
            </summary>
            <param name="serverSettings">Server settings</param>
            <returns>Boolean</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition">
            <summary>
            Policies class.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.IgnoreTypes">
            <summary>
            Gets or sets the list of policy type which should be ignored.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.AllowDeletion">
            <summary>
            Gets or sets a value indicating whether deletion is allowed.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.ApplyTo">
            <summary>
            Gets or sets the apply to restriction.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.Policies">
            <summary>
            Gets or sets gets the list of policies.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.IgnoreType(System.Guid,System.Collections.Generic.List{Microsoft.TeamFoundation.Policy.WebApi.PolicyType})">
            <summary>
            Determines whether the repository is allowed to be touched.
            </summary>
            <param name="guid">Guid to check</param>
            <param name="policyTypes">types</param>
            <returns>boolean</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.IsRepositoryAllowed(Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository)">
            <summary>
            Determines whether the repository is allowed to be touched.
            </summary>
            <param name="repostiroty">GitRepository</param>
            <returns>boolean</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Data.PolicyDefinition.IsProjectAllowed(Microsoft.TeamFoundation.Core.WebApi.TeamProjectReference)">
            <summary>
            Determines whether the repository is allowed to be touched.
            </summary>
            <param name="project">Team project</param>
            <returns>boolean</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Exceptions.ArgumentValidationException">
            <summary>
            Argument Validation Exception.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Exceptions.ArgumentValidationException.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Exceptions.ArgumentValidationException"/> class.
            </summary>
            <param name="message">Message</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ConnectionProvider">
            <summary>
            Connection Provider class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ConnectionProvider.GetConnection(AzureDevOpsPolicyConfigurator.BaseSettings)">
            <summary>
            Gets the connection.
            </summary>
            <param name="arguments">Command line arguments.</param>
            <returns>Returns connection.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.FileReader">
            <summary>
            FileReader class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.FileReader.GetFileContent(System.String)">
            <inheritdoc/>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.JsonFileWriter">
            <summary>
            JsonFileWriter class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.JsonFileWriter.SerializeAndWrite``1(``0,System.String)">
            <summary>
            Serialize Object and write to file.
            </summary>
            <typeparam name="T">The type of object to serialize</typeparam>
            <param name="obj">Object to serialize</param>
            <param name="filePath">File path</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.JsonSerializer">
            <summary>
            JsonSerializer class
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.JsonSerializer.Deserialize``1(System.Collections.Generic.IEnumerable{System.String})">
            <inheritdoc/>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.JsonSerializer.Deserialize``1(System.String)">
            <inheritdoc/>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.JsonSerializer.Serialize``1(``0)">
            <inheritdoc/>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.JsonSerializer.Clone``1(``0)">
            <inheritdoc/>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logger">
            <summary>
            Logger class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logger.Info(System.String)">
            <inheritdoc/>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logger.Debug(System.String)">
            <inheritdoc/>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logger.Warn(System.String)">
            <inheritdoc/>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.PolicyExtension">
            <summary>
            Extension class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetPolicyType(System.String,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType})">
            <summary>
            Gets the type id by name or id if exists.
            </summary>
            /// <param name="typeIdOrName">type id or name</param>
            <param name="types">type array</param>
            <returns>PolicyType</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetType(System.String,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType})">
            <summary>
            Gets the type by name or id if exists.
            </summary>
            /// <param name="typeIdOrName">type id or name</param>
            <param name="types">type array</param>
            <returns>nullable guid</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetMatchKind(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Returns the repository id from the settings.
            </summary>
            <param name="configuration">Policy configuration</param>
            <returns>repository id</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetBranch(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Returns the branch name id from the settings.
            </summary>
            <param name="configuration">Policy configuration</param>
            <returns>Branch name</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetBranchFriendlyName(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Returns the friendly branch name from the settings.
            </summary>
            <param name="configuration">Policy configuration</param>
            <returns>Friendly branch name</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.DoesSubTypeMatch(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration,AzureDevOpsPolicyConfigurator.Data.Policy)">
            <summary>
            Returns the repository id from the settings.
            </summary>
            <param name="configuration">Policy configuration</param>
            <param name="policy">Policy</param>
            <returns>bool</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.FlattenBranches(System.Collections.Generic.IEnumerable{AzureDevOpsPolicyConfigurator.Data.Policy},AzureDevOpsPolicyConfigurator.IJsonSerializer)">
            <summary>
            Flattens the policies by branches.
            </summary>
            <param name="policies">Policies</param>
            <param name="serializer">Json serializer</param>
            <returns>Flattened policies</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.FlattenRepositories(System.Collections.Generic.IEnumerable{AzureDevOpsPolicyConfigurator.Data.Policy},AzureDevOpsPolicyConfigurator.IJsonSerializer)">
            <summary>
            Flattens the policies by repositories.
            </summary>
            <param name="policies">Policies</param>
            <param name="serializer">Json serializer</param>
            <returns>Flattened policies</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.PolicyExtension.GetRepositoryId(Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Returns the branch from the settings.
            </summary>
            <param name="configuration">Policy configuration</param>
            <returns>branch</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.IConnectionProvider">
            <summary>
            Connection Provider Interface
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IConnectionProvider.GetConnection(AzureDevOpsPolicyConfigurator.BaseSettings)">
            <summary>
            Gets the connection
            </summary>
            <param name="arguments">Arguments</param>
            <returns>Returns a VssConnection</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.IFileReader">
            <summary>
            IFileReader Interface.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IFileReader.GetFileContent(System.String)">
            <summary>
            Loads file content in UTF8.
            </summary>
            <param name="path">File path</param>
            <returns>Returns the file content</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.IJsonSerializer">
            <summary>
            JsonSerializer interface.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IJsonSerializer.Deserialize``1(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Deserializes an object.
            </summary>
            <typeparam name="T">Type</typeparam>
            <param name="contents">String contents to merge and deserialize</param>
            <returns>A deserialized object</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IJsonSerializer.Deserialize``1(System.String)">
            <summary>
            Deserializes an object.
            </summary>
            <typeparam name="T">Type</typeparam>
            <param name="content">String content to deserialize</param>
            <returns>A deserialized object</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IJsonSerializer.Serialize``1(``0)">
            <summary>
            Serializes an object.
            </summary>
            <typeparam name="T">Type</typeparam>
            <param name="obj">Object to serialize</param>
            <returns>Serialized string</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.IJsonSerializer.Clone``1(``0)">
            <summary>
            Clones an object.
            </summary>
            <typeparam name="T">Type of object</typeparam>
            <param name="obj">Object to clone</param>
            <returns>Cloned object</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ILogger">
            <summary>
            ILogger interface.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ILogger.Info(System.String)">
            <summary>
            Logs an information message.
            </summary>
            <param name="message">Message to log</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ILogger.Debug(System.String)">
            <summary>
            Logs a debug message.
            </summary>
            <param name="message">Message to log</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ILogger.Warn(System.String)">
            <summary>
            Logs a warn message.
            </summary>
            <param name="message">Message to log</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.ILogicExecuter`1">
            <summary>
            Logic Executer Interface.
            </summary>
            <typeparam name="T">Argument type</typeparam>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.ILogicExecuter`1.Execute(`0)">
            <summary>
            Execute Logic.
            </summary>
            <param name="arguments">Arguments</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.BranchPolicies">
            <summary>
            BranchPolicies class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.BranchPolicies.#ctor(System.String,System.Collections.Generic.IEnumerable{AzureDevOpsPolicyConfigurator.Data.Policy})">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Logic.BranchPolicies"/> class.
            </summary>
            <param name="branch">Branch</param>
            <param name="policies">policies</param>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Logic.BranchPolicies.Branch">
            <summary>
            Gets the Branch.
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Logic.BranchPolicies.Policies">
            <summary>
            Gets the Policies.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter">
            <summary>
            PolicyExecuter class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter.#ctor(AzureDevOpsPolicyConfigurator.IJsonSerializer,AzureDevOpsPolicyConfigurator.IFileReader,AzureDevOpsPolicyConfigurator.IConnectionProvider,AzureDevOpsPolicyConfigurator.ILogger)">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter"/> class.
            </summary>
            <param name="serializer">Json serializer</param>
            <param name="reader">File reader</param>
            <param name="connectionProvider">Connection provider</param>
            <param name="logger">Logger</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter.CreatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy)">
            <summary>
            Creates a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter.UpdatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Updates a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <param name="serverPolicy">Azure DevOps policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuter.DeletePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Guid,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Deletes a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="projectId">Team project id</param>
            <param name="policy">Policy</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase">
            <summary>
            ApplyPolicyset class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.#ctor(AzureDevOpsPolicyConfigurator.IJsonSerializer,AzureDevOpsPolicyConfigurator.IFileReader,AzureDevOpsPolicyConfigurator.IConnectionProvider,AzureDevOpsPolicyConfigurator.ILogger)">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase"/> class.
            </summary>
            <param name="serializer">JsonSerialzer</param>
            <param name="reader">FileReader</param>
            <param name="connectionProvider">Connection provider</param>
            <param name="logger">Logger</param>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.Serializer">
            <summary>
            Gets serializer
            </summary>
        </member>
        <member name="P:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.Logger">
            <summary>
            Gets the logger.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.Execute(AzureDevOpsPolicyConfigurator.ExecuterSettings)">
            <summary>
            Executer
            </summary>
            <param name="arguments">Arguments</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.CreatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy)">
            <summary>
            Creates a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.UpdatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Updates a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <param name="serverPolicy">Azure DevOps policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.DeletePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Guid,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Deletes a policy in Azure DevOps.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="projectId">Team project id</param>
            <param name="policy">Policy</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.PolicyExecuterBase.PolicyPriorityComparer">
            <summary>
            Policy priority comparer.
            </summary>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.StructureGenerator">
            <summary>
            Structure Generator class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.StructureGenerator.#ctor(AzureDevOpsPolicyConfigurator.JsonFileWriter,AzureDevOpsPolicyConfigurator.IConnectionProvider)">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Logic.StructureGenerator"/> class.
            </summary>
            <param name="connectionProvider">Connection Provider</param>
            <param name="jsonFileWriter">JsonFileWriter instance</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.StructureGenerator.Execute(AzureDevOpsPolicyConfigurator.GeneratorSettings)">
            <summary>
            Generates the policy structure in the given folder.
            </summary>
            <param name="arguments">Main arguments</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter">
            <summary>
            WhatIfExecuter class.
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter.#ctor(AzureDevOpsPolicyConfigurator.IJsonSerializer,AzureDevOpsPolicyConfigurator.IFileReader,AzureDevOpsPolicyConfigurator.IConnectionProvider,AzureDevOpsPolicyConfigurator.ILogger)">
            <summary>
            Initializes a new instance of the <see cref="T:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter"/> class.
            </summary>
            <param name="serializer">Json serializer</param>
            <param name="reader">File reader</param>
            <param name="connectionProvider">Connection provider</param>
            <param name="logger">Logger</param>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter.CreatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy)">
            <summary>
            Logs the change.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter.UpdatePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Collections.Generic.IEnumerable{Microsoft.TeamFoundation.Policy.WebApi.PolicyType},System.Guid,Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository,AzureDevOpsPolicyConfigurator.Logic.BranchPolicies,AzureDevOpsPolicyConfigurator.Data.Policy,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Logs the change.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="types">Types</param>
            <param name="projectId">Team project id</param>
            <param name="repository">Git repository</param>
            <param name="currentPolicy">Branch policy</param>
            <param name="policy">Policy</param>
            <param name="serverPolicy">Server policy</param>
            <returns>Task</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Logic.WhatIfExecuter.DeletePolicy(Microsoft.TeamFoundation.Policy.WebApi.PolicyHttpClient,System.Guid,Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration)">
            <summary>
            Logs the change.
            </summary>
            <param name="policyClient">Policy client</param>
            <param name="projectId">Team project id</param>
            <param name="policy">Policy</param>
        </member>
        <member name="T:AzureDevOpsPolicyConfigurator.Program">
            <summary>
            Programm class
            </summary>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Program.Main(System.String[])">
            <summary>
            Main entrypoint
            </summary>
            <param name="args">Main arguments</param>
            <returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the asynchronous operation.</returns>
        </member>
        <member name="M:AzureDevOpsPolicyConfigurator.Program.Run(System.String[],System.Boolean)">
            <summary>
            Runs the program.
            </summary>
            <param name="args">arguments</param>
            <param name="propagateException">Propagate exception</param>
            <returns>int</returns>
        </member>
    </members>
</doc>
tools\bin\System.Collections.Immutable.dll
md5: 8124502629293E5BD0768EEA72D7BED5 | sha1: 51D87DEFFE8BF0D9EBE5E116777F123C89B36FBF | sha256: 47105E3D771F8989299B6D6D6459B7B18A3B7F203235A78FBEFAEB20608C2998 | sha512: 38611FE3C8A980C28AD7E72630AD00279020C16A411F1B7740311D8126B80996BCCDE26552D24FE10906A524DA2BEE9B69715D5EE2552553D31F9B8ED4EB58F9
tools\bin\System.Memory.dll
md5: 9401BDC5E5E65A19A1FE677C111D0F83 | sha1: C625C485047E603C6285440418A681CD71BE687B | sha256: A6A6F970DB8396B929FD53F4D74625F2A58B216187E9D372D67CAC0A2457E75E | sha512: 0129A1C8A26FB57B0BC4C3C2CF377E69F97AC7D4885E7CEF25421C7AF814D9BA286BD29A17E7C9330A09DC2D7FE386C4CFA387ABAA278D75A3D9A98E75886AB0
tools\bin\System.Security.Claims.dll
md5: 756E6CEB4F1BD0B09CBBB5BFCE1953B7 | sha1: 054117ADB1AE5A1F90642F6C7FD8263D12AB3E6A | sha256: 0EB048143BF83189400C9E309D8B6862EE94605FA1AA4F122AE3EBAE3A533716 | sha512: 29DE8B9945AA9A47C68C763991D9F7C08408A2E5CDCA47E407D6E548FFB1E0B5E443CD403C0A902D541AEC573B19028B9985ED82EAC64C4BD2056CF7D73328E4
tools\bin\clrcompression.dll
md5: 2D6A9A1EE6CA0A1493FDA29B47D33FDC | sha1: 03B19820092794B17A3CF4CEE511B76E786CB1C0 | sha256: 8E2566436B0F166D06116EDA669CB741D60D0B0192CC2668387F371916C321FE | sha512: D7F8948F3B5E9685DD817AB6DFAC9A8B3637DD59253C98C52A2E1128306D4E9B07C7451B73ACEB2F18D9AB8785AE06DA1C72EE656E2EA58030E9A6254D78921C
tools\bin\System.Collections.NonGeneric.dll
md5: E08306E5FEEA2EAB978ED888F05A34CC | sha1: 4D433D71D9C7420E5103718437C8851D1878844A | sha256: 1E9506A70AA54EFA288615ADB84848755A80A0A8A285621B3482CEFE39F966F2 | sha512: 2CED5D4397807E93B1B325A7E42F585E8A4D7335CCB8055D41807205258E89FE3A928F8B1A1426FC6A5370BA78F2E8C51788F11EDB2C752A8B8293AA0D418378
tools\bin\System.Net.dll
md5: 50D436F4550E2B6C04508B925A3C8262 | sha1: 832B9EDF9CDB966574B03A842A3E7D7FF195B8C7 | sha256: 46EA8ADF32240A1ABCD297F80F1F8B9DC66A7FC4E780413B63E4E51399FC05FF | sha512: 5E39E9BEBD8F168A9006F3710BCEC8392A5E9EB9F550B35105BC3B945BADA353F769E3D920A920ABC7CF36943013FAC81A04C585883352E334D18897DA6DE8D9
tools\bin\System.Security.Cryptography.Algorithms.dll
md5: EDD66642736597F8065DC9A702E86914 | sha1: 7ECE4107617F5997342BBABB5C4231DC507C2AFC | sha256: 8BC471BDFB572D849E3C765B8BBF87C47166593CF35DAAB0BF45A441035E705A | sha512: 654CA737491537193E7AC9F7A4501CBC59D576D77E93DF3877167B3393FAC3292B1D816941BBA48465B5B63571C603FE702529173C3A284A272A4963F8C00271
tools\bin\clretwrc.dll
md5: ED5150CA6507844145DA962265E3AF00 | sha1: 9D9ED832AE1ED6A1203E0899D330E7A2BCFD188A | sha256: A5AF61D22674D145134B212483227B7EF2408311A81F6D4EF1C5094D483E50E4 | sha512: 1AF47820435A21C060431AF6C9160BC01B5AA7F96A98C8E4E67A5F289540BB92F6C1738EBBA4DB497C0E77BC07D752F908584BA636C3D00E4A83C1F05AA6C923
tools\bin\System.Collections.Specialized.dll
md5: 8B7CE9BB7D398BA790D0D8D76243301C | sha1: B8991A694EC7BC33FA9D1774F13227C652641916 | sha256: 991BEC6FC3A15487E89E86EBC10FE3A9CC3B46F81BBEC591BCBA6FCF511066D4 | sha512: D947C0C5EB1A9088CACA0FB07C8036ECC1BD76E5498BD0552BA8F44A6F9CB16F906609DAF920907F86A7B64D08C13BC87A57DC92D35A228EDCC9BA9179C41C2C
tools\bin\System.Net.Http.dll
md5: 8ECB1048A7E5FCFD8C88469C171DD9E5 | sha1: 0BE4485A7097855ACF0496C14FCE65B6E28CA72A | sha256: 63583C89544F1280450C7C8194718D22071F573BE75CE7F015313535C62554BB | sha512: 062DA35F94FC960CA788372AE9FAC21CC267CBB94B6747708A274D74B4A49B4C9A8FB198E576D6B5CB875293E9DD17E752D5763C1DAAA097534223FAF9C913BA
tools\bin\System.Security.Cryptography.Cng.dll
md5: 1E935B1C1A95C76C26B3C295054B5AB2 | sha1: 7780FC4A58DDA003EAB7C2D6FA1CCC8480EF2FF7 | sha256: A0B0BEDA770F858773DF29F2867A0F5335ACF8D2F92179041A258056C28621C0 | sha512: 7064579A8AE5E14820533F2185007BC6DD7F507823E3B6F5E4686D6636EE6BE075A8E633A97FA0C9C5944A8B84E093BF8EC22E71E4F1B0A4F3348C8EB52DA0C9
tools\bin\clrgc.dll
md5: EA296264625F4173C8A7939710699903 | sha1: 9941A0E7CEDA3248C10D90EF510FDFAE24F45F09 | sha256: F9F497CF990544F316F877FAACBD873843304F69829547B92933C70A5500F346 | sha512: A233403D29219A1B604DB8EDBD53E057D061C9B4439FCF5AB0D5E8474170D1357396286F7F742BB1FC82ED38AF8F35BF2AD6B53C4C6258C3CE91A99EBC084F33
tools\bin\System.ComponentModel.Annotations.dll
md5: A41C5DB3A9E90C370BAC3DECE165D1A7 | sha1: 03BA9AF087D82DDB86A164D6E710F245F28DF34A | sha256: BACD27692BCB95023A4B9A7D3CFE10F3994A9C1F2AC85BCFC3380633DE1EBE2B | sha512: 0B3C458F6864F38407F541330579B3482666525A6DA39A909155340792AE8567D93E8F284667D0C9D0F5323DA15D717B55BCE0E491F1D5A583D2AAB058926480
tools\bin\System.Net.Http.Formatting.dll
md5: 02E47079A1B45F4FD8142752C91970E3 | sha1: E8016192D0A6738CD075F837109845376B270F14 | sha256: EF32858203F7263AA5767BAE4E94567FA1B3CDEDE214BA87603009C1C17B264F | sha512: 72DD2AED377786C0823DC4DE58A4D6A9E484E766F570E14D5C700003026E834EDA53628E7DAD2AD9DBFCE6706C52C2320900EE4CEEB062BE97A255FB46440918
tools\bin\System.Security.Cryptography.Csp.dll
md5: F3981886980A374A4C82567E22E32CA0 | sha1: 2CA5FA12AFEF6CBF549A1935FC23B0C97C035B94 | sha256: 87A20C881600B4C836696430F3577CC024D16EF6CF756020CDF9AAEFFE7B8B31 | sha512: 46C2F586D7181ED012133E088D766A657FE218CAC2E7F4D2202C2C31945DFBA720947476A6E6AF403BE50FCE1E0B3AB9111FCBFF5B31077DB1CD5226DC647E8C
tools\bin\clrjit.dll
md5: 0DB732BE1C744F1C5F7E8AA255BA5DC2 | sha1: DDB5598F7CBD63BD4B5AF88329B3C7EF6F607218 | sha256: 56B4C45439250F81544A24CD8AC6B87B62C18CC6616E70173295FAF111C1BA9E | sha512: 4CB9C28D355B0B2D14080102907BA98B665C1FC1BEC638C064495B00E902FEF601FEA06E1254453B729BAD1CEB969535D6F869C882AA54D2B35969073377AF9C
tools\bin\System.ComponentModel.DataAnnotations.dll
md5: E6954F783F347B8E12DB675BF619D0BC | sha1: 3F5C2E3AF221D9774D7DA3877A3E35113A8BBE13 | sha256: FAD799E7CB942D859312DA1D41BC8B28A5165E016D3B7EB498B7E9684E4F4E83 | sha512: 31CE165C3123C1BDE0B1E9064C6D806BB8F98DA31D8D83E8AACA47B59274AB2FB2BB9F9C809E7FA416953E0A3FD69599AFFE8A1D80724A47E0D7161F7C351540
tools\bin\System.Net.Http.Json.dll
md5: 38C6FFF1744C756933A370CE35E88D06 | sha1: C59055B7F356744E189C4781A85CE88610FAEDF5 | sha256: C9E582F038BB360B72159B70E823C80C952B12FBB4778D8BD931F8D48D2A42DA | sha512: A9B0DC4D22769A0F92000791868923CF0A9661E60CBF617C16449428355A0CC80550C71A89BD7DACD38553CA1F23C69CF5E8D819338D3F014CA1034CBF7A0F41
tools\bin\System.Security.Cryptography.dll
md5: 547DE58D13DB9EE35CE0B44F0A22B1E4 | sha1: 149CBFBDA9AD2AB469367F37256E9C6B34DFD826 | sha256: 88F348B4A332909D79A05F8209E67A415DB501FC11C26111C72DCA6AE35A68EE | sha512: 1335708A37DA0CAC6F15F64D341725938C1A07B60A48D3E933C7B7DB216E87AEEF55A3D2582C1653F660B4ED6175A7AB95A00E0998EFEED66245CFBCC036B440
tools\bin\coreclr.dll
md5: FA079B5FE839B12F601C1DC37DF916BC | sha1: D245EB80607BCAA879DD373F7B955BF25F9652AA | sha256: C41DDF805CB006AB7220E283159CDB714A98AFC5F3AFFB8E0433BC54AFE02B67 | sha512: CD131774DA077685E8F30ABFAE89E3C81CDA340C59027065DC55A913632FAB17ECBD4D568E22F42C7F94C613943508AB985602F3EA3FD9AEA148ACDE4C05D1D0
tools\bin\System.ComponentModel.dll
md5: DF0453D6841FA71FA953FEDAFCA4C695 | sha1: 6DA4F6A02527894EA561A9D4C3ACC82C34A01A82 | sha256: 2EB64A829DBDEBA9C5D837701514096979783766DC910EC3C93A70E941081B35 | sha512: 48DF79D925BC681DAC63B82F6B6603D442CED28FD1E952D4117EDE3479D0DA32E4B57317BDD901368AD46612927A30437F7A93DA253B275BE0CE74389C3B1E18
tools\bin\System.Net.HttpListener.dll
md5: 498D8F8DDC40133AD39AB1D859BF3C22 | sha1: 6B0359D75473D1D8E2FC9546B8A6C726869EE166 | sha256: 7760C82E30DA4E64232F2794719E205B4395553BFD5C4B299CD4111C0CBD399E | sha512: 0607F0600C03B1A13C4023200AF610E3DAE9EF638BEF4E8532173EBA5ECF6936FA37FDB44D3BB8F4F84A3D09B075BD04D18006E2436A5EDC87B4E32C9733EC63
tools\bin\System.Security.Cryptography.Encoding.dll
md5: F02D6B4C9827B20BFC3406BE0DA3F5E0 | sha1: 28FBDE9CA4B4E7B220AE2125D57D78CE9BE2B375 | sha256: B9A27AEC4EFBB315FE3074D6A8DB827FE72BC123DEFF7CA7CED3CB222A88E023 | sha512: C8808EB4F467F951C6354FC2330DB6EEC2D51F78ABF87D82EA16EEE8A12542AB55811CDAFF1AA16602ECCD1D24C04E504364AAA9DCFFE9E036EFFBA80FEB0FAD
tools\bin\createdump.exe
md5: A48662183F845ECA823960033B5B6712 | sha1: 3DC603C92829260FECD702C9DD2AE71993A29FF5 | sha256: 930F833726F7E77F11D1C4E8B7A6390ED46776D9797F8B8D7C253F1EC7CDC733 | sha512: F4B62F5029E5802141BCFC581B5ABDA6A380344181EE4E24CD00E4FDC1683F576784B7738714DC3EE358D6C8B7469CDA78B30B7D5DC7E028A0F5E4E5266F40C2
tools\bin\System.ComponentModel.EventBasedAsync.dll
md5: 5D657957C7DAE734E8C583CB71010657 | sha1: CE85AA4D90784DAF82ABBCB91BB4B10C632D9DF1 | sha256: A4B200EC25789F7625BA2EA1F3D3A6DDF7D7C245EA4B5D7982AD5828D5297D83 | sha512: 5B1F8AF004E919DA61D55FD8A8E0C6C870A41987E9B2379CF2C7FB23CFD3837D4A45425E001798E14CBA56C93524C1F90C9C69E6A9F8FC2022A53009CF73CE6E
tools\bin\System.Net.Mail.dll
md5: 7BDB572E9283A437C763A6D6C68EB753 | sha1: 9D411641077749650DE3FB41ABAFE945E5AE1CBB | sha256: 6E50820B8AC8946E24745B5FB4BFC8F3C9BAA3C1A63414E1E5BC54915A7EE34D | sha512: 13B37A68FBA5A95A8E5741A7DB241F43C50CC1A21BE6A9EBA331E392A3D62A5F995CB94F4CC4040BD1263CABEE68C1F9441D38F193726FA921305CFE7FA572FE
tools\bin\System.Security.Cryptography.OpenSsl.dll
md5: 26882179DA294C52487A6D6659581546 | sha1: 37F05D60992540FCDEE2AB5FFB7394EFFCA64C82 | sha256: 1D5AC054813C369E606E3CBD5496A8100A2241558DE7DAB369F84EA26A0749B2 | sha512: 6B0F12C8F1B42EBC25621FD3926EB24803638EB586E46828A68CECD9CB71B48028FF49DA9F987E27B6037235DF7E76FFDBEBB0F54531E8E802CA2FFB987D2C7B
tools\bin\hostfxr.dll
md5: 5699F7441A8C3704DF33F0E6B8A0A588 | sha1: 82ED568C5505C7716F14F658CA530E22B3D9C796 | sha256: 8BB140DE416F703260525B537A773011F3091FD4B2A3679FF55893B9BCBA7A3D | sha512: 5822EE00067082A9A1876ADE1BAAFE436A63BBB95B93A7938D96578869F1393D34D8349D59BBBE2BCD54FDEAD5EACB017F8B9A995520EDF5EC01EB5BFC98F917
tools\bin\System.ComponentModel.Primitives.dll
md5: 4806369EC658F534B484831B69AABABA | sha1: E10D9A0D1B17497F45DF4A5D4598B2BE880560FD | sha256: 41944C351F62EB0547F44E614553C29022D1AA1B0BFCB2041B32B3E680E4DD1C | sha512: EA1E21CB7D13D405DDBD2261868411E25A0B19485A006F09A20F2DB792423EC02C82170C037C39385EDCA2F1C212A46A1F6F66D236052B2C711C05C18C4E433F
tools\bin\System.Net.NameResolution.dll
md5: 9BA805C4DA9E4253860B0800B5097AEF | sha1: CEF7EB8A0724BD7F931DBF8FB6375C301815987B | sha256: 33CC5255325644365BC9D057898AF8862050932FFC3CF6504403E8FD2886F12F | sha512: B4353D08FFA0651868CA674E038D42E072D803F94F356C52215131D6C97BE82741FB2F2E0E1EF5045BA9E237F8AC2B920701464C4675D0A1AAAAF5DEC98B7975
tools\bin\System.Security.Cryptography.Primitives.dll
md5: 3818ED85B52A0101256F1166846B9240 | sha1: 4DB7CB3297A35E8474C6DDC4BDF6B4633EB5DBDA | sha256: 725EAE6D282FC6B9EB793DB19FB5F5FDCBF38BBE8B2D1F1D77F121FC2961CBF2 | sha512: BE35E7B33D5ACCA10FE765584027A021E1B76F8E3EAFD546A5889C65EB0622325E8954A1EDA40EDC2B35BB573A663FEF93321F61B0BF3F6A4023A7492C672D94
tools\bin\hostpolicy.dll
md5: D2B6DEEE60260DA78E3E6129E28DED00 | sha1: 557FE1BBD0693D40FFA6FEE2E41D145291DA05AD | sha256: 306CD51163018AB4D581ACE6C796422BE386DF59ED16FFE0173830F55230789D | sha512: 9EF9243B2464ACCB12D6BD94A9A51A0D3EEEBFC8C75FC5C7B438C688FBB1394BCA5C083057828FD02518C7114C16D7031D14D4F8B68C939D9F63080B8230A08C
tools\bin\System.ComponentModel.TypeConverter.dll
md5: FCE5F147091C5F77539C45887B0CD571 | sha1: 04FA5524451A03E4903C337B4F7B4AF55EBB88FB | sha256: 483BE4281F9F008BC8A7E59CC5D811A8C1E04EF790B44DF3CD12D5D0B59EEB33 | sha512: B42B91512AB9707033E520871420FBE8D6F4FCB1A1B0100B1A7755154DA2171ED787EAD243CA680267E9C3F00DB4783E9E22F147761ADD467D911D866D1EC45E
tools\bin\System.Net.NetworkInformation.dll
md5: CBFEF9657BB2A0AA78E2F4194A04F89E | sha1: 516AFECA9777B1119B3BEDCDA1ECBD6CE7EE099B | sha256: 444548D13F027B31A8426CEF5443CB44A9525C9C3310B8011B9C9E85F0C226FA | sha512: 1C28E1BDE28608F5940786C59A0047022DB3A2DF12B7A9283118504E147063307E9C4ED9D248D0354AD75CF7BC4744BEBCD6647F5D1758BF6F5B03F14AC1D215
tools\bin\System.Security.Cryptography.ProtectedData.dll
md5: 95C0E2CF7481A0213A490998F3A956A0 | sha1: B804F6AF460137FF1C50FF5CB4113CF7B1717A74 | sha256: 7F2B633EED63BF20D558A25ED9686D2F1EF6C6E3FEF5C0B19C2C1258D90ACABD | sha512: 0B42381FCC18B0938448CD232F0D2F17639B6BE25A0590A403EF64C66B381B2F21FED36655C1D41B976B21EE5677F1397C12287F08776CC0636B1759D32041ED
tools\bin\log4net.config
<log4net>
  <root>
    <level value="INFO" />
    <appender-ref ref="console" />
  </root>
  <appender name="console" type="log4net.Appender.ConsoleAppender">
    <layout type="log4net.Layout.PatternLayout">
      <conversionPattern value="%date %level - %message%newline" />
    </layout>
  </appender>
</log4net>
tools\bin\System.Configuration.ConfigurationManager.dll
md5: 8E748F63F6012C50D96441472483DA98 | sha1: A51B2808834CDF97FA666FA4421A2A2A6D52DDA5 | sha256: E814B79F175ECDE855C7AE003CD8BC5ED88EDEA4AB4089D055ED7B63DA7BBEC9 | sha512: B21FBF5470E28CBDEA2C8D06A00DE450B0286BB8B69BA7A5BA114604FCAE0A5AEDD5CA796EDA8BD6305D5D08393C4A5E78A5701E29F6649873263DEF5C44329B
tools\bin\System.Net.Ping.dll
md5: 1F4F944E059C2A9F3EB1D88203CD1864 | sha1: C9BB89A9AC6D7EE2E301550070AF9D22DB51186B | sha256: 37561F83FD614C4C0DE8F79C208A70926619EB60397680AA522BED6A0F198AED | sha512: 402C19B785D268CEE8A78EFFAFD5491501B3A4A55F10267CF7371FD63BFFEF85F432C48C75B9B103E67DB44B1F561EB868841139D3B119B0FFBD9093EAABCF27
tools\bin\System.Security.Cryptography.X509Certificates.dll
md5: 05A994496CC4510C0BB0649A14765957 | sha1: B1924C73B24FE8D084E1F20885AE13A3546AC827 | sha256: 00EDED11A2AF05AEA0DC9BBD8D8C0516655C420BD02908EB234159C2F4A92E5A | sha512: 7B83E3CB91D761A11639B06760638E26ED41E633286099BD46FF0655542FB651A44A985A3DD60D1CBD64D454D62925FF3BC051EDE521AC83E473D21B8103D544
tools\bin\log4net.dll
md5: 02D99D6A0653C597AB0F18A0F1FEBA2A | sha1: C34CA0EA84CCB80B0F1585494FBF22B880F98BBC | sha256: 826BC88829CCB83B9E00FFC6A1ABEEFE72C3DB607E069A8BF1CE4A114D86D5BC | sha512: 58810BD5F2539E00EBC6FFC26D6DB8F9DFB8E1ADA27822C234BB8A04DB30325E92CEE68E99EA62E405E8F72B60B1DB9856DE94E8A3F082E578755B06C7B99BBF
tools\bin\System.Configuration.dll
md5: 9A7F8336F4060A40DE1E66E0513511B4 | sha1: 49CA2F1C72C9C9D6DE6D715E1412F69A5FB0D0EB | sha256: 57A510D11D494981C20B74AAB1E71F8275A22F1014C8DB51FC79495729120B19 | sha512: A4062CD72D028CC32C1641C07F5DC7082B84867DA1AED8F592A5B5249B2CDA2960B4102C971C2B194EEBD33BE371E9F429ACD141FD89A4A95A437BD41361F4A8
tools\bin\System.Net.Primitives.dll
md5: AE4150F8434FCF2FD41C7D27739518FE | sha1: 2C6F43E50CBE505F598A1187F5F05B575EE5EF15 | sha256: 89515B864C51F0BECE3ACC79E6204003BD979AD169ECA564784C0A63A9BE303E | sha512: D9D9508A7DB0E723FE1DBE2D881C90F46B01B748006E79D450C74D9953BB2E6448F49A3AA968ECF04E4B0079D973026C838FBB8F31B1C1F96043AF4890A69FFF
tools\bin\System.Security.dll
md5: 76F638CA27A6247501CF11465B1CE375 | sha1: 2400178C42094A6FF897FE1A8813178A2A58392B | sha256: 7BB9008C0CFE6DC70F7709B4E99562EB0294019CE3D777216F0990D8E2ABC6FF | sha512: FD9BADBCD254DF2540C70E407A020C9F98A5BC9BECC352ADC5587F47A8E2A691E419D7A6A596D98F110AB5620633C7687D7A0812940094B27AE389ED802A08B6
tools\bin\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: FE082CD030F7046C5C73503E578E8A17 | sha1: A6C58D1291019BA6FC4A16863EC03BEB57573F0A | sha256: 7597A80550D0120BD93C60443017276DF1592DC7F4E6C18C96C7B8DBDECE06F8 | sha512: 5EBEDF859709264E9661EA448CDDEEFA1346E3B449C2057E0F5426EBC9F23608238E23567451F674EFAC5761481180B2304D5E10755C962B45DA04F9581F82CC
tools\bin\System.Console.dll
md5: 58F1CC3F7F80DB39BBAC8E2AE5663908 | sha1: 6BAD0F0F86C0852E9044C146FE6964C6411D5918 | sha256: D2ABA83A3CA95B491F23F7B1840495BF28D0A37290581F445071A8CEFEE1DE3C | sha512: 76C6BEB58A511CCF702A3F3EC15487AE8BABAEA095105E85022CC8B3A10453DEDE89BB3A97907F20092B8E36835A9A7B9DF0E8E5A9C85BDF6280E303DF27E61D
tools\bin\System.Net.Quic.dll
md5: A2693656F0D5DDF8E0756793DC5E8C51 | sha1: 274C517CF1276FF473B737FE6E973D864A76953C | sha256: F4E41B717B33024D99801D828C4413A88F8288ADC7EFA23BDB322A0A192D17F0 | sha512: 52D97FF0997807E22BE94418B22F26CA4259CE301AFD66E5379818433E5183E9967B55E05B9FA1AB8F5C9F0959CCCC87053C49CB944BC8F591CA37A83B31CE99
tools\bin\System.Security.Permissions.dll
md5: 706D8592956EF30E4A23E479E302119C | sha1: 0E9D8F70884D8F90A492F8EF79CB37D02937A136 | sha256: 8CA99B4D76D2708D27040D82D87C9F2BEB26987E283146AEA6BC275D92E895CE | sha512: 40C3CA0A64F74110D3D7374919050A2AEF2C02C105EC44E96DC52FED6C7C82CBE392A070A25602C5813C9913FCB83D8964CBF380DE61E71B4FA958236B6A95D3
tools\bin\Microsoft.Azure.Pipelines.WebApi.dll
md5: B65F245DB62EEF7AE7CA538E83A182FA | sha1: 00FCFE2B4507E1C743D48D9FFF2855C40478047A | sha256: F7E54F3BDF72694524102398ED07FB4B9DF04D79469FEFAD2A9DA243FE93E58E | sha512: 1560FFD2BCAD62814437D5B163D70EE2C00298B6A0B8D282B94C13B53C3BD4E1EFB3995526CC31CDC26FBEA033F06E57F45D01795A8AD5767CE8C5D909D0635F
tools\bin\System.Core.dll
md5: 56D9005E6E5C9E3A7F87D83C952CAE54 | sha1: D0927C0AD3359A60F4ED36238D97A8EC2E776CA7 | sha256: 808FBCCC583933FB79640D5378E71CB1925D642A39F7D71B26231830A8DDF2CD | sha512: AD20449D650982511ECD89AD4076E7074EC8DA9E7EF80838589BF6D793C94B9E85B5962999A557267D8A2D57797B4B6A1CBB9CB6DED2FACDCB0C890BFCCED861
tools\bin\System.Net.Requests.dll
md5: 47DDC3B9CF18BEA8F501D3CBC27E4B28 | sha1: A88B0D7A450D2647CBDD0B7EF05738952B9BDACC | sha256: 0BF3D93EAC880EDC757FF17D9003099E37BB6D9092D1DA0178A7E4592772F976 | sha512: B1BE9ACD490AE1B5E97BA15A49354A55154B6E525CBF52D1AE0DBCA5787E8B777C0B5BFF139A939BC72579B168B9FF24A525E57F7B9BC2E4A6269FAC2D576516
tools\bin\System.Security.Principal.dll
md5: E1D77937B99034B8E4D3ED52BDFCF05F | sha1: 731FCCA6308461AD65EE2521EA53057FE753C6EE | sha256: 1D4DDC37FEE7FA9CFBD24C33EFA0B8F6E4FDF6C7C0BBB0CF0CEBD1ED6B15203F | sha512: 78070FACAFB1BFE92CAD9E431D566840224449C1A0391520EC8A0AD8985FE3774B2B1273403FA8764A0A611E416BBDB3E5D6F8A50A83398671C3DE260E1C1EDB
tools\bin\Microsoft.CSharp.dll
md5: DC956EC52D95B388AFADFE20EC56DB45 | sha1: 57EEED2810626700ED5ABA73577D0361C1AC5723 | sha256: 62C0F170B005A0BAC4712D78DA58423B9658D77C56D35B94C270DDEA273D582D | sha512: E72EC6FC1D9B6F02CA03808B5583682462CE5B582A05BEEDD1C8370195D8AE023A213BEE840C3014D333A5923BFDD9CF23895F7233B6C20607FD4E82362133F9
tools\bin\System.Data.Common.dll
md5: 5A98142499AA546E1BA1497A54F842EB | sha1: C57B17901E578218ED9031E3F15C55541C6D8E26 | sha256: CCC496C7B3DDCE0B1E44C6E45FB87ADAC96BF9993B5C59AE1D6E6CEBD6604571 | sha512: 9B45DF160C60115B7E0AD47A9CC81453D4E309E4E2BF2C3318F5578B0A47CFD159104AD52CB854C3B5EF61B4F0941EFF3EAEDC004F7D590016BFC76BDAE8429F
tools\bin\System.Net.Security.dll
md5: F8343FB4159F8008B9A0E89BF84C96BA | sha1: 0637D5C552F98903E19FCB1F85EC450E66B7C4FB | sha256: D2FEDD14F7236851E731A4A255C7CCBDBB16FED974D190EAC4B9B881A8839629 | sha512: 3F82060F0C055F6D7CDF068D60CFC7CF6A8EC7580FF960C05FAFB207013AB1353C9795D73423B386E19F79AE46CE34704E58B77878CFFFC1F7FF086AD4F016D1
tools\bin\System.Security.Principal.Windows.dll
md5: 546470B16AE6FC981977130B98A925F7 | sha1: E68DD9AB57C3B05B4007F676E97DE614EE0381DF | sha256: 091958CAB86E50B04CD7265274717EC420E23B28853B5A5E5A2994F21731CDD6 | sha512: C18B70579C6FC6E0C9C4AAB6ED7AFEA7B72563C363E608A892A9D68B1B2E0D8982FED17A3B03960C98F9D9DC2DE7F22623E6EE4C171F020E089F6A7F0938967B
tools\bin\Microsoft.DiaSymReader.Native.amd64.dll
md5: EE5A55BF0D399EF09502D486AA1C6242 | sha1: 2E882EE6CCCEE6E5C0EE5E13EB40DAE98E2B6F07 | sha256: 3AECC22ECECF784182883EBD2C2BF60BCDB25CC209DD64C32800B845EE8966E0 | sha512: DC4A73D3CEE381EB4CC524ED2A0B9FACB1CADD72768EDA0215EA17600AB1F3D84AA1AF01F5B22B0CB3574EA5DC9256CDBA9E463205116CF31ADB579106276CB6
tools\bin\System.Data.DataSetExtensions.dll
md5: 35E092E43D0205C6AE2889C08B788E33 | sha1: 1EB9B7574A93165D012E267EC84479F11439F565 | sha256: A3CFA84C02537874A4187D72301FC0E079D85106337E8A1D8DD7F3FF5D743F06 | sha512: 3671A4D9E4338078DD3F779A60C124DE95CBD71D5B2F8700E7FD6FD3183A04097740DB28A422CFCFBB023BC93DDC970179AC4795D4D5FD3E8978F5FDAFF86AB0
tools\bin\System.Net.ServicePoint.dll
md5: 04B0DC6CB31943D33C7B9DA8F45E2671 | sha1: AE4BE79DB1B8EED7067AEB6EEE346C1E913291C4 | sha256: A8F834C6FBECA50045119B0629776DE97EFDFD46A6BA7586CCAEB627AF33609D | sha512: F4E9467CAE35DF1EDB085BD4D9EC6A5ADFF86BE66982D992EC2F91B7EBAA2ECAB9B1A50B433994061FB027AF91B8AB5CE0021393689E93B3A481EDE573F0F637
tools\bin\System.Security.SecureString.dll
md5: CC9A8F865CACE5964B2A74DB80205906 | sha1: D85910937A63BB486477A2DC0242B9299CC2A286 | sha256: DEE3E51861996D41F4FED93F45952071D7E2EBB09BA87DC7B2F50E39B9DE3199 | sha512: AA6151E8473A896BF14FB000FC593C98B8CA2C0BAFB8CE411AD739E1F544F92AC4B3EC94443A5F85D9952BDE7F417033F66A7C7D3C9A38FDB68726D773E9B644
tools\bin\Microsoft.IdentityModel.Clients.ActiveDirectory.dll
md5: 59E9D385DBD4B7DF8821B0EBAC0D0941 | sha1: 7AF9EA88E34FCE4A6BD568CF043B00624793F313 | sha256: B9CB7C841E53890F3650B727A7094BFD9AE14E775319CB0DCA170021EDF22FFA | sha512: 106674E8807C6E470ADEBD94129B65CBDFC2477CECCDC5CC94A6439A24F8BA2FE425B516901D321B6816E5BE4DE0B4DAC1D7378ED8DEBC43C85CFEDFE4E3ABE4
tools\bin\System.Data.dll
md5: B1E8C74991CA24755365151890A0CE3D | sha1: 3137D235B5FF402E99603C139D96EE27E29815C4 | sha256: 9DF58CC13495BAC949B61661DF042F2A8A5F256A032DE42187AACE50FBFED5E0 | sha512: 3FB61F66FF53C8A8FF99B279B448B88D3B74C232F4EFBBF7AF90081028A2D9383F1D7B8D33E659F3EA1C7E4081C2022D53A6B74F55C6BF080624C2F98CFDC5BD
tools\bin\System.Net.Sockets.dll
md5: 6DE6BBA61FA39352BD452FC0F388B242 | sha1: 32B03F4BD0F51678F95DD7AB8E49815353A62E78 | sha256: E52F44B8D6CABF46F5BA13C2043512C9FA1D400DA335DC853F9E9F0D1E847BB6 | sha512: E0CAA8ECEA10790DAAF74C34133233E88597C4DCDA500353DF0BC841F1B79A0A950D9D371DC1DF895F716AB51DAF95D58867632B580C0983AAA0FF0E258596B6
tools\bin\System.ServiceModel.Web.dll
md5: D387CC0D283D8AB7372518A622085ADD | sha1: FC1A4CCFFBC5AFD18D9D4952A89EACF89875B7FA | sha256: B31F2BEA164D210B24FD831B7B8FD5EA32F9EF7AB88414708B48D93027A838B1 | sha512: 6584B21C19AF2E04154A623DCDEE58B1676EAEE77718B8A4584831B18BB49EB64E1FC808DA9CDBC9416CE7B046912AD53885EC4123655AD5B53258AD6ECB982B
tools\bin\Microsoft.IdentityModel.JsonWebTokens.dll
md5: 627B852A21FE33F452DFAD41E0B422F7 | sha1: 9F2C57648740A89666A9FA7EDC3FF50DD3B8A8E9 | sha256: 4B9E70BE0440F3D619A66C6E3D258B0ECD95BAF002805D78009F447E02192696 | sha512: 0870C30E4CC9AAF894EB0FF550BEE173CC22E9D8AAC79F67ABBA205D321F80E65EDA8780BC4DB44D513300216FCB300A6715D39B711B6D20EF3C22670491DA6E
tools\bin\System.Data.SqlClient.dll
md5: A8B8C130324DA3E7FAB5CB7F3001EBE8 | sha1: 82379C4C9A81D404369B2B89D74498F1CCE26102 | sha256: 0CBF6D2F6BF55A901D4C5E3971725DA1165599A8ED2E6F134F8292FED43E0DCD | sha512: 4AB0EDFAE0DA0F287EEEA99678A8E9381BE871B8F3166F0E22039874E6016B37D8AB3F1E055B61D0C21987CDD735B12DEEBA4EF7826B8923802C8C79B0A00F7F
tools\bin\System.Net.WebClient.dll
md5: 93175DE4A397D814F4267963357D80F7 | sha1: 8FFCFEB2976C0CFC645B36644AA7AD6DAE3A6170 | sha256: C8FFC82F5586A8943E3B0E84599E5704AC7C9BB984FD8EFDD7B1CB07047EDC0C | sha512: 8F76258C4E8CF2F49E542034AE7365831842CA7D966CDB1170B3ED84FB1C893C65E4A86C8B835C96B55275687BCD9469917163A403801AE43C2A48795AC2DDCB
tools\bin\System.ServiceProcess.dll
md5: C8365D5BD61588AFDEC8D849A18D9735 | sha1: B91E6ADF1FD9C4E34D129CBA114BBA91DB39951D | sha256: B69D1B26CC23FBD681F73C5FC3DA2298CE4F6D575395982AC5F96666EEC4389C | sha512: 7814CF35FB01249B4A75D9F2CB0EEF07E8FD2C722831F13E66FE5F841589FE059CBEF3BEB1AFC7E9B9EF89D2FB7D4513B44617B76B560763E3B6927F4EC94178
tools\bin\Microsoft.IdentityModel.Logging.dll
md5: 58CA6BADE440D2181F2EE8CA602E6A6C | sha1: D28A11CF993578C54AC1652FEF3E34FA8FE57509 | sha256: 5805DBEF5DC49F8A30810182F1D1E6DE3D12F6D4A00292F492017EB9641FC159 | sha512: 84B60EE0DB72233C45F1B9945C90B64B2D20E1415F95C68C008F650B498A819D9723FD7FD41D72A0B4C889FBEE4CB039E554F57EBF5AD06E3CC9D2BA8512AE2C
tools\bin\System.Diagnostics.Contracts.dll
md5: 8FFE0188A2B49EE549CEF04A8633DC4D | sha1: B9D35D7B91E5775EAE22ED14D2510A17480B4FDC | sha256: 1469C106D79633F629E9B101CA704A5BD2AA335A3D7040B36823A1885D122E95 | sha512: D80463F2B1F18D71919626CD85B7FA472CDE7CCD5511F200702CB07A3D71593DD160D32914DE33C2AC8BFC5B83D8A77649689E250D83066519782042E6CA3EFF
tools\bin\System.Net.WebHeaderCollection.dll
md5: 67A47965CD68815CB83AEA73049AF3A0 | sha1: 7C76E90367499DD0EC3AD29012E730C4F00D34D1 | sha256: 7A790AE07F66599C3567028154D207B1A44EF527A47D4EA51CD57E46488926B9 | sha512: F2983D4DD13B0CDD8573CD63C30AE3684858DEB6C0C6F3BFCFD3F55E45C3B8D72EADD013F4F1997AAF2985634BFBAD6A55C5A8D7656652C86D4CAEF42ED61010
tools\bin\System.Text.Encoding.CodePages.dll
md5: 68993B663C86D994D740D5A134FECF8A | sha1: C0CB352518D2819FB876B720B74F8DC1E09CDE9E | sha256: 15E8FD0E94583CFC9C7B4BFF8911E164218E4C46F29A75407688997C8DE79C83 | sha512: 1E28AA6504391B231D1C5C5696B6D949C2CA53D143D28EF1D240BB88FEB8691460495764C9D3C70190319327CD14F130934286F50CF3DBA851540F9EB59C2466
tools\bin\Microsoft.IdentityModel.Tokens.dll
md5: 4ED422E1D4B93851A08B340DE68FCCF5 | sha1: 0A2D0CA5F6AB2849DA70B1CABE779E579C831CA3 | sha256: CB0DA06C03F5628272465D035792F079544FBB3225C3279BBAFBF9B590434F7E | sha512: 5E42C7F5252550DDA3E405D0B5AE2825D9283F817741839588D2E6F181B4C862696DC0D9F70A7061A7D43C649B1B88C3BBD26C4540F6020F22E59CC3722CD7ED
tools\bin\System.Diagnostics.Debug.dll
md5: 9721694E8998963F5A984FE209AFA4DA | sha1: 2B6B0078FF1977D78F611EB1AFCC309EE387BFE7 | sha256: EEA3A9D6761913BAC5E62B558C1CA51C64AF4367D45663C33DFDB52FB87D7751 | sha512: FA37F3BD75B2CFEBD58E9624B500613AA2DCA512FB764820C53002150A0D7E12B90DABAFF51CF04538A755CC0BF1A8BC613E37690DD6AEBB3EEA5D0B31041269
tools\bin\System.Net.WebProxy.dll
md5: C4088F946CF07D3FA4839AAF26918D48 | sha1: 1B7AED2E76EF1B3BB0F0292B5DADCE6D019F6D78 | sha256: 1C594D3F3DDE0F122D673A73D10CF0C86673EA6419756328B4327E8A695494DE | sha512: 4751142072182D1FF5EC14698978B6BCF7041BFB0111C88E1F95D4B1B4E014A49AD82A81C390093F974E70EB410EA4F0891722185387F17F570636C51FDB349B
tools\bin\System.Text.Encoding.dll
md5: B3675232C13722C3C3FBDF9324FA311E | sha1: 8EDE8777D5C210E99FCA9368BAB16FC0D92371C9 | sha256: 4B6C2A490CD1D760493F6CF1DD7EBF1FEB72280CE431756F03E959D9E6F1C40F | sha512: DA18A73A14CDF654C593EF9B309D204A561643389630160123A13D4B9A5553CEB498784A68D6622A76D6B3AD1B1A9DD82AD31551715FAEE8FAEDABCA905474CC
tools\bin\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: F2509FE65D6B004975EBB8DA369B2F71 | sha1: 0B4F2BD587CA152E52D1F71C36F01E05037F4F17 | sha256: 5AA4BF2476FD9F84CEE5528C2033E3D0F3C044ED96D32CA17F5B35B093E32274 | sha512: FE4F9476645F090AA5C8061C3D2EE9291DE2F4BA0BFE012833A3E469C80A710C8B72368D07FA1FCF6D335C31439E4FDECD7E7355BDB94D9CD6BD9157A80B4FF1
tools\bin\System.Diagnostics.DiagnosticSource.dll
md5: E197F02AE2877BB937CF5204002C4745 | sha1: 9BECC2823DC4F2D72A8481FA93740D746150A25C | sha256: 8C05CD678FC2537DA5F045EC2863F1A74679F497B01F5043804E8555D56FDFA3 | sha512: AE70A88656E9A45DA90E4F9FB6DD8F5C979C08BBF76B1709B79AF443AA6442FAA3B1B6ADF5CBBB6906F3AC82F3237D136709FDAAD298A4843071C73F69071EF0
tools\bin\System.Net.WebSockets.Client.dll
md5: 23D2A502AD98CBE6CDF63B5A2F2CCABB | sha1: 7D71A63BD252E62C4B0848D07E5E27CA92F76768 | sha256: D5F2962ACA4519EE0499069F479FE5D66F73B17C15CFA0CC31FF3C600633F437 | sha512: 18122C35F4029E6B7C0EFF9F3B21FBE9468546CAB9295CA28A0A2C2F6B01526AAA6D0625E6308E7AB145F05C7D38EDFF3A89A351942EECE5A39BB4A718A7D284
tools\bin\System.Text.Encoding.Extensions.dll
md5: E5901B13374A893681670402D82C5020 | sha1: 8E93461CDFA586FFA786729154D793CFC8ADAEBF | sha256: 61970C2D6F1DA830AC9E8C0BF6CE195845DC56BC71C1878AE24559E457D1415B | sha512: BF1C60EA147628692FAA5CDBD5929736DC4142F5418081AD385256406139A0E90D82216C5EA91B0D003118DCB9E4AD989FD48C261A17336394D8B27B5AFB80E2
tools\bin\Microsoft.TeamFoundation.Common.dll
md5: 4A7D682587C848B697A27F949CCEB5DA | sha1: 7A83BF272DD1E0B41F28F7960DA4573A2D392EB1 | sha256: 4D94F3A596D8E9FF53D95D70D8E49CD131A2BC98E51D91559CFC9001D6A9A9A9 | sha512: CB24AB10114C6E547C08B8C93AE535C2D99CEA60DAAE80A389605DB7310AD26B08085A7AFF3EDF071C2E11F49F169467E307005F034B59639C13A306FAED554E
tools\bin\System.Diagnostics.FileVersionInfo.dll
md5: 6A46534CA7F52130E02511812749B590 | sha1: 8CC704F2E1DEB58F6C4D3E4C6837DF6BFFB4D453 | sha256: F3E46B730087E1D9D6CFF348C58D6F5C31F1BA909ACC81E4064E68A7CA2A29E1 | sha512: E8C7C2CFBC33992F03ADB13F017CAD6E4BF1882DF008878CAC6A5A8E5EB8DA36A7D3AB0605FA1D110FA18337C00F881E4B2C5888AF6116A95553227A062B319F
tools\bin\System.Net.WebSockets.dll
md5: 61AE8D40BF4F99D001E447AE51E3C818 | sha1: 8548994090405588484ADA99BE303C8E60F8F4D4 | sha256: C315917C290A3EED7DA5EB6F1F4B1E5020482F1E0DA32EFB63EBE43A72EF729E | sha512: 7FCD266EBAF52FAFBD894F66F51BAB19DA07D88D331E7AC5F48664567F26BA6B135869529BEADB98DA01D84181E50661F54FC460A72B32EB3B718BA27FBBF6E5
tools\bin\System.Text.Encodings.Web.dll
md5: 5A6640F185A1F9CD8D1E9C5BD623B6BF | sha1: 48C0DADC9DDD76FBA3B513BF3645AECE0416502A | sha256: 374AFCE0B92080C2F4B58FE2492739FA6BA5C7E4A84DAAAB205407A3C9D07DB4 | sha512: 1903B545D36E3C2812F21D515BE4FFED05D2C9DC85FDCE1E7F64A22840517F2FAA7FB8E361D4D529A9E523F2378AE430211DFBE250A44D5E495EF10B734C9C40
tools\bin\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 792D943CEB3E3B55AA7DB7A201C3802A | sha1: 5224C2019C21A916A5DB836CD93990C91D139803 | sha256: 0972B1931ABB20A130480F2678378D8FF6C466453FB9C205F98738F0141C02EE | sha512: 1062C2DF4D9F8917AEF3A1ABD6D1E28ADDA7EE0DDA7F709F45C7CACCBDD06DF6E0140A0A761C0800E5DAAD94ED815CFF731366FEB4810C99647A97B0B93EC144
tools\bin\System.Diagnostics.Process.dll
md5: 9C85A6EAD7BEAB83DA41E294AD82E758 | sha1: EF3975B189C7175CC0C0893FA525D9506AA22C21 | sha256: B331D94E48C973704553C129BDD757FF0636C76A84E813252A9E69B22D90D6DA | sha512: 6C25FE1E13E0D6768D8B81BD58D3F2A253B994F8A84D1542205804FB7FB7C6B48FD3043BD3CED96B5ED34C13B924DA3501F8E0B4A448BC85F543EE14AFAA9A7E
tools\bin\System.Numerics.dll
md5: 1372F85EFA634E21139E45DFCCB43A9F | sha1: 5EA67C02B12F0E013AE5E98B0D425BC8790A02C7 | sha256: 43C6487DA93ADC0724F4F2C4966E115C531B4AFC53FFC19FA7770DC44F2A08EE | sha512: F2E18F3B44E6F808091C0DE87653CFC799EFA0B080D77F0CE42B4CEB9FD1F72FF171F929E0E8128133833349F0A9D876C953CD76BFDF61C6D213F5C65DD1711F
tools\bin\System.Text.Json.dll
md5: 579462C6AF9D2BD8297BEF74B36535BE | sha1: C6CD3B8F6E88640434480F65D0FCCCA6DBDE9586 | sha256: E6215584D1EF113D16FAF36F9E08670D11CA19A0545382E798C5B3FC37A19584 | sha512: 34166CCDC26DA90E61D16D63EC24150A0D051FAD452D48FB0CE32F6FE0E4051D2C772DEB753DC4A2D4986561A2636774F83FFADA1D91BC77D0477CDFD914705B
tools\bin\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: 33C248028E6106551DFA26888918F982 | sha1: 49DF8503960B078AE551DF74A4F0F98B83981E67 | sha256: AD115C567B3AAE07A6D1222A43E1A4A783A7666457047B7C179416870D42F1FA | sha512: 5A860D22ACBFCBEF2FCD38879067B29814519225A75AA5EBC24ED805DB77C57392AEB445EE9F93B863FDBCF90488A6E4B29DD201C69461FA6101D4D59A96D6CA
tools\bin\System.Diagnostics.StackTrace.dll
md5: 7E6B0A8CBEAD32DD72E69068937C600E | sha1: B3F94B32A6B8B1F5138987E43F5644714A72905B | sha256: F58CB6408CE3B61475082B5E33C66ACD06D6710F077765B019B3AC6DF0D1916F | sha512: 52A0C36AA766A398878484DB3F296A52AE721D8A4620D4988D97EB16534722C27A4A20199642D4E99ACE1C631F39E5C5156749D8C3D037A2688050CDB0B17B97
tools\bin\System.Numerics.Vectors.dll
md5: 0559E8162722D69CCCE8B553C40C63BD | sha1: 7E47409AB6211B64E9957F38A296B9C24CC26AB8 | sha256: 8EDF040CD6494D98132FB0F98AF494966023C595F1F543FA2E2DEFAC648AD97B | sha512: 87A53B4F314B23BA00140D5CE36366F055FF071533A17B43BEA1C8F3FF35B7A1278539F0B19E7A3977D637F8A67A621CD0F756063904A3A3A69498EF49CD07F7
tools\bin\System.Text.RegularExpressions.dll
md5: ADBF23E8CC39237D95326C6D8AA6015C | sha1: 94054EC212C2FCB276E7CB7E6A17AAE2A8B94D97 | sha256: 32A7409C5828688D216B93EA604608C56ECED85EE17305D9691F8B788CA95B2A | sha512: 212A42C97DA5430226A831C299786828A048234CB3E89BCFD2470A08D4CB99EABCDCE0F3EDFA862AE4F23D10B1A3712E19D3C7CD206D9A9C3489E4797BF485EA
tools\bin\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: A3A998DFAEF51190201AC25E45C821AD | sha1: 46C9C76F656F137D46A91A6D0A4E3D7F3065DED8 | sha256: F1CFCC6E93595D5213A2A1CB4158F1D11E203E8DA49AF6CEAFE4AC85B3D551F6 | sha512: EFDEA7012AA3AB584F7A63FD44CFA1F9E199E294D319B3EE63C966A153EB6993200792C62CF6E6E555BA930BC7BFFABF62BF469AADE644C587CE29535C546C3A
tools\bin\System.Diagnostics.TextWriterTraceListener.dll
md5: 0BE7C259C2CF4198158E1F5804FB3C48 | sha1: DC1D378D22A21F6FF30311D9561B1FE14D319B0E | sha256: 077F5F0087405B4FD8A5650427DE59E732916AB5971C0B6C0FD0B19697573365 | sha512: D8354E2E9D923F4B104CDBBD8F21796173D9D6FD058A84EE7EBD03026EFAB4ACBB83196463B8A17F2EC61972EB72A3699FD80AA4F722261D1CC88C2DB67C8A67
tools\bin\System.ObjectModel.dll
md5: 5B3CED5603629402A09B9BC730C4EE42 | sha1: 7980180D19B940E726B56DDA6357B70C1510267E | sha256: 54031166ABCA6036DE471D0C129F6FBD8220600C424FDCB55B9836B7E8BFEDF3 | sha512: 61C4B15DD88804C86497A05F09575A37D9726DD6DA2D7CFD1934F8126EE31B9F883152FD51CE883C6D8B3B865F90452DA47258B44FBC3808EFAF8CA2D174344A
tools\bin\System.Threading.Channels.dll
md5: 7ACCDD9347276B4F6EBFC16D61920B13 | sha1: 276897BD625F29F2B49824A610B6BB2FB0AC203F | sha256: 50B55AF576D35FE200D46240A6E072B48E7F2FF49B55B7281E4CE5D70ACEC2DB | sha512: 457B715392286439F7D8F7A715FDEABFE877CE3EFC9F4E953FFE9D6BCABCF9E2682FC0EE744A17D7F08937BD02C4673FD3A627390A5A92680BA9D7E454735833
tools\bin\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 638C675403527BC299239D00482B9482 | sha1: B124ECE05CEAB066D2332B18ED77322106841EEC | sha256: 2A8DA01CE0E82A281B7CAC688E4A73566469AC9CD8F1BABD9939CABC0E6DC538 | sha512: 7569BDAADD8CC4CE5EB7E5BF5B27AC5DCA970DE233B40A66D090E473BF2B39F6117FEA9EE81A416E0144ADD3001240576E99A5CB90BBEBA40A276087143F8BE6
tools\bin\System.Diagnostics.Tools.dll
md5: 7C71368A6B2B3E4F289BF5175092D238 | sha1: 4533472A2BCD381992AA21E7F1B65E1AAED78E75 | sha256: 06AAA300B416093741A9A4043BD4BE97EFAB37D263678828D9952C513CF59CDF | sha512: C39FAFAECF12992B682253FB8D6D74E32636E886F45B0F85A597D8122BC944A2BE8A58FA49C45EE1E8F2A8EF8E42FC14D80B5328170DAFB3F2EDFC3D507637EA
tools\bin\System.Private.CoreLib.dll
md5: D4BA61A04886B01F199AD7E306EC6F8D | sha1: 599AFA89DF64F425CB396C8E93C63535BA5C6E7B | sha256: FF30BA57B0B5D59286A90AF3DF9408F322C65D666CF1C7E7A420331C2D2B85E4 | sha512: 6A8ADFFCABC7C09F520729338DA34B4A41430C8FA1B7A1EF91603C876E7F3EC9204F178759BE1CFE4005FF42E7C40762921E22346516569585199A44BACB1A34
tools\bin\System.Threading.dll
md5: 920FBC26E4AB06FD2DDD8FB539942210 | sha1: 967848B060700EB844B36D3F2C6325093AA8C2BF | sha256: BAC19252D7E7FCC29C4BC70589DEB4A550681718B6420BA57010A092B7524C50 | sha512: 346C583021E991F09E392FBCE271D91C27B69F26924B160F6589753C27AE9A86999E2E1C63928BB4BFD9EA6D76C2A6590AE31F9CBA3FDB8EC3E39ACCB50FE3E8
tools\bin\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 1932F4F260194B262CB5D4A7A201A8F7 | sha1: DD28DD60CA0F23F29E21D3857B5061A8AF06A7B7 | sha256: A608A31C285D2F34937CE2DEF795E4FCBDCF73AE2C95A5E347F8A8E56EF9707D | sha512: AFBDFFEA0FB260B870B9AFEC90823E38F39242DC0A8846EBF224A88D74A3F318646A7F06AD38500CC691E70B1EC62C0966219F27F8F7C86A2FB7E11F9FF5C5D0
tools\bin\System.Diagnostics.TraceSource.dll
md5: FCD827A4FA5BA09BFAC52DFA746FFDB9 | sha1: 782E2D8DFEEE0108620E2EF13BB34CBE6EFFD741 | sha256: 630B5FB777BB83681A4E83949656374E7DDE2014A20A24522F61BDE8D25585EA | sha512: FF58542FD261B8AA0A2DF45B14B8E02E159AF4AA9EB2725ECECA2CDE7ABAA7213404721EBF654A01B75E9CAE34C4D8450D29E7ECB9DB9D77912BE8C95DA8C2DF
tools\bin\System.Private.DataContractSerialization.dll
md5: D1E509D4F6620FD22D0E872E9F26B2F0 | sha1: 5DB1031E24977F5A46D6B37D25F7B6C3F5CB2DD6 | sha256: B7DCDABCD08972D8688864E74F6CB6D6C6607A56D3C9A18668268FCEB63B207F | sha512: CFECE0C00FF916954C2B2853277ACF4904460C1A9491BC4911D4A5A21D5499604777BE0C4F771BDC765AF62A436E8702CD0A9B7F792C5CDBB71B9C290EC35DBB
tools\bin\System.Threading.Overlapped.dll
md5: 8451B8F910FC4418AEBB063AD6F8F64A | sha1: B88429C5CEBF753BE52321EE2AE61107E35866B5 | sha256: 2A0D890EE1B22D51B247C11561C1603972A5F28D0B629F3782925C93995AA602 | sha512: 31EF8A0034C81FEEF36365F319CF296D665204CB22B5B08A739B97E69429100FD97916720F99CD3B09B9E8583309B3EDA43502B4814E6D8ED78B6D4619E87746
tools\bin\Microsoft.TeamFoundation.Test.WebApi.dll
md5: BF261C8CE4F77FA32B43898490C18831 | sha1: A013024F25E6A03873E8D8DD5BF98BCEB4156D94 | sha256: 77E349359262E5E43B2C78E62FB05027E8BFCC0EBD52EE4E56D7C523382483C4 | sha512: 3281B4B6C43F49F7E7079D1CDE30B672EDD68D0B278AEA66EF726B71C0AABEA75AA0D73C2B73CCC6275A60236DC8436C5D9102C38C19CF2C9C927090C3ED8D22
tools\bin\System.Diagnostics.Tracing.dll
md5: 6612E09D3DE3DF91B61F3291BE5AEDD1 | sha1: 3354E83AAEB61B8BAFE03A2E482A9868B5FAD723 | sha256: D0F033C40A01A49FBD98092BAA26B85A98993271F9E8CD648809E92C0C71B286 | sha512: 0EFA2387B58D583E662B9B7E51103C67E983E3EAF6A95E994F09E656C6A5F65856D94D96ABA70BC36C0B529C7EAEC24C2E8F9F28E55EDDC113A41896079F8546
tools\bin\System.Private.Uri.dll
md5: 85597F7DB9AC1EF430D94FBF60C97446 | sha1: B2670211BC6B99590C9EE18A1408428F45F33708 | sha256: D737E8DEDDD0CF491D763D4F06FBC7B5C51234800609772BF279D92D22FF2005 | sha512: 4A34AEE82998269BFC40EEA6854DD272F5F9FCB2C366A48D0C7C3D868C698C6C90F813FC428B746221387676E29E0C97AE4E10A1EBEC16A2D0F96FB2E0241691
tools\bin\System.Threading.Tasks.Dataflow.dll
md5: CAA6A46852208EF871DBD8E5C75E1D87 | sha1: F246DDF8F7344B77B195BBFD2AE32EB0FC7666B1 | sha256: 1FDA1DC7AF9CD6E5B969A42DE173311C2E6A77CF9FDE22311A537505B0182A5B | sha512: EF197EAFBA62BDBD51EBABAE8CDC2EC48964D0659D4E6601610EF110C7993254427447F61050058209B354C3E14C6B8445410F3636FBB5A8C0A7DD95B4069016
tools\bin\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 7AB6047DEEC1222D346684A7E0CFCEF5 | sha1: 70221D1DABB621B6105CC20E7372FA57C53676A3 | sha256: 51DEBA0CF8F10BF3B301A13322D861523A6A95657EF7ABDF3365C03A23FDB86F | sha512: 5366BAA94AADBB6AAFE000190B0CFB2B2590659C857B21FE5F483F68DE387BDA8A5108CC629D1CCB138286D311A68948C1591B7A751F15E9004EDA2EE63ADCCF
tools\bin\System.dll
md5: 49AF97E7CE355692D52DFFCEA591B108 | sha1: 13D7AC34C3694FD3B135DD108022A6E2453180B9 | sha256: 893F049DAB81201C8606777C7083920441363F4D895D691D82D9026FF7763421 | sha512: 55D8F0B550E6FF7955843E3A92B2E16736DE217DD11F17496350BB33F9ADEE7C7E29D4905B59888E718A56AD65C2DF027409B9D7197072923913A8FC583906D4
tools\bin\System.Private.Xml.dll
md5: F20527B49B48F9D7B1CCCF96C10A3C3E | sha1: D4E5A6470C63C2D75DA633290573E0DD20BBB0DA | sha256: 0A866E469685826E405B8FE33FB09CE99B9EA8A531B3A9A1101919B814165C33 | sha512: AB3386F9E0AED85BA1063752202331A2982D4F1972F1C8FC5C4C364D9440D8C3DBBA92F01EF115989861D2AB4E50F498F00968FEF5BE8671020AD62D0C8EB5D2
tools\bin\System.Threading.Tasks.dll
md5: C54B324C8AD6407FC2F4B87E111BBED0 | sha1: 07368298CD3A9BC2FC7561715672E03743AA67EF | sha256: 26231663A9A61A9C256DB9651DB15F0049814CCB71F6CE2A21D2E7A09E1A18C9 | sha512: 031AC219D310A3500B2619F58AF52509EEDBE6DCE42F8327ED074334F5C6449779C3E14F57BD738CC60FBFF0C6E1E6278203C11D37E9E957D0ECC1B6D874470E
tools\bin\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 64F42A0E06707CD2D75B3928D0364A60 | sha1: ECCF47B0A2477182B55487D6DDBEA26A7977EEEF | sha256: 2B6FD4D4CAB5CE02DB312859E37E8AB4DD92EEF38476B82E44C687B697151D08 | sha512: 76FF1833DB26B12D92BEE28E457A9AAA28A36D75116022E2EF7F37B864E7B1536E988DAED04E2058F13F9AC29530B094FF439D1FE37689AE87A25C7D42B82B86
tools\bin\System.Drawing.dll
md5: 32F22C79047316F8E6B070A2BAD12635 | sha1: AF8E4B4D6DD4D91AF52744D954395F8AAB01F30D | sha256: 1AB784DBC3B22F817BFCD72272ED8175E64B594335C7080F6D127CE02A412A19 | sha512: E92679AEFE4BFFD1BF832EDA2FC3407C1C90E08B829D5073D7832E3609E461178372687FB1F0EECA8FC4A32CD6B0E3939DC4A7222947EDE786D04769909A7087
tools\bin\System.Private.Xml.Linq.dll
md5: 31DC0742890BFB31F8A49C075DA20FDD | sha1: C5E255FF59DEB51CC376F1D7FBEA63C4581AF709 | sha256: 2123716905A615D68800A3147CE7227C8099B74B16CC7C2DB232C763710D928F | sha512: AAC9C82402568C237869E2304FB6A7E7EA26CCA3358A7D91F068D5E59626484E2BCB5FAFCC69ECE390D3D46C9244414721FB187DA7A459EBDA8D03EAB096ECEE
tools\bin\System.Threading.Tasks.Extensions.dll
md5: 5984AF7AFA8D78423BB9A9AEEF982CFB | sha1: DCA226B4C8521CA1A210D3DEBCF0ECB64499B2F2 | sha256: 47AAED7037C4014EE9C89E91B1366A0418F6704BC6E435EB3A488F03A6613777 | sha512: 008AC32A58184A41FAB39DC3B1BA93CB22CD58643544C67F8B3B12A49B578203D3A0E83F3CC82A04BA434A25F816EECF5392267844FE145B16147E57D32CE6FF
tools\bin\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 9DDD55F10D2926E5F78E7A426D677762 | sha1: 0908689231B06204F444189646D9EA9127C6F82E | sha256: 7860D7DDB616BAAB1ECD5059E8F5509482BDD91B69CB82C01D777FF4133550DB | sha512: 50F0D7950013D5302A4FC0361E16ABC6C9E49951C59FD396BB754B354B448B12896226175232905234821DC38904E486AE947C7C15CA4695191FEC4A8FCBB972
tools\bin\System.Drawing.Primitives.dll
md5: 2E3DF7BCAAAD39A8C955917DBFB56F9C | sha1: 425A2D361DB839201C427BA684A4D08C5DC44C65 | sha256: E8F5231A8FEC13AF03CAE751392A4A2EEE374FF62889AF227AE09496F56FCB79 | sha512: 60D2140138BDEF17BC4DEBE97FE221FD5E5479743D78EE2AE79A26C6247DE42F543E956079557B9DA5DBF5B9C07C57489D998D965FAEC2766ACF7ADC5E7C3C64
tools\bin\System.Reflection.DispatchProxy.dll
md5: 97C630A4EB2DAEBB243076980A18BBFF | sha1: 70FEA4B8ED211BBBF3B89E6CB9B423B004E1B8D7 | sha256: C94C77C29DFC3632EE3D1F033B527A70EFBD87417CFF3ADECB07BD181FF94AB7 | sha512: D55AA5E68E08FD9719E50F5CC88897BCEAD461C6867A79249F3D975936864990DA71D051038B8C8306A0CDDB1C6AF3A0856E2369F83D368827D3D3635BE10546
tools\bin\System.Threading.Tasks.Parallel.dll
md5: 592961A84B021A87D2A08F8E5E6FF3CD | sha1: 61D47BE7726EDD0D3305DE0FCB9C5FF7192F336F | sha256: A4519B4D805505B6CFC229B93BB8766FBDA6ADDB0F973F1F4744489D9391BDE9 | sha512: 2D5648DF28256B2EE20BA9A94338AD2A5AE15D63745C21B03C7D5278320A45DD1218BCCC096A31C35BACB3A046F259EDBCA3B939B7BF5F9D6AD9AB0CC2CFA62F
tools\bin\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: C6E9E54BC3F8D9675F0004D801A1C3A2 | sha1: 1C6910BDAAF5B69839B9A963F81FAED101517702 | sha256: C51B27307D8ABFA690B93B463B8C59FD7A29E4EC9D0E4413723DACEB2EEE668E | sha512: 53FBDD153A05EC6BFC5C61CBCF96A18AF553349284ABD59C61B8C2E2F996BE31A354A50250999B04F398AFB126319AEDF5E7BBCE7CAA1E87D21616EE1BF0EDF9
tools\bin\System.Dynamic.Runtime.dll
md5: D905027B8CA06984B4992FB4EA5F74B8 | sha1: 87BDE2CF20356D8725AD4D2E37072BFB4C5C4F53 | sha256: 3699D968196B34FF3F2D518F59990C4F7856BDC1FD3ED7318C7EFD372BC19E1C | sha512: 8715EEB572EC9A81C2B510B48C8E14107EEE2CBA7ACE8F97CBA5584F05F50105D62C1073445EBBE803176B1A0EEFD892F4F135C4A61BB1B11F4B38151FBE1FA5
tools\bin\System.Reflection.dll
md5: A2F3598F77AA9DC1A7323D42A55AA1F3 | sha1: 63B4C152CF10C2275BD4B89008AB7CCAAF0794AE | sha256: 6B780EC242500DD160CC7517BB1A71502BD569F0F0F3FD89979D3889E9D3C3E7 | sha512: 87EC6A7D40B4A398A72D6DD11FCD9B4A9A9A09B3F3CFDBEB22E04E45BB3D58CBF575D6562091855FCC138B9D0B7E074F1D7248B95AD9C2121F28C37C1176B6BA
tools\bin\System.Threading.Thread.dll
md5: B93710201CA15B322FC9374B0D260B21 | sha1: 9C4FEE43540ABBEA008D803FB06B15E34BE3215F | sha256: 203860B4AC78FE1CFAEC81E5434085A09C5A2B5078C970D7942F1EE354765FCC | sha512: 02B34C4CBDB1F0E242DE97B782F90E7807A1204D04027A6461067177B9848010A70CB6B3C9347516F7C2E5397FDBF2AC41819CDDBBBEB92B752C82393F8AC2B6
tools\bin\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: E142DF473D8601329A01484ECEC2A5FD | sha1: EA9C0BD452C1DC5E8269B9379AF50562BC954816 | sha256: 6BBAE69E61810F4ED5D35213C9A8A57EE482A7F71A3ABCBF7A6339B580DE1513 | sha512: C7D23F7E794B67215C22D0BF1F19FB23D6663494FDBA236C7033B5A8D0B0190F7D8A9679FA7EE98C682634A760273996FC22F6A649D070CF1CA001C6A259ECB1
tools\bin\System.Formats.Asn1.dll
md5: C1998686F2A685D8180E59AFDEDDC51E | sha1: 85F5812BC31A2AEDE457953E8FCD1D825786B453 | sha256: B972675EF0F3847AA7DCEADC81DFF97EE57B50AB35D8CD74F4D78353028827E8 | sha512: F31B1F1729D1F1705A69ED94D6EE6064E41D072CF009C1EDACFA9F7025076780F02CE773916B98036000CEBA97F151497886E683871842DE84143ECC2AB7DDD0
tools\bin\System.Reflection.Emit.dll
md5: 8B78A8B358918A5D67B4F769399BF35E | sha1: A03D566007AC680C81E0EE51299B7B7C54ED3A2F | sha256: 0C5A64C92309D5B341472D9C3763400C17690E90C686CEC6C3A3AF5AFEE43163 | sha512: 605E558391F7A9BC9C9E42F3A0DB87925524DD232474F9E2C7CEB07C2C389799107B1D39C7829CF38393C6A525880F4F5F5D50539838A6EFEF37C0084162613E
tools\bin\System.Threading.ThreadPool.dll
md5: 5099A7DD5D6E2FEF3DFE6503430D73D0 | sha1: 74647390D97498B639821B51A91376CE1BD68DD3 | sha256: 8C0D3198EDBA386A584C3C03898D55E38BCA2C34CF9568EEA4A91E60000CD1C1 | sha512: 844175BDB52CE994F58E4C60F273F4EA61614DEF74A186E00C140E32499093BE87C9DD0336F15BA26C8903377EA91DE43F0FA879C51BFA9BA2C6509F876384EB
tools\bin\Microsoft.VisualBasic.Core.dll
md5: 57E55CF0B2692CED031405D59E2D7A4E | sha1: E0B7619A84FED3178DA867D82CF39831A27EB193 | sha256: 627DAB5793CAA43EBB9EA2AC150E35A0908C43D22CCF030805EE2986F6135BF8 | sha512: AC2415D912E2D57C4E3826BA9D804C004DDD6F113A8A7A15733EAFF472974428F56C160F695F460B4A2D012D44D60A8BA51722B4AB05BDBD86CF96EBD1DA554A
tools\bin\System.Formats.Tar.dll
md5: A15CB428250B0B067249D78EE94261BA | sha1: 733F8ACF27C0086B25C4F4804281B5F4F6073DC9 | sha256: 0902DC70E6C33462F1CD76EB0A276EB006A6A3DC7B27BB923404B4742F530E42 | sha512: 6339712542AF2017FA368DA727E7A06D697886CBDED7D1F226AE1ECF8EF1F68A6932389BA40D284CD45FAD702D8452059E30E31AAF0E30A1BEC62C0D12A9E201
tools\bin\System.Reflection.Emit.ILGeneration.dll
md5: 8D7073AE59C2006A8C87571A83B76656 | sha1: DDA7A0B3E8C59E98C177BFC08C5539CF21DFF798 | sha256: A5CE6500085E7A32F2CC2CBFC6C51854DC6FC3F2A8D60F4339D907A001972D8D | sha512: 495A5EEA4B8678ED2CEDC67B869D27299647FBF63E1FFB6EFD91A4B62E266E1141F02385CCE0F89510B6886458709D1E91FDEFD97F89BCB5F242ADF2965E5F01
tools\bin\System.Threading.Timer.dll
md5: 4F7D87907C708FC56A7B719269019848 | sha1: 045E0F0E531DABDFFBC554C2A15BF1E86ECC0D2C | sha256: D113C81A819140CE952C1004B374BEC9A788F6619AA13FCE147DE095CFA19B88 | sha512: D2F658C1754AAD1896CB23064A86C31F8423567D140520088BB2A6A86D50ABF906127A0A59D07FC637BA5915BA08F9E837189B00281FEDEE508BCC584236B62B
tools\bin\Microsoft.VisualBasic.dll
md5: BBA3918DB7B62FC8A9020B7690C097A4 | sha1: 8A8B7D67F8A758E941D5ECDC4CDA4BF76EF80C82 | sha256: 11F701D5D3F52E846CAE36992B94DD10D87418E206E07891750A9D8179C612CE | sha512: DD9BA087B04C37F33312EBD8016CFAE7A02848579FC323606E3E0B2B1C9BF02C8D486D4ABA37DE6F484F6F11D60831066A988524E4FFA420D0D799C1B56317EF
tools\bin\System.Globalization.Calendars.dll
md5: A6062BB9F1C19C2CF759E07A2B1D98FF | sha1: A71CDBC468521EA8699AE8D5633C99D202D01410 | sha256: 27DB220C17C7D00FB807D7F4D8EDDCF833B498C798D91B1A5BF06A443D9EB36B | sha512: 568FCD575BDC31A31BBB15FD1F78E1E33C79837BE75EAAD3679BD5610478C60E0CFC749E5893AE92337A59B00AB94345A13CB00C84B235EDACCCA5A3FBDB2749
tools\bin\System.Reflection.Emit.Lightweight.dll
md5: CC6775DFBC077911E5B5840B0F7953C1 | sha1: A20A55DA8809BD636955FBEFBE2D3080455369E5 | sha256: C6E294E1EE08441374D91AAA42CEE7FE84FB945805BCAB077800377E04C7CCA3 | sha512: BFC67DAD09C9667404546008384AF62D9A50BE2EC137A75C1411B41EC48A2D2E4A7628ECE2DB67C7DB9E57EE9CAFCE00C6F81CDA184B1208978A6C7182C8FE6F
tools\bin\System.Transactions.dll
md5: B1420E12F5F7B3CE555081BC31773B22 | sha1: 5447C36B2CDF0BDB4AB0E3B6730FE95E0EA8A634 | sha256: 26C22BCB3563BB529029D814373EDD91BCE4AEFDDE3647F6D8954DBF0431A8D6 | sha512: F6CFEB8E102B7F7BDA387C846C8080A08BF8A381932638ED62E14A04DA0DBD0A90C1B80C32122A24F46CE83F3C08144CFDF8849034E0042AC8621424908F8492
tools\bin\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: ACE341A40984129642D427AA5767F46E | sha1: BB4CC22B07B735C3D898D59F3E8952DA7636E222 | sha256: 37F3A90A7514CCECD317E25FAF7AAA558D81516F70EC238F931889670EEF0D66 | sha512: 5E12467DD6F88A7FC19DAD80D2F9BC997ABB10BE9A6E26A26F1EEE5356C88C8177EF102100626CE2D07890A5FF3A30BFA038FD558F6C7B1403D7149C88C24FE2
tools\bin\System.Globalization.dll
md5: C9591C1EADEB118D893ECEB3E28CD8AE | sha1: 88FEB46940E3FF906E29F7DFEDC9CFBD8E6B1AE5 | sha256: 674ABBC802CB7318E75FF42F613D58EC1744A75B2746ED5B498AB9294560E927 | sha512: 93FF8F28A0A999D4F9E267A241D7C4A7DED3CC7991BDB38D055B6DCDCD90D94216C21E0C9787072DFB27290C43C2F5F1E53DEE040319CB8BD6A322B471BFA31A
tools\bin\System.Reflection.Extensions.dll
md5: 01B8B6648B62E8D3D75C57E021B42DF1 | sha1: 58845EF8BBECA84F987EB35D4332D8AA020ED1C9 | sha256: E798A03FD55D296CF431919A92FA2C59E943C57663EE39BB241E8C292DBD70DB | sha512: 5BBDCE29687F88F5B4806D43D7FAF5DCDD5DAABE70A14019ADA8AC3327E9EBF1E412C775D6426EEB2EB8386B328AFCE5CAD725FB27EAE9107AE5A754604A3731
tools\bin\System.Transactions.Local.dll
md5: 58AC1B0402EC35C7D4DE581630633017 | sha1: D549DD49FF13E9D35027B6B557CF48A073568080 | sha256: C339982A22A8F8F7A36733603B6AC3C9929FA7DEBF074965ED0F7FBA49402D3B | sha512: 135C500AB204DD2D34327E0758151058B0DDA0979E29CFF83A18C531677CD613F8C5C51318505DF1C4D58C66C10ACA5284EA678D8085BCFC4A61B15BF60C1B9D
tools\bin\Microsoft.VisualStudio.Services.Common.dll
md5: 21D28808A0226F5EEEBD195F4916F0FA | sha1: 1C0CFB78AC129DC2D30FAC087CEEEAE8D6AD0F7C | sha256: 3DA940CB83D463F13C650260BE110666E29DA91CA6A9FC7E1D6A812A90B33195 | sha512: 7EE84DE26FA5625B548D076B31E743DE40A096671CAE1627D16420A2D84611DC0D57935F79E41F28AC59B2CD79688F8AE17B127EFFCA6B65ABF910FF4BF09524
tools\bin\System.Globalization.Extensions.dll
md5: E51D4CFBFFC5C272ABED16F06E1317AF | sha1: B43FF8F1BDA313973F7DD10FF550B6DC67418883 | sha256: C2F6CC1F96097825E8DA5BE164AAB9E8DFFF22645B9901DE7C0BFEDE26E06906 | sha512: 0812FF67612E08260CFB47F628230C93EA251DCC49AA1BAB86BABF61338BBD195B1B7E11B38CA4415A06DF16D5BBF45967AAACA2D0C16804013111D3E186CB88
tools\bin\System.Reflection.Metadata.dll
tools\bin\System.ValueTuple.dll
md5: D6AAFE3841309F3DADD4D096B899A975 | sha1: D90D5B5962AD0541611A957D2392DFB999818C3E | sha256: 87564225077790AD9F5577A59A307C43B6CF7871C91130C8ED41389975F0B343 | sha512: 869FD986CFBDBF38573D63ED16447F75480EDDAEC8154DE56F336B595D7600EBD0091D5AB5F9F2C9FBC9ED1FC50132CDABFBAC6F4CB4C96EC56D0A793998BA5F
tools\bin\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: 5E053E0B8F1C406484EE2B8B7B098B3F | sha1: 1D12CA6F444E6BB42BD188E82ABBABB235E8BBF4 | sha256: 488A50DFB55EA73A273957E23FE80A75227574F1295E9A2BE78A3C8F573A972A | sha512: D4D6CB74F0CD9980704FB1E488209458A97BCF8EF2FB254ADCE85DF9EA7A9ED62F9D239CFC1F9F74E2D907D16DD12E1873DEFA64E788D23C7C6FAE8B44CF460A
tools\bin\System.IdentityModel.Tokens.Jwt.dll
md5: BEB053CED12524CD30929C39FE042C47 | sha1: 921E59D904D6C8E2BAD5FEB738C01798A83ACD6F | sha256: 64ECBB6C584D9B3394CE519EE75ADEE80D4AB54FFEBAAA8423A08F105B34C9EE | sha512: 739AE832BB78F84BAFDC15AC6F7DE9CBEBE30FCC73F4FDB8829AFDDCD18ED3959FA7665FAEA8160FB75BB4574DE299EB7E0A2D794278C7C121C208CE334E01EB
tools\bin\System.Reflection.Primitives.dll
md5: 4932061336439929107216F134636E60 | sha1: 230EB4B5CD05BE516D81EE05439D96D53C6CB997 | sha256: F5F959D8DF27ADC570E9C0D38D6E454BC6A1619EFAA12658DF634C840410D044 | sha512: C1DD21F748D32CB2FDB6C156D6DBA661C92B298891EEB969B6180D67D9F321374BC3A7DD8A2C7F7D4C777EBB2B296B3BCE795E0E1FD1ADE7B721818D11B623D3
tools\bin\System.Web.dll
md5: 11CA6978410AAC9FB022CC5C099FA04B | sha1: 06AFA3A85B027AFB1BA182CBC4110397A2CEB779 | sha256: 71DE23941649B629D97BA73AF7678AA0314F365A9EC6FF3C3086E5429CE0A175 | sha512: AEA2D3AB7309E9A7B54A2D2E28036B7A73355B2333130703E4A2CCE48D0491A4E06E6ADD66B27583A76155A697098288B2BCD9FD34F99C7E52829CC9D838F65D
tools\bin\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: 792E37DE56670C24EE3E4A85E38B5008 | sha1: FB77F633E7BFB264F7E025CA6CD3BCF965C2884B | sha256: 001E04F3C8D4C868DE65C5283F2B2AB1F295E3231125A89CAF5E55C811E86961 | sha512: D6AE5C59DC1E9A239482A8DF04E15254E507A9BE7404CC43AA7ECA1AAA6078683DA866AF42CA36AAFF2518AEB26D080E74A3FA591F40FC3A2CA207FC8FC748C6
tools\bin\System.IO.Compression.Brotli.dll
md5: 47E56903D23A9C458BEA87D7924F312E | sha1: 37CC513BE002B527BC361D87947319E912929BA6 | sha256: E560AEE3B45BBC8EB2A24C98A489F3E678D4E47FC51FB14BA492B86818E91B33 | sha512: 6E3678CC31253156E1E7696143851BFF8024B7B78D3206DA7DE9C675C5F26D3729E3F5928577763CE16C187B4769D2734DE607E3C222FA446CEE13779ED86680
tools\bin\System.Reflection.TypeExtensions.dll
md5: B5D1FF8596EF88DE5D8E3F2DED9AF8A3 | sha1: FF175ECC2197F8B5A93C3351F8D7891323A59E18 | sha256: 4FB3EE26F898A5FB0510F19491D959CB504DF2E45FC17C8DD235DA346A00EE00 | sha512: F35725852B35BB6ED229BF298CE4389E3DE31799532CC8D79FFA76EF0CE31FE22E2AE971654D07AC360F04EC9B7E16F13116A67B508644DB5AFFFA03330011B9
tools\bin\System.Web.HttpUtility.dll
md5: 161B8A257DC1EEE7C6A075446B2C8DCA | sha1: 6D5A48602643F0B1342F3CDEAB45EC26FD9AB6F0 | sha256: B6E3C5A40B4D21CA32C4E2744E9CFBEB66101F2B8B880355C8279A0E53C2B67C | sha512: B6063019397C93A37050F61F47CBF022141B54DF4D9B03384717F7055448D6CFC63BB73551A0F7CE6671E7D5E53C9D26B7FC7E83A937B1D8E49D44240B7C844F
tools\bin\Microsoft.VisualStudio.Services.WebApi.dll
md5: F947ADB42A57F249F3273FB6E7C08AAA | sha1: E4BFFA788FF3540E40AB86AF59D87F720E4E7397 | sha256: CBA8CF26C69B7675740644BDAE6085940DAB13796D553B64512A49E966B8A0E4 | sha512: 324DCD37DB92F1AE0D9AC08BFC02131D7BDE7FDD0686B6389A5A91DE601FDFBD3BA9036CC44EB3808BE274EE96E5AC65F68A454B0657118310C854844D35E3DB
tools\bin\System.IO.Compression.dll
md5: 11FF6053D38902C998F1E024AAF5897E | sha1: 19F366ABAF21C6361A9F52D8CF942337ABDB8141 | sha256: 7E72E9FF78DBFE10A1B9A60B1DB36B737460019D01855898E8DB3B42549F4332 | sha512: 114D9EFB380A5B04637BCC0F111C5722EE4AD661F6B2E675CFA6E33542A593D680A9C0252CD4F3621D08F92B993C8F0147B8C1ED9F76FED2822C6AE95FFA9EF8
tools\bin\System.Resources.Reader.dll
md5: 9809001F2F0AAC4FCC6C032B88702FBB | sha1: 83D3768B045F380A28D669ED1C3140614BF5AED9 | sha256: 5C6086599EFAEFF1625BE41F6AA4192660FC473AADE3BE8E54456E0A4EA45B68 | sha512: AC24BF2142831FBCBF5E0E4B366C576F783DE6507A6189FC5DFA40A23B45709C9BC2841BC7185AFBA04E4BB6647E157CFCAC234A3D9BF39390C1A6963B3DB060
tools\bin\System.Windows.dll
md5: E54DA85D3AFF2C34E9FD8D65AF553E09 | sha1: 2F478218C50A57F8104CE255F13303A499CDA7C8 | sha256: 86B16D69D7214357FAB620C0FECCD7F90AC143D07CED98F25C83D392CD8F1735 | sha512: 9FA761E0FE917B984CAF421ED8F225E477740B8DF79CB1D5457A99B132557B607E039B275035677C846F8506E2206855DC23E282C1EA35D73C145F08A2528FCE
tools\bin\Microsoft.Win32.Primitives.dll
md5: 0BE9897D67549E3D13E8253BC4003955 | sha1: 933879FE389C5F40399DE43A1D3750AFE9AED481 | sha256: A26D0EEE10513FA6A178C6AFFC29776B2B5496F1018B6DC3BFBBBF63D9260EA5 | sha512: 0C9B77F969EFD4EB5F643C0B833B8E75E6D70390815F462D204D2687CFC90FF93A93F6563F1AF4869A3EB0D38FB91B1388A8CB896E7AC6CE92E56388A689C820
tools\bin\System.IO.Compression.FileSystem.dll
md5: 9EB4C6960EFB6191EBAE6E7EA3FE94F3 | sha1: D801F01AC50B6EB95E813E2BA38495B2ED4025C0 | sha256: 5229B639CFEE07E69113D55F9CF55F43AD31DA7B0EDB7A4B0D67DCBA8FBAF509 | sha512: 2B579F00DBDC83D6250C5D9795AE7263AF55F75AE2F1C48C2D7891C0E24865F61A24E284A463427C7066707DA284C6E940BB1DC451347A85FEF57E201AF31D38
tools\bin\System.Resources.ResourceManager.dll
md5: 62890F65514678066217121FD5118BB6 | sha1: 5E13A757FD05AA065B2D6CE15B09527DCC258DF8 | sha256: B3A86BB2B2229923060DA1AD4FB9C7D58701B39A547553B2F6837EC1BC7BAF0A | sha512: EB2F495A65B7B343076F0225162F0250D19DF250932E482F9E17F2051F57F7A4C6E333B65B0F5EE585F6A65B698FF8190EDD8CC136FAA9BAC0EACB6F0D53FABA
tools\bin\System.Xml.dll
md5: 69ECE97CB1C1CCC989471860B0A9AAFA | sha1: 79F5702FE46C7B46D6F9764887D6C3600C7C742E | sha256: 9C91B928AD095867F9E63E744D1EA974821443F27270BB84C02135CECF76C515 | sha512: 9B5522C6D5253BAB479B42DBB15A1EB9FB53C43BF0D88C29CF1731A0B2909A9CC3FFA39C61106A6B531E680EB927FABEE653AB984C4841BD4CE0F5FE9CC98237
tools\bin\Microsoft.Win32.Registry.dll
md5: BB443091D948476C2B3EF6CD1BD8F411 | sha1: 2A051A7A25AFDF14F564E701DBD9C0DA7080E8AA | sha256: 5C6EA0D897557C6BC8FE7C9B92628872399A2F8DEEBA9BDE2F369056439958DB | sha512: 316AF51B988C11E782DEB0A75ED81A6A42C525BE82664B643C6C0CD01DBF17B4D30828767105A076AA74032F214DCAFFECE7DB698A86361CB3D4F5408FF1FD9B
tools\bin\System.IO.Compression.Native.dll
md5: E011C8FC8DD5AAC564FBA0B77594FBD3 | sha1: 4714ECEF2E691195357DE0DE50FC5FA016B1B453 | sha256: B8B5181CD29292A2E00410EC6BAD64DA197747B841AB1018D9AAC7ACEFFBDD46 | sha512: 47287F9CC8E51E6DAAED1C5453A3E716C3F740D5A70618EFF6E250F33A7B33F2C49E50E4C5CC6F625449E0D095809AB490A8792757FDB2C94E858B9598CA2553
tools\bin\System.Resources.Writer.dll
md5: BB39994E88C9797A101253BB22C8E668 | sha1: 2B7818406E50650B2F69B8D435A9416A206C7276 | sha256: E731F2F8586DD7F7F532E38BF3E234AAB8486ED7114E2F4179609F8CC7C59E52 | sha512: 318F27C0496E77F1660BB2A68C683A5E4DDDC401484FA3FB1913F695871BC6EF7DF960F1B509AAB99E9AE966603D68A8F50BA5D8AD879F4233ADBD80B3BD1A81
tools\bin\System.Xml.Linq.dll
md5: 5A3E2A69FD8E93C269B6CAD4B2C21F12 | sha1: 0938DD489114C91015018BF1945B1FFF8FD73601 | sha256: 2887ABCC464F9049D7E6D110D4FE8C3C975D4E824A859EC9F5869A4253472CF9 | sha512: 62FDCFD39CDF9455D8C14CE49F0CDDDC7BCAD757B0BAA556076DB5159156B4954D694F5467701A1F09CB37501C4E0ACAD66F0C92ED72E5689EB0C669A10FFAF0
tools\bin\MS.TF.Pipelines.WebApi.NetStandard.dll
md5: DBCE6E2C018260FAEF0FC6FEFAD0E847 | sha1: C734C691300040B5829CE9430C6C8B56A4E8DE66 | sha256: 5643812CF9971D0BE957D409A8956B74C5021AF9FF2190D89A18D1644D5583BB | sha512: EAF52992A375C3933B0E895DFD8CFAA26AE67636B7213926F4604F2B17545CD99795505366F62784FC55136399B70AFC4DC8E32ED985FF259CB37C8690CFD70F
tools\bin\System.IO.Compression.ZipFile.dll
md5: 21DEF7493340BBC159021C2B5128E692 | sha1: BE7A76C7A91239E1B5DA72786A0A6EFC2D613CA6 | sha256: EE844680847BAB67ABAF503DA486652A0ECCAC0769F224EA651CA876EBF1E781 | sha512: A8D5AC11E6EE6999B786DC0F1AC63E6F464BC2EE7D880BCEEF04D32C1AD4D179E30E06C57FF536AB2BBD15781DF092796BB92F57D355772A9438FC4ECE821AE8
tools\bin\System.Runtime.CompilerServices.Unsafe.dll
md5: 98B75B28C3920C8BF4E04458C90D9D58 | sha1: D0D16A8BA53672861A5B63AC725883CD5CDC07D6 | sha256: 30BFB59BD3DC0588836183147828803F63EFA5BE7780F5237DAD7131CE55DC1D | sha512: 3C4221BFD6CD70BE88FB1BB9F11524D010C24FCE104CE9DEB9FA4A790E3E96669FB9D7F4BB5778E00DE5F4E9718BE128DE7B7BFED583C6A9C6B445D0FE946CE7
tools\bin\System.Xml.ReaderWriter.dll
md5: DE7D89594B6EB7EFE097FF703EA65C44 | sha1: F7D2378A578C4A1F36BFA7F00361B04D7783A4B2 | sha256: F3B2FBD3FDE205BCE00B65EE8EF3DF88C58AB4CEAF6C5843C2D883F9DB1CDA2C | sha512: 44432C9B059AE80BA35F45617BB0DEC02EC1C762FA2EF6C7FF95EE87FBE352AB47791AF15A134FCF2F6E443F20221A629B9F80701524DAC4FDA3594BF09DA4FC
tools\bin\mscordaccore.dll
md5: 7141A3E6FDFE53AAD6E31DD37C0E5444 | sha1: 19B5F2F2E0B743E9D139D40449B405085E7531F2 | sha256: 58025D4A7F3439481738FB76027B7F9F6166353B33A8E1C10EE3D44722448CDD | sha512: 4F289769F817D17FA97810F8E2F374C8AFC0D2341F82401A52EFD45E8B31D3C85DF9A455567A4016EC89C5FDDC1D6EE1B0856E6A835EC898140476D14E253896
tools\bin\System.IO.dll
md5: D204B18B1ED4FF8A3D1658E299E9B82E | sha1: 3B6C40ADA1577CA3AE5D07D43CCED000FC5777B8 | sha256: FD328E3C75646A2D6CB8BF77247C1497125F9619F556FE1D81B588F9CF94CA90 | sha512: F2347F2B9B84F142AE2E6CB0C22A2CB11DB135BEE77F9A71EDAABC3CEFF6B7712E4763759B52FE99EA39DCA9A148F3A27499E7CD96843071797B80E31AEA703C
tools\bin\System.Runtime.CompilerServices.VisualC.dll
md5: 529806901B279CB92AB68ABF976FB2D7 | sha1: 6E80C32325AD2072CC9F44B3F854AF291A03AEE3 | sha256: 2D848B8723A919EF1A65444C89D3D4AFC2361255BF849D052C78276B4E1B45FE | sha512: 1AFCA18E59DEEBFE9B82D9E0B2E173516BBBFE71D4AFCDCB8F7A399C2243A25FD57A8C269D93A08243B5FBCF7357B62879FD4BDE3C0A13433EF427844B86630C
tools\bin\System.Xml.Serialization.dll
md5: 8691F837E4A322AB2C55812D25E268BB | sha1: B392FDD32715068A239F68E02B3D0856310372D7 | sha256: DE5F451398CE5A547E217D0EDB09EF9A31A0F7C883E792118A9282F28CDA251D | sha512: F80BEC817F2705C531AACFDA338CE753DCACDA241EA3D858327DED13F554F24944DA5AEF2DE876E71E8D398C7A8E5EE657DDE12A21754AC3420201CFC58FB6A3
tools\bin\mscordaccore_amd64_amd64_7.0.22.51805.dll
md5: 7141A3E6FDFE53AAD6E31DD37C0E5444 | sha1: 19B5F2F2E0B743E9D139D40449B405085E7531F2 | sha256: 58025D4A7F3439481738FB76027B7F9F6166353B33A8E1C10EE3D44722448CDD | sha512: 4F289769F817D17FA97810F8E2F374C8AFC0D2341F82401A52EFD45E8B31D3C85DF9A455567A4016EC89C5FDDC1D6EE1B0856E6A835EC898140476D14E253896
tools\bin\System.IO.FileSystem.AccessControl.dll
md5: 1AC6F625B656ECB2C248702F4CB94285 | sha1: A47769CB085F5B528025FD5808AA94A14FCDFB6D | sha256: C4B2E096A8D2B0207C74C911AD20D20FEA2F24943520835B25008AD3BE26CD6A | sha512: 4863A6C7913AB57BBFCA43180A29CEDE41536C15BA1D56D7873BEE908DFE8B54D1D4430C79C8327285B4148E605E35217C88E325782D4EF2849F3636AA08C9D7
tools\bin\System.Runtime.dll
md5: BFE7EC475B8CBE2C55EA608BD3DF95EB | sha1: E094E30B696D5C44EDE0D6066072E852AACB3440 | sha256: E40F27ED4904770085215589C824516F2851210DA2337BC3D83028BD26ED725A | sha512: F5018B887EB7DB4413D57AD19E4646C245462174A2F98D5D7E1C731C29B5780092CAD693D8ADA74CCAA97662CBF3A8FCE004CDEFF9D55048BF262622CDACB0C0
tools\bin\System.Xml.XDocument.dll
md5: A3EB1AE6647AF6941797707AD8FE4A4D | sha1: 5C90CE8CD9036286BFC3E9A1CD4C6F9EB1C2A3BD | sha256: 382E4CCEC5CBF160B35981CA013B12EE94F581FD1B04C26FC37621A29F49F0E1 | sha512: 498638A5D24B54422040C3A73DFC5AA924C6B4697E591B4B3380BC1F2C710E507190CDF95897124B0A3C94D8F0A194B9A89C8EBE9E5822D4889FE944F5A7C3FF
tools\bin\mscordbi.dll
md5: 6801D94BE290EF525B74E057C4613D23 | sha1: DC268E5D9DFAD47D49EE67E2E79C9DBE715D3A8E | sha256: F222AAD869F41CD2C3F059F0712CF44B68761CCE8EE14E469318171531341BCF | sha512: BBC6E92A7D6C5FB0221286EEDC7509D382E80FAB09AFC09DDCF851546EC9B9D079F76C7D31A9C926ED7D7ED9B68C20C1F2BF7ADC0FAC558E70D9C3CA3939B6C1
tools\bin\System.IO.FileSystem.dll
md5: F3E4A4E5D20289022B5B3A718909D66E | sha1: 1405058FE4FA5729943E4BBE1DC6346B554D1E19 | sha256: CB0EAB988B5B895FD74F6D886CB0DE6FEC70423699CB30B0B8B5D861C208B0F7 | sha512: 878FBF6E7B2E905959ABFA20A76D0AC30E0DBE46ACF9A8B1CF4358B3382F5DC3624CD691286CAC8C4171ABD4F75CC5125D4C48B16D5A1C407125C4EE5998EEBD
tools\bin\System.Runtime.Extensions.dll
md5: 79962C9215F1C00AAEB380CF784086ED | sha1: 365DC0A2F14CF2C69B5BABF93F980DA026D53FA6 | sha256: 530156278639110966972826872E53F0BD58D32FEFE403919A1619F5A5CF02C0 | sha512: 196D021D51A2193225416614FF1A0F14B2D5B409AF8C99492FDFD0742708E6BAB5C9A6D186C621674DF83D443F1FA2852D256948270BD9B469910BDEF07FC6A6
tools\bin\System.Xml.XmlDocument.dll
md5: 1B01870592F1328836050FE2DC4B451E | sha1: BC34EAAA93B00E2B0FB279738B2F942595F77ED9 | sha256: 832921F3FDED479E683A8F1DF02510C542FEE9FA34E211B62F8FB868A02932D6 | sha512: B10D650304785EB549BB8BF2B3EBF6A8C3452C8B8CD5B789BF5130C761A84D5216B7B8C2A7A315E2091B25631305E6B1185B75828E4D15C78165127ADDF6CAFD
tools\bin\mscorlib.dll
md5: E574EA8CACD1321052A5A54263E7BE6F | sha1: 0B6AC19C2A8224E0C7D91A2B388F0952408FBD2D | sha256: 184A64F1CA51FF21F9A7A0445B893847FB14597E7F758F515BDD000521541BC9 | sha512: CD91A78F03F14D15BBC0B4F45BC74A9BC9A307D554096E75488283FC17ECBE3CC3D284507771759B0E7F09B3712221F2E0466380BF79B7715C8472CA6E89936E
tools\bin\System.IO.FileSystem.DriveInfo.dll
md5: 9049CE818DD3AEE50C98CD13CE203D78 | sha1: C5BA94BF499D65018FF535030A69C73D466C06C6 | sha256: B3D3ABA5CF579DF62DDC5B49BC9E71341E3BEC9B064CCC13854046CCE471CAB5 | sha512: 9F8FF996257410167105CCE620E935BDCE0F6D5FB024BFEDB11B10AA983E90B576312A3733438A7D1BA06677D6A19ECE4D9B69BB56262DB14A718A866EC86DE7
tools\bin\System.Runtime.Handles.dll
md5: E317C9C1B91D274077048394877FE9F6 | sha1: 0630E5B1F594FEC98554A90EB925990E9A506242 | sha256: E3840D0510C0208F370EC2AB3C93C03C812D51CA796F47D88BC6979D30AB07F9 | sha512: 97D90AD35A2F5724F694D41BDA3F7465C0F428C72AE2D5573F8969454DC11E64C8DD44EF1499B78F8D0E45BE2F1EDA431E1283A30C16404A03C698D18528BF45
tools\bin\System.Xml.XmlSerializer.dll
md5: 5AA8E0596A773E9AAB97667555FF149E | sha1: F8AB9B21A4E20F0044AF655B5E3CCC1869B163C7 | sha256: 94AC6BDE9582F05519C819169AE28C8BCA1406F911F0FB9CE12DD56C9FC857E9 | sha512: DFEB639FAD0BAFB5CE0875F88EB423B205C673FE97C10EF5E43B9AAAE827C243EB918499F1B044A8878A11037B48804BD76A7BD5A0E5BB22F846A9E93F531657
tools\bin\mscorrc.dll
md5: F508BB171CCD1B47762F21D810BFFC1A | sha1: 0354DC5D3099C6BE9D80D3627F00BF7B8BA34109 | sha256: ABA6C86FE2DA4FB65C8843534A6020B7CA5E40FC37A7D72393A614B21EA41819 | sha512: 18D5C59579802D771C6C07AD0F2120E2E9972BF92C22B79114F253108F2F2B430489184DA05A4F72566C02D57EDECE4D5E27D188C19B77A0FD041539EA1F09DB
tools\bin\System.IO.FileSystem.Primitives.dll
md5: 6834EF6617133A0DFBE616DC7DB47341 | sha1: F007A96020A6D8055F0F0B75A78C7C72A7C844F8 | sha256: B73C09CCDCCF3D42CC7C6684CDA333AF9FED8D81EB2CEC036E01FBD11C05236E | sha512: 6121C32FBAC95670FFA4F87E98A7DE20B35B68669EFE06144168534BB2906B2BABDA9A68F799C1BD08027F2632DAB710092CB2A6DC4463B2B2C9C283E372BDDB
tools\bin\System.Runtime.InteropServices.dll
md5: D4AB80C6798DC8E29BDEC6D3B4847E03 | sha1: 30FAFBB0B0EB28A5A84B114BAE1F36D84832F41A | sha256: 65AD41C23B4BED56EC6E20B5AE139545D1F44E86D31DAECE06D6B815903DBF38 | sha512: 9862166EBB7F12ACEEA4188EDCF0533B46B1E351C881382D24C4732CA35940DB0461E079A9049FC7A1E5A8BEF5055B8AE3277B69CDB30289849629E31804B70A
tools\bin\System.Xml.XPath.dll
md5: 5EDFDD62C119F860B21964B4584D5BCF | sha1: 1865BCD660CFDC5B4FC6A3A4FFDCACD2F771E3C2 | sha256: 2B59AB0ED97F39CFB4CF1CB1240AE9D2F4F1A083C60120353339C9489D4DABA5 | sha512: 5F90F8F30BFC4EFCFBC3E497A5B11CD7BE7A38DC358D372165CE91D124C5785BA9C574BABB35FC06D251E465E9A5CF1585ACBAEDF790DC7C5950F9E60B454724
tools\bin\msquic.dll
md5: 401C814883E28F50A13A921CF05915CD | sha1: 237C1F14C074BE648C19A1038DE16E417FF089C3 | sha256: 2680C12FE5EE5BD2928D06627BB5FD6BE8D5340A016CA9813BA909AB30B9DFCC | sha512: 59EF413018425144F0F6ADC0787DF4A864DED5E85EB566724BCF88CBB59D59D2FB9A87AF9498D2A8083A2A06EEF69C7EFA20CA11F84E41C6B581D529C660CF37
tools\bin\System.IO.FileSystem.Watcher.dll
md5: 76D7BD66DCBD611A07D683CA186165B8 | sha1: 58358FCC389848723E9502329F9A20CB2B7EF344 | sha256: 9CEE32E2038766728AF8934A2E75C2F640C3763AEC7B5217CFE6A2591DEA20DF | sha512: 7723143932A417F36F396829BD06B6D7B6C1CA22A4FDD7CAA944E37311190345CC56B55C506B73770CA6D5C165B2AB6A85A43159654C1F3AC3456A2A54AAFD43
tools\bin\System.Runtime.InteropServices.JavaScript.dll
md5: 2137D791E0A21C07F111ACF27E6801E8 | sha1: DF66E9B1F46CB679441CD81C2787AC03A97F1547 | sha256: 963F280888BA5482DB0DF9AFCFEB319CF46FF0180ACECAE41383B80377CECA24 | sha512: 05F7654A9FE11E75B4EAF7B7533B20878B3D5CB878494568087F91E0C2E5CA5F14729539FE5F51DA44A362AC21550BE9B34189E29F48C511FA0B9355ED8EE5E1
tools\bin\System.Xml.XPath.XDocument.dll
md5: 2CF67514339B3C956406CD402E5CA386 | sha1: 455B520D241A7843BA33145DDE36F8D45BEDB909 | sha256: CD3C21878BC62D9D4CB1D999A2711E1AB309EA1C44329323CEF22F891AD39762 | sha512: 1439C121ABB9AE6F9AD46B2CCA2AB2A5E53E65468F6251FAF47A15D20808935D15045CFCC506F183E9C0D507991CCAD09B03BD154D346D9E795EEA453E66E862
tools\bin\netstandard.dll
md5: 558E3F34371A4005378C6FA3EC1F0491 | sha1: 89DF594B4250CF670BC93E04A8BEFB4753AD6103 | sha256: F247B6A86E1641C2D1311CFF92C99A13C7D189F0009F7B47E75C2A223DEEE7B4 | sha512: 59BFF66C3B791018EB1D8C100F77D9C87CF10647F4BC44FF15535A4D2345FE70D27D085B5B5EE80DBC388A6A0376F1D66B2A58E21E0062BFE5D5284316883797
tools\bin\System.IO.IsolatedStorage.dll
md5: BE4D459B4678A3CE423EB5B7D39C1940 | sha1: FFD12DB0328BABD0F8D4263D5BCE4CACAC421C6C | sha256: 622734917DE96B34086242759F032CAD3B763597FA38FB647A43F56D97ED29B9 | sha512: E18FA6ABCAB938C3810AC4CDA0010ED534CC230F16AF57E9189E9AC7CC71169505A21CA589935FDED766CBAAAB0C873A143602C09067DB9FE3D7A102BE76E7B2
tools\bin\System.Runtime.InteropServices.RuntimeInformation.dll
md5: 9FE8DE78F8D825B3E003150778AAD453 | sha1: 796967D56F6A5919199FF3BA8517ECE792B26AAE | sha256: 85BB1CBEE22CA0E11A956D640CF3512FF391F0742DD8DADE18DE842753968457 | sha512: E2C094E7E896CEB62421AEF23A948A89486D19191BDEE6015389291E354DAECCBACE18EA658FA30516BBA75E693413E2984FCA49F28B33C0739B15C4AF987139
tools\bin\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
tools\bin\Newtonsoft.Json.Bson.dll
md5: DABFB21C631B4032B75A4050A2FF36B2 | sha1: 4CE7600707262F761F441AA5C9711B647AFC35B5 | sha256: B606E5DD77A6242CA1F1DF717EB53D9505AE56904330B975C08D4F2DBE8C3319 | sha512: 739CCFCC6420AEDBF4CE7D9499BB3852C0A2ADEE2D1F9E913E2B30B0B2BFA4BEA573E2FF11F59D6D889A52A44069D449C78D1BF06BACDCF25890029B26454E73
tools\bin\System.IO.MemoryMappedFiles.dll
md5: 1D2A6813E2F396326F215C9B9246BAAD | sha1: D5C53C78E6672AEC95EC213D1D84DC9C0029A079 | sha256: E3AE8A9F9D9D4CA4B41F129BE7125C9CCAB66C9117B503BCE057C77030B33BE8 | sha512: B13932A96E372FF934E3516C7C36AED58D5C1F1F8972E2A12301EB2AA5EADD71F10F0683E2BFBFD45773EFCDCF22368ACE4B40057F4D6AC31B714B9BAF876890
tools\bin\System.Runtime.Intrinsics.dll
md5: F5D7D91A82C6D78E1B44A3891276D239 | sha1: 51166C83924F1F711B4BDB083CDD957FA9BE9F09 | sha256: 565D8AAC21BA072D82E85E92DEFB5FF6E118545739B740B4E5C2EBA012656E70 | sha512: DD2184F1BE8627BDBEEE641D151116B12A55B15408B59865EA0A9A79678B59B0C01106F9711E4FEB717C14BD13C094D2957FBB82C2223331B37F8B03DE987322
tools\bin\Wcwidth.dll
md5: 33061C86850EB06D07DC37BD2DBE70ED | sha1: CF79376750E6E31824868967CE2DE438BEE780D0 | sha256: 06E8863F853E4CD924F5451F517A16C2ADBDF0EB0830EF4D05EB67CE76A9CEE5 | sha512: 37B9B5EE27A46C7766D01F7AEDD27D20202EC81B74DC6F07FEA0C0176CC59F1CFB76546B4DCA014CB48B14CB16859A0FA7CD6728A6F46D7C1C594F2773F28001
tools\bin\Newtonsoft.Json.dll
md5: 9454AE6EB0C6AD77E93A95074BA29266 | sha1: DF83FCB3639596AD42D5BE8314EF9D672079198B | sha256: 99177A4CBE03625768D64A3D73392310372888F74C3EB271CF775E93057A38E6 | sha512: 8D1D2BEDDE2D5F33179560E1A4F72206EE1984B3F5EB96E93F94329C4C4A8044DD74D62F9E708293132DE8C8F351F0E7FED74A450A251A8ADE205702B29D9DE1
tools\bin\System.IO.Pipes.AccessControl.dll
md5: 8C3059FE1A08B989D525302B8BBA638D | sha1: 0DFBD08CFAEAE0CA7466E7A7E3EAC9973A2F8DF3 | sha256: CC33CF20D670F664A0479284C6E13391A7EE3D5EDED8A0A7A5A212F230930E8F | sha512: D67C87C233A2F5AD444FFB87027A56486DFB17641B4B6D8C16CE2DAE46C6DEB858EBC9A54341A0DE249CB19825D4C72929790E083920010C4D045FC9E2FFDA66
tools\bin\System.Runtime.Loader.dll
md5: 150F0638035A1C9561CFD29E9DE5AF67 | sha1: E8BA9EB8BF1F06E37C3B8F2F5E5784D18AF1A06C | sha256: 2FA692CDBAF9B2E008E375ABCC3CD02F220B0F79B6F1DDFADAB83A2CC238E114 | sha512: 17D06E42277034D874EF5CD6852B97A34EBED02713A81A8E4C8173ED7644F74D64C37769A0F2269EE12AC2F936A3D4A0EFB12FBA2241804ABCFBD031016DB58D
tools\bin\WindowsBase.dll
md5: 1DCBC8B2A07EB8DEBD11AD6B40F7260F | sha1: E05A21981501821DEF4C5FEAB4FB463AC03BDD31 | sha256: CD0734F90E87780944AF1EB865368EADBCE75DD81BB8634EE100742CC6C275BB | sha512: B5F4535F784F928C2A93FBB563EE7389629B2032D469B9F19F7E844EBD812F1CE2D6708B26447C36F85B9E61819F789600C4EDF617E7DE0C4B287878304F0369
tools\bin\sni.dll
md5: 7F1799B65B98450A19E4D049E9D3E70D | sha1: EC80C5A33374423A9E986C383A36A97DA70A3584 | sha256: 68705C4EF9AB818F2956A78E05F3FEFCE501A1448793B073B46110BEB49B47D6 | sha512: 8D67297C5CDED487C88FCAAD5A36E80926DAD8F1863E38F397751056F51258AC7B5A9E5C09C01BBA7A224F38FB2EE719586FAF0BA81516E05A19649EB09E7B78
tools\bin\System.IO.Pipes.dll
md5: 69EA5B2D742D701E090B36AF76D0E853 | sha1: 6FE537ECFB5194D04D6E4FB1E0D029DAA0937E04 | sha256: 9B4FCA9A1F229D928498DE26ED903454FA56DBD35D59233D808A766C8E7C6C53 | sha512: 18D2286693DBFC36D7463C4683930F27831F4E0550E9513BC31B078FE2BD573AAD0C0F7FE53616AF49C7CCF4C8AA85EE7BCFC73E2EC253BF4610FBBDB1A6B7DE
tools\bin\System.Runtime.Numerics.dll
md5: 6A877AB66F45A72B9F792FE77E4EDA44 | sha1: B4A615BA3DEC9C157CC9EA7E36584FA6DC4D08D0 | sha256: BCB8D0D5B70307F03567DDE30C564D4FA68B0C30056F78A97AD06899EDF78BEC | sha512: 493B29FBFACD44A07ED901B62DA6A2E5783D533A362E2E2B67F4639BD4B3E6F1045295F183B6BCFD2ED0FF6700A367A84D1C302EB9BFA66EC72BF55A33EB3B86
tools\bin\Spectre.Cli.dll
md5: 01F2CE83226F6C4060C12C56B4C22460 | sha1: A4F598DBBD29F2D0244D3EA710D8E5664AFBF462 | sha256: E5EF46C4B7BA48E763AF282B08D405C43CF93C472B39ED5CED556A45AF6DD04D | sha512: 38F745E945D63CB69DE11E95E4B57C440F6840743F13576B13201513BDC4C002EFC52B5BDE12E2665533B6977A21E70BF9DB3D6E26B176047CB6CB33A1CFDB8A

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
Azure DevOps Policy Configurator 1.1.0 711 Wednesday, June 19, 2019 Approved
Azure DevOps Policy Configurator 1.0.0 178 Wednesday, March 27, 2019 Approved
Azure DevOps Policy Configurator 1.0.0-beta0003 177 Thursday, March 7, 2019 Exempted
Azure DevOps Policy Configurator 1.0.0-beta0002 178 Friday, February 15, 2019 Exempted

This package has no dependencies.

Discussion for the Azure DevOps Policy Configurator Package

Ground Rules:

  • This discussion is only about Azure DevOps Policy Configurator and the Azure DevOps Policy Configurator 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 Azure DevOps Policy Configurator, 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