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:

28,976

Downloads of v 5.1.0:

1,952

Last Update:

13 Oct 2023

Package Maintainer(s):

Software Author(s):

  • Cory Plotts
  • Bastian Schmidt

Tags:

snoop spy wpf

Snoop

  • 1
  • 2
  • 3

5.1.0 | Updated: 13 Oct 2023

Downloads:

28,976

Downloads of v 5.1.0:

1,952

Maintainer(s):

Software Author(s):

  • Cory Plotts
  • Bastian Schmidt

Tags:

snoop spy wpf

Snoop 5.1.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 Snoop, run the following command from the command line or from PowerShell:

>

To upgrade Snoop, run the following command from the command line or from PowerShell:

>

To uninstall Snoop, 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 snoop -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 snoop -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 snoop
  win_chocolatey:
    name: snoop
    version: '5.1.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'snoop' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.1.0'
end

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


cChocoPackageInstaller snoop
{
    Name     = "snoop"
    Version  = "5.1.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'snoop':
  ensure   => '5.1.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 14 Oct 2023.

Description

Snoop allows you to spy/browse the visual tree of a running WPF application (without the need for a debugger) ... and change properties ... amongst other things.
The changelog for release versions can be found at https://github.com/snoopwpf/snoopwpf/blob/master/Changelog.md.
The changelog for preview versions can be found at https://github.com/snoopwpf/snoopwpf/blob/develop/Changelog.md.
Signed by signpath.io from repository 'https://github.com/snoopwpf/snoopwpf' commit '92e7adc0357ad185d17c06c491f83143d0b0c56c' (see contained AppVeyorSettings.json file for build settings).


AppVeyorSettings.json
{
  "project": {
    "projectId": 480882,
    "accountId": 12290,
    "accountName": "batzen",
    "builds": [],
    "name": "snoopwpf",
    "slug": "snoopwpf",
    "repositoryType": "gitHub",
    "repositoryScm": "git",
    "repositoryName": "snoopwpf/snoopwpf",
    "isPrivate": false,
    "isGitHubApp": false,
    "skipBranchesWithoutAppveyorYml": false,
    "enableSecureVariablesInPullRequests": false,
    "enableSecureVariablesInPullRequestsFromSameRepo": false,
    "enableDeploymentInPullRequests": false,
    "saveBuildCacheInPullRequests": false,
    "rollingBuilds": false,
    "rollingBuildsDoNotCancelRunningBuilds": false,
    "rollingBuildsOnlyForPullRequests": false,
    "alwaysBuildClosedPullRequests": false,
    "tags": "",
    "securityDescriptor": {
      "accessRightDefinitions": [
        {
          "name": "View",
          "description": "View"
        },
        {
          "name": "RunBuild",
          "description": "Run build"
        },
        {
          "name": "Update",
          "description": "Update settings"
        },
        {
          "name": "Delete",
          "description": "Delete project"
        }
      ],
      "roleAces": [
        {
          "roleId": 13615,
          "name": "Administrator",
          "isAdmin": true,
          "accessRights": [
            {
              "name": "View",
              "allowed": true
            },
            {
              "name": "RunBuild",
              "allowed": true
            },
            {
              "name": "Update",
              "allowed": true
            },
            {
              "name": "Delete",
              "allowed": true
            }
          ]
        },
        {
          "roleId": 13616,
          "name": "User",
          "isAdmin": false,
          "accessRights": [
            {
              "name": "View"
            },
            {
              "name": "RunBuild"
            },
            {
              "name": "Update"
            },
            {
              "name": "Delete"
            }
          ]
        }
      ]
    },
    "disablePushWebhooks": false,
    "disablePullRequestWebhooks": false,
    "created": "2018-08-13T18:02:28.9384921+00:00",
    "updated": "2021-06-05T20:48:15.830428+00:00"
  },
  "settings": {
    "projectId": 480882,
    "accountId": 12290,
    "accountName": "batzen",
    "builds": [],
    "name": "snoopwpf",
    "slug": "snoopwpf",
    "versionFormat": "1.0.{build}",
    "nextBuildNumber": 885,
    "repositoryType": "gitHub",
    "repositoryScm": "git",
    "repositoryName": "snoopwpf/snoopwpf",
    "repositoryBranch": "develop",
    "webhookId": "27err2wx1dov5a7l",
    "webhookUrl": "https://ci.appveyor.com/api/github/webhook?id=27err2wx1dov5a7l",
    "statusBadgeId": "va944a2etw0m9wso",
    "isPrivate": false,
    "isGitHubApp": false,
    "ignoreAppveyorYml": false,
    "skipBranchesWithoutAppveyorYml": false,
    "enableSecureVariablesInPullRequests": false,
    "enableSecureVariablesInPullRequestsFromSameRepo": false,
    "enableDeploymentInPullRequests": false,
    "saveBuildCacheInPullRequests": false,
    "rollingBuilds": false,
    "rollingBuildsDoNotCancelRunningBuilds": false,
    "rollingBuildsOnlyForPullRequests": false,
    "alwaysBuildClosedPullRequests": false,
    "configuration": {
      "isBaseConfig": false,
      "doNotIncrementBuildNumberOnPullRequests": false,
      "hotFixScripts": [],
      "initScripts": [],
      "includeBranches": [],
      "excludeBranches": [],
      "skipTags": false,
      "skipNonTags": false,
      "skipBranchWithPullRequests": false,
      "skipCommitsFiles": [],
      "onlyCommitsFiles": [],
      "cloneScripts": [],
      "onBuildSuccessScripts": [],
      "onBuildErrorScripts": [],
      "onBuildFinishScripts": [],
      "patchAssemblyInfo": false,
      "assemblyInfoFile": "**\\AssemblyInfo.*",
      "assemblyVersionFormat": "{version}",
      "assemblyFileVersionFormat": "{version}",
      "assemblyInformationalVersionFormat": "{version}",
      "patchDotnetCsproj": false,
      "dotnetCsprojFile": "**\\*.csproj",
      "dotnetCsprojVersionFormat": "{version}",
      "dotnetCsprojVersionPrefixFormat": "{version}",
      "dotnetCsprojPackageVersionFormat": "{version}",
      "dotnetCsprojAssemblyVersionFormat": "{version}",
      "dotnetCsprojFileVersionFormat": "{version}",
      "dotnetCsprojInformationalVersionFormat": "{version}",
      "buildCloud": [],
      "operatingSystem": [
        {
          "value": "Visual Studio 2017"
        }
      ],
      "services": [],
      "stacks": [],
      "shallowClone": false,
      "forceHttpsClone": false,
      "environmentVariables": [],
      "environmentVariablesMatrix": [],
      "installScripts": [],
      "hostsEntries": [],
      "cacheEntries": [],
      "configureNuGetProjectSource": false,
      "configureNuGetAccountSource": false,
      "disableNuGetPublishOnPullRequests": true,
      "disableNuGetPublishForOctopusPackages": false,
      "buildMode": "msbuild",
      "platform": [],
      "configuration": [],
      "packageWebApplicationProjects": false,
      "packageWebApplicationProjectsXCopy": false,
      "packageWebApplicationProjectsBeanstalk": false,
      "packageWebApplicationProjectsOctopus": false,
      "packageAzureWebJobProjects": false,
      "packageAzureCloudServiceProjects": false,
      "packageNuGetProjects": false,
      "packageNuGetSymbols": false,
      "useSnupkgFormat": false,
      "packageAspNetCoreProjects": false,
      "packageDotnetConsoleProjects": false,
      "includeNuGetReferences": false,
      "msBuildInParallel": false,
      "msBuildVerbosity": "minimal",
      "buildScripts": [],
      "beforeBuildScripts": [],
      "beforePackageScripts": [],
      "afterBuildScripts": [],
      "testMode": "auto",
      "testAssemblies": [],
      "testCategories": [],
      "testCategoriesMatrix": [],
      "testScripts": [],
      "beforeTestScripts": [],
      "afterTestScripts": [],
      "deployMode": "providers",
      "deployments": [],
      "deployScripts": [],
      "beforeDeployScripts": [],
      "afterDeployScripts": [],
      "onImageBakeScripts": [],
      "xamarinRegisterAndroidProduct": false,
      "xamarinRegisterIosProduct": false,
      "matrixFastFinish": false,
      "matrixAllowFailures": [],
      "matrixExclude": [],
      "matrixOnly": [],
      "matrixExcept": [],
      "artifacts": [],
      "notifications": [
        {
          "provider": "Email",
          "settings": {
            "$type": "Appveyor.Models.EmailNotificationSettings, Appveyor.Models",
            "recipients": [],
            "recipientsValue": "[email protected]",
            "onBuildSuccess": false,
            "onBuildFailure": false,
            "onBuildStatusChanged": false
          }
        }
      ]
    },
    "tags": "",
    "nuGetFeed": {
      "nuGetFeedId": 492209,
      "id": "snoopwpf",
      "name": "Project snoopwpf",
      "accountId": 12290,
      "projectId": 480882,
      "isPrivateProject": false,
      "publishingEnabled": false,
      "accountTimeZoneId": "W. Europe Standard Time",
      "created": "2018-08-13T18:02:30.3760724+00:00"
    },
    "securityDescriptor": {
      "accessRightDefinitions": [
        {
          "name": "View",
          "description": "View"
        },
        {
          "name": "RunBuild",
          "description": "Run build"
        },
        {
          "name": "Update",
          "description": "Update settings"
        },
        {
          "name": "Delete",
          "description": "Delete project"
        }
      ],
      "roleAces": [
        {
          "roleId": 13615,
          "name": "Administrator",
          "isAdmin": true,
          "accessRights": [
            {
              "name": "View",
              "allowed": true
            },
            {
              "name": "RunBuild",
              "allowed": true
            },
            {
              "name": "Update",
              "allowed": true
            },
            {
              "name": "Delete",
              "allowed": true
            }
          ]
        },
        {
          "roleId": 13616,
          "name": "User",
          "isAdmin": false,
          "accessRights": [
            {
              "name": "View"
            },
            {
              "name": "RunBuild"
            },
            {
              "name": "Update"
            },
            {
              "name": "Delete"
            }
          ]
        }
      ]
    },
    "disablePushWebhooks": false,
    "disablePullRequestWebhooks": false,
    "created": "2018-08-13T18:02:28.9384921+00:00",
    "updated": "2021-06-05T20:48:15.830428+00:00"
  },
  "images": [
    {
      "buildWorkerImageId": 2249,
      "name": "macOS-BigSur",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2432,
      "name": "macOS-Catalina",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 2431,
      "name": "macOS-Monterey",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1355,
      "name": "Previous macos",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1354,
      "name": "Previous macos-mojave",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1642,
      "name": "Previous Ubuntu2004",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2388,
      "name": "Previous Visual Studio 2022",
      "buildCloudName": "pro-vs2019",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 1641,
      "name": "Ubuntu2004",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2564,
      "name": "Ubuntu2004-arm_hidden",
      "buildCloudName": "aws-us-east-1",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 2335,
      "name": "Visual Studio 2022",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 886,
      "name": "Visual Studio 2019",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 362,
      "name": "Visual Studio 2017",
      "buildCloudName": "pro-vs2017",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 34,
      "name": "Visual Studio 2015",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 38,
      "name": "Visual Studio 2013",
      "buildCloudName": "pro-vs2013",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 964,
      "name": "Previous Visual Studio 2019",
      "buildCloudName": "pro-vs2019",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 368,
      "name": "Previous Visual Studio 2017",
      "buildCloudName": "pro-vs2017",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 36,
      "name": "Previous Visual Studio 2015",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 39,
      "name": "Previous Visual Studio 2013",
      "buildCloudName": "pro-ubuntu",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 639,
      "name": "Ubuntu",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 649,
      "name": "Ubuntu1804",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 650,
      "name": "Ubuntu1604",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 640,
      "name": "Previous Ubuntu",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 674,
      "name": "Previous Ubuntu1804",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 673,
      "name": "Previous Ubuntu1604",
      "buildCloudName": "pro-ubuntu",
      "osType": "Linux"
    },
    {
      "buildWorkerImageId": 1217,
      "name": "macOS",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 1218,
      "name": "macOS-Mojave",
      "buildCloudName": "macos-pro",
      "osType": "MacOS"
    },
    {
      "buildWorkerImageId": 735,
      "name": "Visual Studio 2019 Preview",
      "buildCloudName": "pro-vs2019;pro-backup",
      "osType": "Windows"
    },
    {
      "buildWorkerImageId": 40,
      "name": "WMF 5",
      "buildCloudName": "gce",
      "osType": "Windows"
    }
  ],
  "buildClouds": [],
  "defaultImageName": "Visual Studio 2015"
}
tools\chocolateyInstall.ps1
# Create a desktop link to snoop executable
$parentfolder = Split-Path -parent $MyInvocation.MyCommand.Definition
$target = Join-Path $parentfolder 'snoop.exe'

$desktopPath = [System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::Desktop)
$shortcutFilePath = Join-Path $desktopPath "Snoop.lnk"
Install-ChocolateyShortcut -ShortcutFilePath $shortcutFilePath -TargetPath $target
tools\chocolateyUninstall.ps1
$desktopPath = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$shortcutFilePath = Join-Path $desktopPath "Snoop.lnk"

if (Test-Path($shortcutFilePath)) {
	Remove-Item $shortcutFilePath -ErrorAction SilentlyContinue
}
tools\CommandLine.dll
md5: FDC2487A643892FF1AED754D9189CE76 | sha1: 26932953BFFFAD0939B5AB3C908127AE3566FECC | sha256: E7D67580A8999D0E5534039F62E0DBC423B2D6DAC51C2F5FF6EF199E4A53138D | sha512: 6C38D3DB75E989AF10ECD6477C2DDAFFB9D47FE6EFC0C8774DCFBE14F4121B4EBE2DE6ECE1BF10CAD98FD555DF6AB3851B4AC05FE4D498862670BFB472D81AF6
tools\License.txt
Microsoft Public License (Ms-PL)

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

1. Definitions

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

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

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

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

2. Grant of Rights

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

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

3. Conditions and Limitations

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

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

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

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

(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.
tools\Snoop.com
 
tools\Snoop.com.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="Snoop.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <userSettings>
    <Snoop.Properties.Settings>
      <setting name="AppChooserWindowPlacement" serializeAs="String">
        <value />
      </setting>
      <setting name="SetOwnerWindow" serializeAs="String">
        <value>True</value>
      </setting>
      <setting name="MultipleAppDomainMode" serializeAs="String">
        <value>Ask</value>
      </setting>
      <setting name="MultipleDispatcherMode" serializeAs="String">
        <value>Ask</value>
      </setting>
      <setting name="GlobalHotKey" serializeAs="String">
        <value>CTRL + WIN + ALT + F12</value>
      </setting>
      <setting name="ILSpyPath" serializeAs="String">
        <value>%path%</value>
      </setting>
      <setting name="EnableDiagnostics" serializeAs="String">
        <value>True</value>
      </setting>
    </Snoop.Properties.Settings>
  </userSettings>
  <startup>
    <supportedRuntime version="v4.0" />
  </startup>
  <runtime>
    <!-- DoNotScaleForDpiChanges = required to get per monitor dpi as long as we don't target .net 4.6.2 or higher -->
    <AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false" />
  </runtime>
</configuration>
tools\Snoop.Core.dll
md5: 856E90FE0D5F4367D1BF7C84E9FD31F1 | sha1: 9ACA43CB0F9DC391CCE025AF0F0FF147C7DAD2B6 | sha256: 63AD6FC13D12082CEF8B5383D44DEE0B19E57E793F4553F805464B1BF5128D16 | sha512: 3398DA202526D2E0891B41483CAD13F791AF606DD3DB873C7FE932D7139D78C0DECCB686042A713E3F7D7F15C23B10C310F10A684E6E83A8DC259D1DF0D725FB
tools\Snoop.Core.pdb
 
tools\Snoop.exe
md5: 76B86D6BB74B542C610B5F4181E8EB1A | sha1: 66F741ACA61207B7E40C55B0B57D463490BC4AA1 | sha256: 0A5F7ADA10C04B2EDA70C5BD21349F825DB68BADAB9AFFEF2BCC5FEEAAA81C6F | sha512: 95A57EDBA0C4600A32A4DA37ECB687858DD583305FCD5CA32D5650960199C5902E140F5F87893E7FF67FB8DCF04284EC647C1C85A9C2B78D79D66B4126D2BFE6
tools\Snoop.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="Snoop.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <userSettings>
    <Snoop.Properties.Settings>
      <setting name="AppChooserWindowPlacement" serializeAs="String">
        <value />
      </setting>
      <setting name="SetOwnerWindow" serializeAs="String">
        <value>True</value>
      </setting>
      <setting name="MultipleAppDomainMode" serializeAs="String">
        <value>Ask</value>
      </setting>
      <setting name="MultipleDispatcherMode" serializeAs="String">
        <value>Ask</value>
      </setting>
      <setting name="GlobalHotKey" serializeAs="String">
        <value>CTRL + WIN + ALT + F12</value>
      </setting>
      <setting name="ILSpyPath" serializeAs="String">
        <value>%path%</value>
      </setting>
      <setting name="EnableDiagnostics" serializeAs="String">
        <value>True</value>
      </setting>
    </Snoop.Properties.Settings>
  </userSettings>
  <startup>
    <supportedRuntime version="v4.0" />
  </startup>
  <runtime>
    <!-- DoNotScaleForDpiChanges = required to get per monitor dpi as long as we don't target .net 4.6.2 or higher -->
    <AppContextSwitchOverrides value="Switch.System.Windows.DoNotScaleForDpiChanges=false" />
  </runtime>
</configuration>
tools\Snoop.GenericInjector.ARM.dll
md5: 54C3313A04538DFA0A85CD5102ECCD7F | sha1: 06F1AD93F377A5B320C74D532A79E8230C038F40 | sha256: A3238F04D768ADDF721F4600759612D471A38084EC59C666051B61717163AAD7 | sha512: 6A0A7A1B1E5C3B05C32F99468E74A3136E95B64DC529117C97753BDF31EB2B64BBA8DD50BB5FC0857FF8553CDBE343F50E2FBCB0477CE881556462267534E788
tools\Snoop.GenericInjector.ARM.pdb
 
tools\Snoop.GenericInjector.ARM64.dll
md5: 4FF1E9B2E366B1E7E5842B12D3683C93 | sha1: 35AE57162633191898DB54A54D6E754215243045 | sha256: B4C1B82D4F2E3FE75EB3D7F298201FCB1BF076B565066D347BA721FDC34C2852 | sha512: 9EA43BAA1791D7719D1D3EC2A451E1BDBCCFABD9DB82EC0A4F0E131E456C465E48E2AFA5A24140D56CC882554AC7ABF0671FDCE58E384B14F79959639219C147
tools\Snoop.GenericInjector.ARM64.pdb
 
tools\Snoop.GenericInjector.x64.dll
md5: B695129E9039DA9B9ADC9880537920EB | sha1: 220D3030001EB167B004313063EC25B35AA3E640 | sha256: 2FE63162B5BC557DFD055D8C55466E3735EF208B0083CF19CF4BEB19D853DE8A | sha512: 9DFC71BF92DC20B1A1B067F55DC9EF27D81A8264E09003F92A2B21A2003E3C582AF71B432C4054AFC20405FDE469AA151F28F2B0F47E89AF5E5D927BAD672ED1
tools\Snoop.GenericInjector.x64.pdb
 
tools\Snoop.GenericInjector.x86.dll
md5: 0BFFA4BA016D6C94CC0C2F8B2E0CD5BC | sha1: 1218484230F154CABC2E56E1ED2BF18486E219FD | sha256: 6725BDE2685CA02DCD0FBF958EDF34C7F71665348279B6676CA8AD4F6254CA94 | sha512: 5CB8AB72A81C8FE449E80A8878947EB1A4379D6E6A02B7AC6FC07F5B0F03BC849AB615DC36ECC5B2D83364ABFAE6234B6ACEFC3C228032F7F0A985BEE1B6C326
tools\Snoop.GenericInjector.x86.pdb
 
tools\Snoop.InjectorLauncher.ARM.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {
      "Snoop.InjectorLauncher.ARM/1.0.0": {
        "dependencies": {
          "CommandLineParser": "2.9.1",
          "JetBrains.Annotations": "2023.2.0",
          "Microsoft.CodeAnalysis.CSharp": "4.7.0",
          "Microsoft.NETFramework.ReferenceAssemblies.net452": "1.0.3",
          "Microsoft.SourceLink.GitHub": "1.1.1",
          "StyleCop.Analyzers": "1.2.0-beta.507",
          "WpfAnalyzers": "4.1.1"
        },
        "runtime": {
          "Snoop.InjectorLauncher.ARM.dll": {}
        }
      },
      "CommandLineParser/2.9.1": {
        "runtime": {
          "lib/netstandard2.0/CommandLine.dll": {
            "assemblyVersion": "2.9.1.0",
            "fileVersion": "2.9.1.0"
          }
        }
      },
      "JetBrains.Annotations/2023.2.0": {},
      "Microsoft.Build.Tasks.Git/1.1.1": {},
      "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
      "Microsoft.CodeAnalysis.Common/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5",
          "System.Reflection.Metadata": "7.0.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Text.Encoding.CodePages": "7.0.0",
          "System.Threading.Tasks.Extensions": "4.5.4"
        }
      },
      "Microsoft.CodeAnalysis.CSharp/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "4.7.0"
        }
      },
      "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {},
      "Microsoft.SourceLink.Common/1.1.1": {},
      "Microsoft.SourceLink.GitHub/1.1.1": {
        "dependencies": {
          "Microsoft.Build.Tasks.Git": "1.1.1",
          "Microsoft.SourceLink.Common": "1.1.1"
        }
      },
      "StyleCop.Analyzers/1.2.0-beta.507": {
        "dependencies": {
          "StyleCop.Analyzers.Unstable": "1.2.0.507"
        }
      },
      "StyleCop.Analyzers.Unstable/1.2.0.507": {},
      "System.Collections.Immutable/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Memory/4.5.5": {},
      "System.Reflection.Metadata/7.0.0": {
        "dependencies": {
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
      "System.Text.Encoding.CodePages/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {},
      "WpfAnalyzers/4.1.1": {}
    }
  },
  "libraries": {
    "Snoop.InjectorLauncher.ARM/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "CommandLineParser/2.9.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
      "path": "commandlineparser/2.9.1",
      "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
    },
    "JetBrains.Annotations/2023.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dvO//8aLmLRsCVVgoc/7qBqi2/y4BTyRcg20LCBWtK4n6E9Um06Zp7jF1n0hOE+yqBHwcrDzAjWvCaM3qH8flg==",
      "path": "jetbrains.annotations/2023.2.0",
      "hashPath": "jetbrains.annotations.2023.2.0.nupkg.sha512"
    },
    "Microsoft.Build.Tasks.Git/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q==",
      "path": "microsoft.build.tasks.git/1.1.1",
      "hashPath": "microsoft.build.tasks.git.1.1.1.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
      "path": "microsoft.codeanalysis.analyzers/3.3.4",
      "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pD5S14xMUebSGYe75kt0q/aaS/ftvktSo/pEv7aX7hNPHfdZS+SZeXvkvcffGxWkunYOyRF9m1oN7zzSdYj9dQ==",
      "path": "microsoft.codeanalysis.common/4.7.0",
      "hashPath": "microsoft.codeanalysis.common.4.7.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JHCP2L6lB0oJ3tQoHkC67SFZxW+KbJVOnAo+6L01K5r/NlBlSUhTk5nUAldWhTVwGdzqNeHqGtnEqpsCmGSwQA==",
      "path": "microsoft.codeanalysis.csharp/4.7.0",
      "hashPath": "microsoft.codeanalysis.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kuFOgilYbs29xENHlqQ6aJYa+t56u+OqHx85P7GYLVlo7HL3nsug9IQY2DoPgkOpZ2xb9btYV2EFK7Enll8S3A==",
      "path": "microsoft.netframework.referenceassemblies.net452/1.0.3",
      "hashPath": "microsoft.netframework.referenceassemblies.net452.1.0.3.nupkg.sha512"
    },
    "Microsoft.SourceLink.Common/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg==",
      "path": "microsoft.sourcelink.common/1.1.1",
      "hashPath": "microsoft.sourcelink.common.1.1.1.nupkg.sha512"
    },
    "Microsoft.SourceLink.GitHub/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
      "path": "microsoft.sourcelink.github/1.1.1",
      "hashPath": "microsoft.sourcelink.github.1.1.1.nupkg.sha512"
    },
    "StyleCop.Analyzers/1.2.0-beta.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==",
      "path": "stylecop.analyzers/1.2.0-beta.507",
      "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512"
    },
    "StyleCop.Analyzers.Unstable/1.2.0.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==",
      "path": "stylecop.analyzers.unstable/1.2.0.507",
      "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512"
    },
    "System.Collections.Immutable/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
      "path": "system.collections.immutable/7.0.0",
      "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
    },
    "System.Memory/4.5.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
      "path": "system.memory/4.5.5",
      "hashPath": "system.memory.4.5.5.nupkg.sha512"
    },
    "System.Reflection.Metadata/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
      "path": "system.reflection.metadata/7.0.0",
      "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
      "path": "system.runtime.compilerservices.unsafe/6.0.0",
      "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
      "path": "system.text.encoding.codepages/7.0.0",
      "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "WpfAnalyzers/4.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4+oLAk4gB4Wqn0ozKstB6fY9BafSU6c6GEgWjgOThyzHFBVqxihkS/1OmvEaYJnhjNUA/GOcZ6m2B7Xr2EePNw==",
      "path": "wpfanalyzers/4.1.1",
      "hashPath": "wpfanalyzers.4.1.1.nupkg.sha512"
    }
  }
}
tools\Snoop.InjectorLauncher.ARM.dll
md5: 2257C406AD763AAB8A07214B72E18F26 | sha1: B860EF04D99656967ABC6888F28ACC8763041DE3 | sha256: 738FC071B3F902EA9060766331A32DF44681ED3C91965D51A68FCCC09ED9BFC8 | sha512: DC423A4EEA2132637908938D57CE4FE49B938390CF47EB75BE610746ED42C0098B12D8C46F1B38A4CEEBE137406318BD60EA4CC0003E1BFCA0FE0465BD1C4CF6
tools\Snoop.InjectorLauncher.ARM.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.VisualBasic.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-10.0.6.0" newVersion="10.0.6.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Win32.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.NonGeneric" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Specialized" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.TypeConverter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Console" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.FileVersionInfo" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Process" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.TextWriterTraceListener" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.TraceSource" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Drawing.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression.ZipFile" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem.DriveInfo" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem.Watcher" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.IsolatedStorage" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.MemoryMappedFiles" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Pipes" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.HttpListener" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Mail" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NameResolution" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Ping" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Security" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.ServicePoint" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebClient" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebHeaderCollection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebProxy" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebSockets.Client" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebSockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit.ILGeneration" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit.Lightweight" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Resources.Writer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.CompilerServices.VisualC" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Formatters" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Claims" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Csp" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.X509Certificates" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Thread" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.ThreadPool" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Transactions.Local" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.HttpUtility" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="netstandard" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\Snoop.InjectorLauncher.ARM.exe
md5: 414860CFC147DCFABAED1FF53E55274A | sha1: 01306F45FBB022F15A180158C73BB8861800037C | sha256: E1EB24B61480927FDBDFB6F49D2D6EDD3F6F6BD7768A3AD0C38ACBBAB829DA9E | sha512: 029156E53CF15BFCACEFE63DA8C40E41009423BBE14E97245122B2D288AB0313BD1519051C392648E5BEEF1C6C0613F00876B0BD3FFCE0EBB66ECA6C3FF256B3
tools\Snoop.InjectorLauncher.ARM.exe.ignore
 
tools\Snoop.InjectorLauncher.ARM.pdb
 
tools\Snoop.InjectorLauncher.ARM.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net5.0",
    "rollForward": "Major",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "5.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\Snoop.InjectorLauncher.ARM64.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {
      "Snoop.InjectorLauncher.ARM64/1.0.0": {
        "dependencies": {
          "CommandLineParser": "2.9.1",
          "JetBrains.Annotations": "2023.2.0",
          "Microsoft.CodeAnalysis.CSharp": "4.7.0",
          "Microsoft.NETFramework.ReferenceAssemblies.net452": "1.0.3",
          "Microsoft.SourceLink.GitHub": "1.1.1",
          "StyleCop.Analyzers": "1.2.0-beta.507",
          "WpfAnalyzers": "4.1.1"
        },
        "runtime": {
          "Snoop.InjectorLauncher.ARM64.dll": {}
        }
      },
      "CommandLineParser/2.9.1": {
        "runtime": {
          "lib/netstandard2.0/CommandLine.dll": {
            "assemblyVersion": "2.9.1.0",
            "fileVersion": "2.9.1.0"
          }
        }
      },
      "JetBrains.Annotations/2023.2.0": {},
      "Microsoft.Build.Tasks.Git/1.1.1": {},
      "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
      "Microsoft.CodeAnalysis.Common/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5",
          "System.Reflection.Metadata": "7.0.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Text.Encoding.CodePages": "7.0.0",
          "System.Threading.Tasks.Extensions": "4.5.4"
        }
      },
      "Microsoft.CodeAnalysis.CSharp/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "4.7.0"
        }
      },
      "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {},
      "Microsoft.SourceLink.Common/1.1.1": {},
      "Microsoft.SourceLink.GitHub/1.1.1": {
        "dependencies": {
          "Microsoft.Build.Tasks.Git": "1.1.1",
          "Microsoft.SourceLink.Common": "1.1.1"
        }
      },
      "StyleCop.Analyzers/1.2.0-beta.507": {
        "dependencies": {
          "StyleCop.Analyzers.Unstable": "1.2.0.507"
        }
      },
      "StyleCop.Analyzers.Unstable/1.2.0.507": {},
      "System.Collections.Immutable/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Memory/4.5.5": {},
      "System.Reflection.Metadata/7.0.0": {
        "dependencies": {
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
      "System.Text.Encoding.CodePages/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {},
      "WpfAnalyzers/4.1.1": {}
    }
  },
  "libraries": {
    "Snoop.InjectorLauncher.ARM64/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "CommandLineParser/2.9.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
      "path": "commandlineparser/2.9.1",
      "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
    },
    "JetBrains.Annotations/2023.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dvO//8aLmLRsCVVgoc/7qBqi2/y4BTyRcg20LCBWtK4n6E9Um06Zp7jF1n0hOE+yqBHwcrDzAjWvCaM3qH8flg==",
      "path": "jetbrains.annotations/2023.2.0",
      "hashPath": "jetbrains.annotations.2023.2.0.nupkg.sha512"
    },
    "Microsoft.Build.Tasks.Git/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q==",
      "path": "microsoft.build.tasks.git/1.1.1",
      "hashPath": "microsoft.build.tasks.git.1.1.1.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
      "path": "microsoft.codeanalysis.analyzers/3.3.4",
      "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pD5S14xMUebSGYe75kt0q/aaS/ftvktSo/pEv7aX7hNPHfdZS+SZeXvkvcffGxWkunYOyRF9m1oN7zzSdYj9dQ==",
      "path": "microsoft.codeanalysis.common/4.7.0",
      "hashPath": "microsoft.codeanalysis.common.4.7.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JHCP2L6lB0oJ3tQoHkC67SFZxW+KbJVOnAo+6L01K5r/NlBlSUhTk5nUAldWhTVwGdzqNeHqGtnEqpsCmGSwQA==",
      "path": "microsoft.codeanalysis.csharp/4.7.0",
      "hashPath": "microsoft.codeanalysis.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kuFOgilYbs29xENHlqQ6aJYa+t56u+OqHx85P7GYLVlo7HL3nsug9IQY2DoPgkOpZ2xb9btYV2EFK7Enll8S3A==",
      "path": "microsoft.netframework.referenceassemblies.net452/1.0.3",
      "hashPath": "microsoft.netframework.referenceassemblies.net452.1.0.3.nupkg.sha512"
    },
    "Microsoft.SourceLink.Common/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg==",
      "path": "microsoft.sourcelink.common/1.1.1",
      "hashPath": "microsoft.sourcelink.common.1.1.1.nupkg.sha512"
    },
    "Microsoft.SourceLink.GitHub/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
      "path": "microsoft.sourcelink.github/1.1.1",
      "hashPath": "microsoft.sourcelink.github.1.1.1.nupkg.sha512"
    },
    "StyleCop.Analyzers/1.2.0-beta.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==",
      "path": "stylecop.analyzers/1.2.0-beta.507",
      "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512"
    },
    "StyleCop.Analyzers.Unstable/1.2.0.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==",
      "path": "stylecop.analyzers.unstable/1.2.0.507",
      "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512"
    },
    "System.Collections.Immutable/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
      "path": "system.collections.immutable/7.0.0",
      "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
    },
    "System.Memory/4.5.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
      "path": "system.memory/4.5.5",
      "hashPath": "system.memory.4.5.5.nupkg.sha512"
    },
    "System.Reflection.Metadata/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
      "path": "system.reflection.metadata/7.0.0",
      "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
      "path": "system.runtime.compilerservices.unsafe/6.0.0",
      "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
      "path": "system.text.encoding.codepages/7.0.0",
      "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "WpfAnalyzers/4.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4+oLAk4gB4Wqn0ozKstB6fY9BafSU6c6GEgWjgOThyzHFBVqxihkS/1OmvEaYJnhjNUA/GOcZ6m2B7Xr2EePNw==",
      "path": "wpfanalyzers/4.1.1",
      "hashPath": "wpfanalyzers.4.1.1.nupkg.sha512"
    }
  }
}
tools\Snoop.InjectorLauncher.ARM64.dll
md5: 578F08D5DC1E1382CB34E8FECB3476AF | sha1: 1F9BAC84BF1BAE6410BE49748FA6B853BB020C08 | sha256: 84517E6DDF3408F279E8FBE95516CDE078874D5E83C6EF3347D72C5BA677E1B7 | sha512: E0BA8B04C46E1E0EB8F00D34C7B23F403AFBAB8AB37B8F2665E8B10B3528CF6056C2BAA2CC0FA6F9786BDB10558C0FD526A75366FFB7E2E4DC95777791FE1E15
tools\Snoop.InjectorLauncher.ARM64.dll.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.VisualBasic.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-10.0.6.0" newVersion="10.0.6.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.Win32.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.NonGeneric" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Specialized" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.TypeConverter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Console" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.FileVersionInfo" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Process" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.TextWriterTraceListener" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.TraceSource" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Drawing.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression.ZipFile" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem.DriveInfo" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem.Watcher" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.IsolatedStorage" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.MemoryMappedFiles" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Pipes" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.HttpListener" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Mail" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NameResolution" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Ping" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Security" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.ServicePoint" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebClient" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebHeaderCollection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebProxy" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebSockets.Client" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.WebSockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit.ILGeneration" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit.Lightweight" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Emit" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Resources.Writer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.CompilerServices.VisualC" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Formatters" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Claims" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Csp" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.X509Certificates" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Thread" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.ThreadPool" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Transactions.Local" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.HttpUtility" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="netstandard" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\Snoop.InjectorLauncher.ARM64.exe
md5: 72BD090A5032016E582D97A347624D7F | sha1: 8E13DEA792AA2190C94345D4064D510C0F8012B2 | sha256: 3C4753C2237208B972EFA8AE13511B3B1FF26602831F9C52B5DA438E3EFC8A32 | sha512: 8A1992D079B5A254667B3007A564B7C479920B569CD8DC076E300099C0C202D4DD00163C84E432118BA6319B40BE03C645FCA78DDD3DE85579399CBA15894955
tools\Snoop.InjectorLauncher.ARM64.exe.ignore
 
tools\Snoop.InjectorLauncher.ARM64.pdb
 
tools\Snoop.InjectorLauncher.ARM64.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net5.0",
    "rollForward": "Major",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "5.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\Snoop.InjectorLauncher.x64.exe
md5: 7CDF0D79ED8381E941416C145260CC81 | sha1: E751ED9E09887DBB274DA0730F8952F16659132C | sha256: 3CAEF7A1E5A6C5C6FBDBD2F7FE48824918D3331F833F9B9732B367542453BF31 | sha512: 5C4547DC28C953B71A90A0253ECC489B6519FB05CD48E1A718F60EA449539BB12A48C7959C49B271C8D872EEEAF3CE99FAF975217ECC860321C61FFCB11F82A3
tools\Snoop.InjectorLauncher.x64.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
</configuration>
tools\Snoop.InjectorLauncher.x64.exe.ignore
 
tools\Snoop.InjectorLauncher.x64.pdb
 
tools\Snoop.InjectorLauncher.x86.exe
md5: A92D6AC287884D1BF42F6BD2A7955F52 | sha1: 665F898EB13620DC4502AC61FD82AD51EA5C657B | sha256: C7EA92EA0841A30880502526004FD6C7E460B7E3857711D83D6E463FB7D7E50B | sha512: F441589DD4846944A43299567D1D6EC232FD5BD7565069448E35CA6230F61FE3448451007A7F5F67FB388B34FA6BE869DE19CF5B57E512DCE38B19179588070C
tools\Snoop.InjectorLauncher.x86.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
  </startup>
</configuration>
tools\Snoop.InjectorLauncher.x86.exe.ignore
 
tools\Snoop.InjectorLauncher.x86.pdb
 
tools\Snoop.pdb
 
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 vendor itself. 
There is no need to include checksums in this file as the binaries are 
all contained in this package and not aquired from a third party website.
tools\net452\Snoop.Core.dll
md5: BA21B557AAB4E819ECBFD72914ED95F1 | sha1: 6AD693E06F3A26DADFA49B05DF5229F56CED932A | sha256: EF205740CFEE0FC14191F67C2D3597733540A46B375A97717774378473DC9D9B | sha512: 782957764B07F9F89DC54AD169541B62F99D2CFEA8F47B000C7038BA333EA63A7CEFBB1A8423690A96B520A9F9798479632DC938AE3FB53C442E5F35509F274D
tools\net452\Snoop.Core.pdb
 
tools\net452\System.Management.Automation.dll
md5: ABCD646CB66D95CE0283AC6A888BEFB7 | sha1: 5F375E113DA40C0870D0027625E1FFB129A9727F | sha256: 40AECC98D1878C93ACAD8F41DB3C310C382BE92C3BCE396E3F6E6A03A37DF193 | sha512: F69F25E39264B5552B80B3500F917C202C1AB16D2F03CA42F7D30104F6492A427BC3280E68F813D01C1AE0B1D111CA7403DF4A040E5358CA0737C8E7A1A4410F
tools\net5.0-windows\Snoop.Core.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v5.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v5.0": {
      "Snoop.Core/1.0.0": {
        "dependencies": {
          "JetBrains.Annotations": "2023.2.0",
          "Microsoft.CodeAnalysis.CSharp": "4.7.0",
          "Microsoft.NETFramework.ReferenceAssemblies.net452": "1.0.3",
          "Microsoft.SourceLink.GitHub": "1.1.1",
          "StyleCop.Analyzers": "1.2.0-beta.507",
          "System.Management.Automation": "7.1.0",
          "WpfAnalyzers": "4.1.1"
        },
        "runtime": {
          "Snoop.Core.dll": {}
        }
      },
      "JetBrains.Annotations/2023.2.0": {},
      "Microsoft.ApplicationInsights/2.15.0": {
        "dependencies": {
          "System.Diagnostics.DiagnosticSource": "4.6.0",
          "System.Memory": "4.5.5"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
            "assemblyVersion": "2.15.0.44797",
            "fileVersion": "2.15.0.44797"
          }
        }
      },
      "Microsoft.Build.Tasks.Git/1.1.1": {},
      "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
      "Microsoft.CodeAnalysis.Common/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5",
          "System.Reflection.Metadata": "7.0.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Text.Encoding.CodePages": "7.0.0",
          "System.Threading.Tasks.Extensions": "4.5.4"
        }
      },
      "Microsoft.CodeAnalysis.CSharp/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "4.7.0"
        }
      },
      "Microsoft.Management.Infrastructure/2.0.0": {
        "dependencies": {
          "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
          "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
        }
      },
      "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
        "runtimeTargets": {
          "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
        "runtimeTargets": {
          "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win-arm",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win-arm",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win-arm64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win-arm64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win10-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win10-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win10-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win10-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win7-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win7-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win7-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win7-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win8-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win8-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win8-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win8-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win81-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win81-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win81-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win81-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/mi.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/miutils.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/mi.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/miutils.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/mi.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/miutils.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/mi.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/miutils.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x64/native/mi.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x64/native/miutils.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/mi.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/miutils.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win8-x64/native/mi.dll": {
            "rid": "win8-x64",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x64/native/miutils.dll": {
            "rid": "win8-x64",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x86/native/mi.dll": {
            "rid": "win8-x86",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x86/native/miutils.dll": {
            "rid": "win8-x86",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x64/native/mi.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x64/native/miutils.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/mi.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/miutils.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          }
        }
      },
      "Microsoft.NETCore.Platforms/5.0.0": {},
      "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {},
      "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
        "dependencies": {
          "System.Diagnostics.EventLog": "5.0.0"
        },
        "runtimeTargets": {
          "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "7.1.0.0",
            "fileVersion": "7.1.0.0"
          }
        }
      },
      "Microsoft.PowerShell.Native/7.1.0": {
        "runtimeTargets": {
          "runtimes/linux-arm/native/libpsl-native.so": {
            "rid": "linux-arm",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-arm64/native/libpsl-native.so": {
            "rid": "linux-arm64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-musl-x64/native/libpsl-native.so": {
            "rid": "linux-musl-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libmi.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libpsl-native.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libpsrpclient.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libmi.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libpsl-native.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libpsrpclient.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm/native/pwrshplugin.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm64/native/pwrshplugin.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x64/native/pwrshplugin.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x86/native/pwrshplugin.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          }
        }
      },
      "Microsoft.SourceLink.Common/1.1.1": {},
      "Microsoft.SourceLink.GitHub/1.1.1": {
        "dependencies": {
          "Microsoft.Build.Tasks.Git": "1.1.1",
          "Microsoft.SourceLink.Common": "1.1.1"
        }
      },
      "Microsoft.Win32.Registry/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "Microsoft.Win32.Registry.AccessControl/5.0.0": {
        "dependencies": {
          "Microsoft.Win32.Registry": "5.0.0",
          "System.Security.AccessControl": "5.0.0"
        }
      },
      "Microsoft.Win32.SystemEvents/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "StyleCop.Analyzers/1.2.0-beta.507": {
        "dependencies": {
          "StyleCop.Analyzers.Unstable": "1.2.0.507"
        }
      },
      "StyleCop.Analyzers.Unstable/1.2.0.507": {},
      "System.CodeDom/5.0.0": {},
      "System.Collections.Immutable/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Configuration.ConfigurationManager/5.0.0": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "5.0.0",
          "System.Security.Permissions": "5.0.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.6.0": {},
      "System.Diagnostics.EventLog/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.Win32.Registry": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "System.DirectoryServices/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.IO.FileSystem.AccessControl": "5.0.0",
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Permissions": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "System.Drawing.Common/5.0.0": {
        "dependencies": {
          "Microsoft.Win32.SystemEvents": "5.0.0"
        }
      },
      "System.Formats.Asn1/5.0.0": {},
      "System.IO.FileSystem.AccessControl/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "System.Management/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.Win32.Registry": "5.0.0",
          "System.CodeDom": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Management.dll": {
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Management.Automation/7.1.0": {
        "dependencies": {
          "Microsoft.ApplicationInsights": "2.15.0",
          "Microsoft.Management.Infrastructure": "2.0.0",
          "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.0",
          "Microsoft.PowerShell.Native": "7.1.0",
          "Microsoft.Win32.Registry.AccessControl": "5.0.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "5.0.0",
          "System.DirectoryServices": "5.0.0",
          "System.IO.FileSystem.AccessControl": "5.0.0",
          "System.Management": "5.0.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Cryptography.Pkcs": "5.0.0",
          "System.Security.Permissions": "5.0.0",
          "System.Text.Encoding.CodePages": "7.0.0"
        },
        "runtimeTargets": {
          "runtimes/unix/lib/net5.0/System.Management.Automation.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "7.1.0.0",
            "fileVersion": "7.1.0.0"
          },
          "runtimes/win/lib/net5.0/System.Management.Automation.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "7.1.0.0",
            "fileVersion": "7.1.0.0"
          }
        }
      },
      "System.Memory/4.5.5": {},
      "System.Reflection.Metadata/7.0.0": {
        "dependencies": {
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/6.0.0": {
        "runtime": {
          "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Security.AccessControl/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "System.Security.Cryptography.Cng/5.0.0": {
        "dependencies": {
          "System.Formats.Asn1": "5.0.0"
        }
      },
      "System.Security.Cryptography.Pkcs/5.0.0": {
        "dependencies": {
          "System.Formats.Asn1": "5.0.0",
          "System.Security.Cryptography.Cng": "5.0.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/5.0.0": {},
      "System.Security.Permissions/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Windows.Extensions": "5.0.0"
        }
      },
      "System.Security.Principal.Windows/5.0.0": {},
      "System.Text.Encoding.CodePages/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          }
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {},
      "System.Windows.Extensions/5.0.0": {
        "dependencies": {
          "System.Drawing.Common": "5.0.0"
        }
      },
      "WpfAnalyzers/4.1.1": {}
    }
  },
  "libraries": {
    "Snoop.Core/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "JetBrains.Annotations/2023.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dvO//8aLmLRsCVVgoc/7qBqi2/y4BTyRcg20LCBWtK4n6E9Um06Zp7jF1n0hOE+yqBHwcrDzAjWvCaM3qH8flg==",
      "path": "jetbrains.annotations/2023.2.0",
      "hashPath": "jetbrains.annotations.2023.2.0.nupkg.sha512"
    },
    "Microsoft.ApplicationInsights/2.15.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==",
      "path": "microsoft.applicationinsights/2.15.0",
      "hashPath": "microsoft.applicationinsights.2.15.0.nupkg.sha512"
    },
    "Microsoft.Build.Tasks.Git/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q==",
      "path": "microsoft.build.tasks.git/1.1.1",
      "hashPath": "microsoft.build.tasks.git.1.1.1.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
      "path": "microsoft.codeanalysis.analyzers/3.3.4",
      "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pD5S14xMUebSGYe75kt0q/aaS/ftvktSo/pEv7aX7hNPHfdZS+SZeXvkvcffGxWkunYOyRF9m1oN7zzSdYj9dQ==",
      "path": "microsoft.codeanalysis.common/4.7.0",
      "hashPath": "microsoft.codeanalysis.common.4.7.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JHCP2L6lB0oJ3tQoHkC67SFZxW+KbJVOnAo+6L01K5r/NlBlSUhTk5nUAldWhTVwGdzqNeHqGtnEqpsCmGSwQA==",
      "path": "microsoft.codeanalysis.csharp/4.7.0",
      "hashPath": "microsoft.codeanalysis.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
      "path": "microsoft.management.infrastructure/2.0.0",
      "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
      "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
      "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
      "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
      "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
      "path": "microsoft.netcore.platforms/5.0.0",
      "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kuFOgilYbs29xENHlqQ6aJYa+t56u+OqHx85P7GYLVlo7HL3nsug9IQY2DoPgkOpZ2xb9btYV2EFK7Enll8S3A==",
      "path": "microsoft.netframework.referenceassemblies.net452/1.0.3",
      "hashPath": "microsoft.netframework.referenceassemblies.net452.1.0.3.nupkg.sha512"
    },
    "Microsoft.PowerShell.CoreCLR.Eventing/7.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TCTaoyysnTHUErm0w8W50CVB5Mzwj1PQyb740K1DLvbw8Ba607Q1HCSzBHClEDlG+Cphuv9ie2pbvEWcUKslVg==",
      "path": "microsoft.powershell.coreclr.eventing/7.1.0",
      "hashPath": "microsoft.powershell.coreclr.eventing.7.1.0.nupkg.sha512"
    },
    "Microsoft.PowerShell.Native/7.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==",
      "path": "microsoft.powershell.native/7.1.0",
      "hashPath": "microsoft.powershell.native.7.1.0.nupkg.sha512"
    },
    "Microsoft.SourceLink.Common/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg==",
      "path": "microsoft.sourcelink.common/1.1.1",
      "hashPath": "microsoft.sourcelink.common.1.1.1.nupkg.sha512"
    },
    "Microsoft.SourceLink.GitHub/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
      "path": "microsoft.sourcelink.github/1.1.1",
      "hashPath": "microsoft.sourcelink.github.1.1.1.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
      "path": "microsoft.win32.registry/5.0.0",
      "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==",
      "path": "microsoft.win32.registry.accesscontrol/5.0.0",
      "hashPath": "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512"
    },
    "Microsoft.Win32.SystemEvents/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
      "path": "microsoft.win32.systemevents/5.0.0",
      "hashPath": "microsoft.win32.systemevents.5.0.0.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"
    },
    "StyleCop.Analyzers/1.2.0-beta.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==",
      "path": "stylecop.analyzers/1.2.0-beta.507",
      "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512"
    },
    "StyleCop.Analyzers.Unstable/1.2.0.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==",
      "path": "stylecop.analyzers.unstable/1.2.0.507",
      "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512"
    },
    "System.CodeDom/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==",
      "path": "system.codedom/5.0.0",
      "hashPath": "system.codedom.5.0.0.nupkg.sha512"
    },
    "System.Collections.Immutable/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
      "path": "system.collections.immutable/7.0.0",
      "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==",
      "path": "system.configuration.configurationmanager/5.0.0",
      "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
      "path": "system.diagnostics.diagnosticsource/4.6.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
    },
    "System.Diagnostics.EventLog/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
      "path": "system.diagnostics.eventlog/5.0.0",
      "hashPath": "system.diagnostics.eventlog.5.0.0.nupkg.sha512"
    },
    "System.DirectoryServices/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==",
      "path": "system.directoryservices/5.0.0",
      "hashPath": "system.directoryservices.5.0.0.nupkg.sha512"
    },
    "System.Drawing.Common/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SztFwAnpfKC8+sEKXAFxCBWhKQaEd97EiOL7oZJZP56zbqnLpmxACWA8aGseaUExciuEAUuR9dY8f7HkTRAdnw==",
      "path": "system.drawing.common/5.0.0",
      "hashPath": "system.drawing.common.5.0.0.nupkg.sha512"
    },
    "System.Formats.Asn1/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
      "path": "system.formats.asn1/5.0.0",
      "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
    },
    "System.IO.FileSystem.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
      "path": "system.io.filesystem.accesscontrol/5.0.0",
      "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.Management/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==",
      "path": "system.management/5.0.0",
      "hashPath": "system.management.5.0.0.nupkg.sha512"
    },
    "System.Management.Automation/7.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WjmMs8kNETGWUmbE2A87cTcAGRz0WJ24TOZm5xkhop/93fIINK8TEcghEr2I0mSgXb7t0pWkPdKdEA5vizFQPA==",
      "path": "system.management.automation/7.1.0",
      "hashPath": "system.management.automation.7.1.0.nupkg.sha512"
    },
    "System.Memory/4.5.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
      "path": "system.memory/4.5.5",
      "hashPath": "system.memory.4.5.5.nupkg.sha512"
    },
    "System.Reflection.Metadata/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
      "path": "system.reflection.metadata/7.0.0",
      "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
      "path": "system.runtime.compilerservices.unsafe/6.0.0",
      "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
    },
    "System.Security.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
      "path": "system.security.accesscontrol/5.0.0",
      "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
      "path": "system.security.cryptography.cng/5.0.0",
      "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Pkcs/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
      "path": "system.security.cryptography.pkcs/5.0.0",
      "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==",
      "path": "system.security.cryptography.protecteddata/5.0.0",
      "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512"
    },
    "System.Security.Permissions/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
      "path": "system.security.permissions/5.0.0",
      "hashPath": "system.security.permissions.5.0.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
      "path": "system.security.principal.windows/5.0.0",
      "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
      "path": "system.text.encoding.codepages/7.0.0",
      "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "System.Windows.Extensions/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==",
      "path": "system.windows.extensions/5.0.0",
      "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512"
    },
    "WpfAnalyzers/4.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4+oLAk4gB4Wqn0ozKstB6fY9BafSU6c6GEgWjgOThyzHFBVqxihkS/1OmvEaYJnhjNUA/GOcZ6m2B7Xr2EePNw==",
      "path": "wpfanalyzers/4.1.1",
      "hashPath": "wpfanalyzers.4.1.1.nupkg.sha512"
    }
  }
}
tools\net5.0-windows\Snoop.Core.dll
md5: 6B7A90E8CC5B7176D1961D0747B24362 | sha1: D18B6256A63E99F2133C414236449F8A0DBA33B7 | sha256: E9027C0D113EA140C7741FBAD2BDC6A53D472691EE2F2D7A094DD4D30D00F520 | sha512: C3F5CC4114A0B91EE874045BEF8120B0722EF3075CB3876A4F8FD79EB0922D950310A21E706715672F573BBAD4BB11E6B9044993AB9C0068E2C3CA6B2AE71BC8
tools\net5.0-windows\Snoop.Core.pdb
 
tools\netcoreapp3.1\Snoop.Core.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "Snoop.Core/1.0.0": {
        "dependencies": {
          "JetBrains.Annotations": "2023.2.0",
          "Microsoft.CodeAnalysis.CSharp": "4.7.0",
          "Microsoft.NETFramework.ReferenceAssemblies.net452": "1.0.3",
          "Microsoft.SourceLink.GitHub": "1.1.1",
          "StyleCop.Analyzers": "1.2.0-beta.507",
          "System.Management.Automation": "7.0.0",
          "WpfAnalyzers": "4.1.1"
        },
        "runtime": {
          "Snoop.Core.dll": {}
        }
      },
      "JetBrains.Annotations/2023.2.0": {},
      "Microsoft.ApplicationInsights/2.13.1": {
        "dependencies": {
          "System.Diagnostics.DiagnosticSource": "4.6.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
            "assemblyVersion": "2.13.1.12554",
            "fileVersion": "2.13.1.12554"
          }
        }
      },
      "Microsoft.Build.Tasks.Git/1.1.1": {},
      "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
      "Microsoft.CodeAnalysis.Common/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5",
          "System.Reflection.Metadata": "7.0.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Text.Encoding.CodePages": "7.0.0",
          "System.Threading.Tasks.Extensions": "4.5.4"
        }
      },
      "Microsoft.CodeAnalysis.CSharp/4.7.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "4.7.0"
        }
      },
      "Microsoft.Management.Infrastructure/2.0.0": {
        "dependencies": {
          "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0",
          "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0"
        }
      },
      "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
        "runtimeTargets": {
          "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
        "runtimeTargets": {
          "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win-arm",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win-arm",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win-arm64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win-arm64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win10-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win10-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win10-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win10-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win7-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win7-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win7-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win7-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win8-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win8-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win8-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win8-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win81-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win81-x64",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
            "rid": "win81-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
            "rid": "win81-x86",
            "assetType": "runtime",
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/mi.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm/native/miutils.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/mi.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win-arm64/native/miutils.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/mi.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x64/native/miutils.dll": {
            "rid": "win10-x64",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/mi.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win10-x86/native/miutils.dll": {
            "rid": "win10-x86",
            "assetType": "native",
            "fileVersion": "10.0.18362.1"
          },
          "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x64/native/mi.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x64/native/miutils.dll": {
            "rid": "win7-x64",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/mi.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win7-x86/native/miutils.dll": {
            "rid": "win7-x86",
            "assetType": "native",
            "fileVersion": "10.0.14394.1000"
          },
          "runtimes/win8-x64/native/mi.dll": {
            "rid": "win8-x64",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x64/native/miutils.dll": {
            "rid": "win8-x64",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x86/native/mi.dll": {
            "rid": "win8-x86",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win8-x86/native/miutils.dll": {
            "rid": "win8-x86",
            "assetType": "native",
            "fileVersion": "6.2.9200.22812"
          },
          "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x64/native/mi.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x64/native/miutils.dll": {
            "rid": "win81-x64",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/mi.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          },
          "runtimes/win81-x86/native/miutils.dll": {
            "rid": "win81-x86",
            "assetType": "native",
            "fileVersion": "6.3.9600.16384"
          }
        }
      },
      "Microsoft.NETCore.Platforms/3.1.0": {},
      "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {},
      "Microsoft.PowerShell.CoreCLR.Eventing/7.0.0": {
        "dependencies": {
          "System.Diagnostics.EventLog": "4.7.0"
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp3.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.0.0"
          }
        }
      },
      "Microsoft.PowerShell.Native/7.0.0": {
        "runtimeTargets": {
          "runtimes/linux-arm/native/libpsl-native.so": {
            "rid": "linux-arm",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-arm64/native/libpsl-native.so": {
            "rid": "linux-arm64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-musl-x64/native/libpsl-native.so": {
            "rid": "linux-musl-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libmi.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libpsl-native.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/linux-x64/native/libpsrpclient.so": {
            "rid": "linux-x64",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libmi.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libpsl-native.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/osx/native/libpsrpclient.dylib": {
            "rid": "osx",
            "assetType": "native",
            "fileVersion": "0.0.0.0"
          },
          "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm/native/pwrshplugin.dll": {
            "rid": "win-arm",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-arm64/native/pwrshplugin.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x64/native/pwrshplugin.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          },
          "runtimes/win-x86/native/pwrshplugin.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "10.0.10011.16384"
          }
        }
      },
      "Microsoft.SourceLink.Common/1.1.1": {},
      "Microsoft.SourceLink.GitHub/1.1.1": {
        "dependencies": {
          "Microsoft.Build.Tasks.Git": "1.1.1",
          "Microsoft.SourceLink.Common": "1.1.1"
        }
      },
      "Microsoft.Win32.Registry/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "Microsoft.Win32.Registry.AccessControl/4.7.0": {
        "dependencies": {
          "Microsoft.Win32.Registry": "4.7.0",
          "System.Security.AccessControl": "4.7.0"
        }
      },
      "Microsoft.Win32.SystemEvents/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "StyleCop.Analyzers/1.2.0-beta.507": {
        "dependencies": {
          "StyleCop.Analyzers.Unstable": "1.2.0.507"
        }
      },
      "StyleCop.Analyzers.Unstable/1.2.0.507": {},
      "System.CodeDom/4.7.0": {},
      "System.Collections.Immutable/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        }
      },
      "System.Configuration.ConfigurationManager/4.7.0": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.7.0",
          "System.Security.Permissions": "4.7.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.6.0": {},
      "System.Diagnostics.EventLog/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.DirectoryServices/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.IO.FileSystem.AccessControl": "4.7.0",
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Permissions": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Drawing.Common/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.SystemEvents": "4.7.0"
        }
      },
      "System.IO.FileSystem.AccessControl/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Management/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "System.CodeDom": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Management.dll": {
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.19.56404"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.0.1.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Management.Automation/7.0.0": {
        "dependencies": {
          "Microsoft.ApplicationInsights": "2.13.1",
          "Microsoft.Management.Infrastructure": "2.0.0",
          "Microsoft.PowerShell.CoreCLR.Eventing": "7.0.0",
          "Microsoft.PowerShell.Native": "7.0.0",
          "Microsoft.Win32.Registry.AccessControl": "4.7.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "4.7.0",
          "System.DirectoryServices": "4.7.0",
          "System.IO.FileSystem.AccessControl": "4.7.0",
          "System.Management": "4.7.0",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Cryptography.Pkcs": "4.7.0",
          "System.Security.Permissions": "4.7.0",
          "System.Text.Encoding.CodePages": "7.0.0"
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netcoreapp3.1/System.Management.Automation.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.0.0"
          },
          "runtimes/win/lib/netcoreapp3.1/System.Management.Automation.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.0.0"
          }
        }
      },
      "System.Memory/4.5.5": {},
      "System.Reflection.Metadata/7.0.0": {
        "dependencies": {
          "System.Collections.Immutable": "7.0.0",
          "System.Memory": "4.5.5"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/6.0.0": {
        "runtime": {
          "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Security.AccessControl/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Security.Cryptography.Cng/4.7.0": {},
      "System.Security.Cryptography.Pkcs/4.7.0": {
        "dependencies": {
          "System.Security.Cryptography.Cng": "4.7.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.7.0": {},
      "System.Security.Permissions/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Windows.Extensions": "4.7.0"
        }
      },
      "System.Security.Principal.Windows/4.7.0": {},
      "System.Text.Encoding.CodePages/7.0.0": {
        "dependencies": {
          "System.Memory": "4.5.5",
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
            "assemblyVersion": "7.0.0.0",
            "fileVersion": "7.0.22.51805"
          }
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {},
      "System.Windows.Extensions/4.7.0": {
        "dependencies": {
          "System.Drawing.Common": "4.7.0"
        }
      },
      "WpfAnalyzers/4.1.1": {}
    }
  },
  "libraries": {
    "Snoop.Core/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "JetBrains.Annotations/2023.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dvO//8aLmLRsCVVgoc/7qBqi2/y4BTyRcg20LCBWtK4n6E9Um06Zp7jF1n0hOE+yqBHwcrDzAjWvCaM3qH8flg==",
      "path": "jetbrains.annotations/2023.2.0",
      "hashPath": "jetbrains.annotations.2023.2.0.nupkg.sha512"
    },
    "Microsoft.ApplicationInsights/2.13.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BQhLmYR06Z8TVCdxnr8WOhhovJHtqYRNeB5gePBdQ4uDOE8D4IK9HW9i6a3llELz1QHv4HtFpku6dpXMGnO22g==",
      "path": "microsoft.applicationinsights/2.13.1",
      "hashPath": "microsoft.applicationinsights.2.13.1.nupkg.sha512"
    },
    "Microsoft.Build.Tasks.Git/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AT3HlgTjsqHnWpBHSNeR0KxbLZD7bztlZVj7I8vgeYG9SYqbeFGh0TM/KVtC6fg53nrWHl3VfZFvb5BiQFcY6Q==",
      "path": "microsoft.build.tasks.git/1.1.1",
      "hashPath": "microsoft.build.tasks.git.1.1.1.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
      "path": "microsoft.codeanalysis.analyzers/3.3.4",
      "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pD5S14xMUebSGYe75kt0q/aaS/ftvktSo/pEv7aX7hNPHfdZS+SZeXvkvcffGxWkunYOyRF9m1oN7zzSdYj9dQ==",
      "path": "microsoft.codeanalysis.common/4.7.0",
      "hashPath": "microsoft.codeanalysis.common.4.7.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JHCP2L6lB0oJ3tQoHkC67SFZxW+KbJVOnAo+6L01K5r/NlBlSUhTk5nUAldWhTVwGdzqNeHqGtnEqpsCmGSwQA==",
      "path": "microsoft.codeanalysis.csharp/4.7.0",
      "hashPath": "microsoft.codeanalysis.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==",
      "path": "microsoft.management.infrastructure/2.0.0",
      "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==",
      "path": "microsoft.management.infrastructure.runtime.unix/2.0.0",
      "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512"
    },
    "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==",
      "path": "microsoft.management.infrastructure.runtime.win/2.0.0",
      "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
      "path": "microsoft.netcore.platforms/3.1.0",
      "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies.net452/1.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kuFOgilYbs29xENHlqQ6aJYa+t56u+OqHx85P7GYLVlo7HL3nsug9IQY2DoPgkOpZ2xb9btYV2EFK7Enll8S3A==",
      "path": "microsoft.netframework.referenceassemblies.net452/1.0.3",
      "hashPath": "microsoft.netframework.referenceassemblies.net452.1.0.3.nupkg.sha512"
    },
    "Microsoft.PowerShell.CoreCLR.Eventing/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bX1HxVGw4e5LRW4CkukufgUfVT3RceLLWT1WAAmRgpWetwLspIbqpXzPmBuD0qyJA2Ud2+9X2AVag4qcBkekRw==",
      "path": "microsoft.powershell.coreclr.eventing/7.0.0",
      "hashPath": "microsoft.powershell.coreclr.eventing.7.0.0.nupkg.sha512"
    },
    "Microsoft.PowerShell.Native/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-btrvvHj0QEdPU2lIKD5divnLbMok/dNUUo4pjTZJAyU+y+We6cuPL5UurHJTzWPEwU/NzS8+2tqV4jSXvlPB2Q==",
      "path": "microsoft.powershell.native/7.0.0",
      "hashPath": "microsoft.powershell.native.7.0.0.nupkg.sha512"
    },
    "Microsoft.SourceLink.Common/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WMcGpWKrmJmzrNeuaEb23bEMnbtR/vLmvZtkAP5qWu7vQsY59GqfRJd65sFpBszbd2k/bQ8cs8eWawQKAabkVg==",
      "path": "microsoft.sourcelink.common/1.1.1",
      "hashPath": "microsoft.sourcelink.common.1.1.1.nupkg.sha512"
    },
    "Microsoft.SourceLink.GitHub/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IaJGnOv/M7UQjRJks7B6p7pbPnOwisYGOIzqCz5ilGFTApZ3ktOR+6zJ12ZRPInulBmdAf1SrGdDG2MU8g6XTw==",
      "path": "microsoft.sourcelink.github/1.1.1",
      "hashPath": "microsoft.sourcelink.github.1.1.1.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
      "path": "microsoft.win32.registry/4.7.0",
      "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6ZBpiCrPHoRxm0GWrlUfSKx5i4987cRs2hi8KVHD+iI72pm0jScyr5QvqdLeyTgf22R4WgdmBo2k64wtVotPRA==",
      "path": "microsoft.win32.registry.accesscontrol/4.7.0",
      "hashPath": "microsoft.win32.registry.accesscontrol.4.7.0.nupkg.sha512"
    },
    "Microsoft.Win32.SystemEvents/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
      "path": "microsoft.win32.systemevents/4.7.0",
      "hashPath": "microsoft.win32.systemevents.4.7.0.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"
    },
    "StyleCop.Analyzers/1.2.0-beta.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/FtugDT66cKJJ+GGH7rNpG6UDrT4iIWz45M6lrXXHobDUFDHw+q5VgkbiR+6ffTO564ge7w6fQh/eoQhVdJO8Q==",
      "path": "stylecop.analyzers/1.2.0-beta.507",
      "hashPath": "stylecop.analyzers.1.2.0-beta.507.nupkg.sha512"
    },
    "StyleCop.Analyzers.Unstable/1.2.0.507": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-gTY3IQdRqDJ4hbhSA3e/R48oE8b/OiKfvwkt1QdNVfrJK2gMHBV8ldaHJ885jxWZfllK66soa/sdcjh9bX49Tw==",
      "path": "stylecop.analyzers.unstable/1.2.0.507",
      "hashPath": "stylecop.analyzers.unstable.1.2.0.507.nupkg.sha512"
    },
    "System.CodeDom/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Hs9pw/kmvH3lXaZ1LFKj3pLQsiGfj2xo3sxSzwiLlRL6UcMZUTeCfoJ9Udalvn3yq5dLlPEZzYegrTQ1/LhPOQ==",
      "path": "system.codedom/4.7.0",
      "hashPath": "system.codedom.4.7.0.nupkg.sha512"
    },
    "System.Collections.Immutable/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==",
      "path": "system.collections.immutable/7.0.0",
      "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512"
    },
    "System.Configuration.ConfigurationManager/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
      "path": "system.configuration.configurationmanager/4.7.0",
      "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
    },
    "System.Diagnostics.DiagnosticSource/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==",
      "path": "system.diagnostics.diagnosticsource/4.6.0",
      "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512"
    },
    "System.Diagnostics.EventLog/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
      "path": "system.diagnostics.eventlog/4.7.0",
      "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
    },
    "System.DirectoryServices/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NRENC4ulDamI4DQtrYybxtQU3qnhGSTUdEKJkLyctHXY4RqNyS/egZpB9z8/CnFCiaQZmwLlqxfBmw80VlKBTA==",
      "path": "system.directoryservices/4.7.0",
      "hashPath": "system.directoryservices.4.7.0.nupkg.sha512"
    },
    "System.Drawing.Common/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
      "path": "system.drawing.common/4.7.0",
      "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
    },
    "System.IO.FileSystem.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vMToiarpU81LR1/KZtnT7VDPvqAZfw9oOS5nY6pPP78nGYz3COLsQH3OfzbR+SjTgltd31R6KmKklz/zDpTmzw==",
      "path": "system.io.filesystem.accesscontrol/4.7.0",
      "hashPath": "system.io.filesystem.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Management/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IY+uuGhgzWiCg21i8IvQeY/Z7m1tX8VuPF+ludfn7iTCaccTtJo5HkjZbBEL8kbBubKhAKKtNXr7uMtmAc28Pw==",
      "path": "system.management/4.7.0",
      "hashPath": "system.management.4.7.0.nupkg.sha512"
    },
    "System.Management.Automation/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VRCxKA4+RVXt6Fp6wv7RAx1IQr0TUtawT9/O2X3SYuyLxpsW3KW4yuBLKHj/grZBpi3Gtt9+Q0cR6HrKW2f8vw==",
      "path": "system.management.automation/7.0.0",
      "hashPath": "system.management.automation.7.0.0.nupkg.sha512"
    },
    "System.Memory/4.5.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
      "path": "system.memory/4.5.5",
      "hashPath": "system.memory.4.5.5.nupkg.sha512"
    },
    "System.Reflection.Metadata/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==",
      "path": "system.reflection.metadata/7.0.0",
      "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
      "path": "system.runtime.compilerservices.unsafe/6.0.0",
      "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
    },
    "System.Security.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
      "path": "system.security.accesscontrol/4.7.0",
      "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
      "path": "system.security.cryptography.cng/4.7.0",
      "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Pkcs/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
      "path": "system.security.cryptography.pkcs/4.7.0",
      "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
      "path": "system.security.cryptography.protecteddata/4.7.0",
      "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
    },
    "System.Security.Permissions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
      "path": "system.security.permissions/4.7.0",
      "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
      "path": "system.security.principal.windows/4.7.0",
      "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/7.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
      "path": "system.text.encoding.codepages/7.0.0",
      "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "System.Windows.Extensions/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
      "path": "system.windows.extensions/4.7.0",
      "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
    },
    "WpfAnalyzers/4.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4+oLAk4gB4Wqn0ozKstB6fY9BafSU6c6GEgWjgOThyzHFBVqxihkS/1OmvEaYJnhjNUA/GOcZ6m2B7Xr2EePNw==",
      "path": "wpfanalyzers/4.1.1",
      "hashPath": "wpfanalyzers.4.1.1.nupkg.sha512"
    }
  }
}
tools\netcoreapp3.1\Snoop.Core.dll
md5: CE6FD05C2A380B6A3429498232712B44 | sha1: 676BB2C943F0066E40E84B8D6BCFCE230DB8432C | sha256: 45609C96AEEA3424F1FBF4C0023F3A7464539C46C48EC0215DEF8EFE7F844537 | sha512: FC7C8E92F1389682F95F725B10C0CF1CE052A9BCE00CAB8EA8B4C418830342E858D230483EF90A760849DF8FDD52F0C0408E7AB4825DA4F9DCEAAC4374428D0E
tools\netcoreapp3.1\Snoop.Core.pdb
 
tools\Scripts\Snoop.psm1
function Get-AllItems {
	function Drill($item) {
		foreach ($child in $item.Children) {
			Drill $child
		}
		$item
	}
	Drill $root
}

function Find-By {
<#
.SYNOPSIS
	Recursively finds an element contained in the visual tree matched using a predicate.
.PARAMETER predicate
	The script block which filters on items.
.PARAMETER select
	If enabled, selects the first match.
#>
	param([parameter(mandatory=$true)] [scriptblock] $predicate, [switch] $select)
	foreach ($i in (Get-AllItems | ? $predicate)) {
		$i
		if ($select) {
			$i.IsSelected = $true
			break
		}
	}
}

function Find-ByName {
<#
.SYNOPSIS
	Recursively finds an element contained in the visual tree matched by name.
.PARAMETER name
	The regular expression to match on the element's x:Name.
.PARAMETER select
	If enabled, selects the first match.
#>
	param([parameter(mandatory=$true)] [string] $name, [switch] $select)
	Find-By { $_.Target.Name -match $name } -select:$select
}

<#
.SYNOPSIS
	Recursively finds an element contained in the visual tree matched by name.
.PARAMETER type
	The regular expression to match on the element's type.
.PARAMETER select
	If enabled, selects the first match.
#>
function Find-ByType {
	param([parameter(mandatory=$true)] [string] $type, [switch]$select)
	Find-By { $_.Target.GetType().Name -match $type } -select:$select
}

<#
.SYNOPSIS
	Gets the currently selected tree item's data context.
#>
function Get-SelectedDataContext {
	$selected.Target.DataContext
}

Export-ModuleMember Find-By,Find-ByType,Find-ByName,Get-SelectedDataContext
# SIG # Begin signature block
# MIIu+gYJKoZIhvcNAQcCoIIu6zCCLucCAQExDzANBglghkgBZQMEAgEFADB5Bgor
# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG
# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB7NluKUQAZPfVL
# 2B6hgvwVCmfghBg79S0Rm024EPza0qCCE1IwggXdMIIDxaADAgECAgh7LJvTFoAy
# mTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx
# EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8G
# A1UEAwwoU1NMLmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTAe
# Fw0xNjAyMTIxNzM5MzlaFw00MTAyMTIxNzM5MzlaMHwxCzAJBgNVBAYTAlVTMQ4w
# DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENv
# cnBvcmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlvbiBB
# dXRob3JpdHkgUlNBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA+Q/d
# oyt9y9Aq/uxnhabnLhu6d+Hj9a+k7PpKXZHEV0drGHdrdvL9k+Q9D8IWngtmw1aU
# nheDhc5W7/IW/QBi9SIJVOhlF05BueBPRpeqG8i4bmJeabFf2yoCfvxsyvNB2O3Q
# 6Pw/YUjtsAMUHRAOSxngu07shmX/NvNeZwILnYZVYf16OO3+4hkAt2+hUGJ1dDyg
# +sglkrRueiLH+B6h47LdkTGrKx0E/6VKBDfphaQzK/3i1lU0fBmkSmjHsqjTt8qh
# k4jrwZe8jPkd2SKEJHTHBD1qqSmTzOu4W+H+XyWqNFjIwSNUnRuYEcM4nH49hmyl
# D0CGfAL0XAJPKMuucZ8POsgz/hElNer8usVgPdl8GNWyqdN1eANyIso6wx/vLOUu
# qfqeLLZRRv2vA9bqYGjqhRY2a4XpHsCz3cQk3IAqgUFtlD7I4MmBQQCeXr9/xQiY
# ohgsQkCz+W84J0tOgPQ9gUfgiHzqHM61dVxRLhwrfxpyKOcAtdF0xtfkn60Hk7ZT
# NTX8N+TD9l0WviFz3pIK+KBjaryWkmo++LxlVZve9Q2JJgT8JRqmJWnLwm3KfOJZ
# X5es6+8uyLzXG1k8K8zyGciTaydjGc/86Sb4ynGbf5P+NGeETpnr/LN4CTNwumam
# du0bc+sapQ3EIhMglFYKTixsTrH9z5wJuqIz7YcCAwEAAaNjMGEwHQYDVR0OBBYE
# FN0ECQei9Xp9UlMSkpXuOIAlDaZZMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgw
# FoAU3QQJB6L1en1SUxKSle44gCUNplkwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3
# DQEBCwUAA4ICAQAgGBGUKfsmnRweHnBh8ZVyk3EkrWiTWI4yrxuzcAP8JSt0hZA9
# eGr0uYullzu1GJG7Hqf5QFuR+VWZrx4R0Fwdp2bjsZQHDDI5puobsHnYHZxwROOK
# 3cT5lR+KOEM/AYWlR6c9RrK85SJo93uc2Cw+CiHILTOsv8WBmTF0wXVxxb6x8CNF
# 9J1r/BljnaO8BMYYCyW7U4kPs4BQ3kXuRH+rlHhkmNP2KN2H2HBldPsOuRPrpw9h
# qTKWzN677WNMGLupQPegVG4giHF1GOp6tDRy4CMnd1y2kOqGJUCr7zMPy5+CvqIg
# +/a1LRrmwoWxdA/7yGUCpFIBR91JIsG/2OtrrH7e7GMzFbcjCI/GD41BWt2OxbmP
# 5UU/eNu60htAsf5xTT/ggaK6XrTsFeCT3QgffuFVmQsh3pOeCvvmo0m9NjD+53ey
# oHWXtS2BiBdlIPfakACfyVLMMso1fPU9D9gr1/UmbMkGNJYW6nBZGjJ5eQu2iH8P
# Ukg9v2zYokQu0U63cljTiROV/kSr+NeLG26cvCygW9VqAK9fN+HV+hALmJyG5yaP
# zvDsbopXC4DjTrLAoGNhkLpVaDd0araS25+hhiK2ZScO7LafQmDkZ8K12kELxNOL
# YRu8+h+RK9dEB166KazZxenvU0ha64DxKFghzbAGVfsnP1OQcKkEHlcnuTCCBnIw
# ggRaoAMCAQICCGQzUdPHOJ8IMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVT
# MQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NM
# IENvcnBvcmF0aW9uMTEwLwYDVQQDDChTU0wuY29tIFJvb3QgQ2VydGlmaWNhdGlv
# biBBdXRob3JpdHkgUlNBMB4XDTE2MDYyNDIwNDQzMFoXDTMxMDYyNDIwNDQzMFow
# eDELMAkGA1UEBhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9u
# MREwDwYDVQQKDAhTU0wgQ29ycDE0MDIGA1UEAwwrU1NMLmNvbSBDb2RlIFNpZ25p
# bmcgSW50ZXJtZWRpYXRlIENBIFJTQSBSMTCCAiIwDQYJKoZIhvcNAQEBBQADggIP
# ADCCAgoCggIBAJ+DE3OqsMZtIcvbi3qHdNBx3I6Xcprku4g0tN2AA8YvRaR0mr8e
# D1Dqnm1485/6USapPZ3RspRXPvs5iRuRK1bvZ8vmC+MOOYzGNfSMPd0l6QGsF0J9
# WBZA3PnVKEQdlWQwYTpk8pfXc0x9eyMCbfN161U9b6otxK++dKxd/mq2/OpceekP
# Q5y1UgUP7z6xsY/QSa2m40IZVD/zLw6hy3z+E/kjOdolHLg+AEo6bzIwN2Qex651
# B9hV0hjJDoq8o1zwfAqnhYHCDq+PmVzTYCW8g1ppHCUTzXL165yAm9wsZ8TdyQmY
# 1XPrxCGj5TKOPi9SmMZgN2SMsm9KVHIYzCeH+s11omMhTLU9ZP0rpptVryZMYLS5
# XP6rQ72t0BNmUB8L0omm/9eABvHDEQIzM2EX91Yfji87aOcV8XdWSimeA9rCKyZh
# MlugVuVJKY02p/XHUqJWAyAvOHiAvfYGrkE0y5RFvZvHiRgfC7r/qa5qQJkT3e9Q
# 3wG68gTW0DHfNDheV1vIOB5W1KxIpu3/+bjBO+3CJL5EYKd3zdU9mFm0Q+qqYH3N
# wuUv8ev11CDVlzRuXQRrBRHS05KMCSdE7U81MUZ+dBkFYuyJ4+ojcJjk0S/UihMY
# RpNl5Vhz00w9J3oiP8P4o1W3+eaHguxFHsVuOnyxTrmraPebY9WRQbypAgMBAAGj
# gfswgfgwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTdBAkHovV6fVJTEpKV
# 7jiAJQ2mWTAwBggrBgEFBQcBAQQkMCIwIAYIKwYBBQUHMAGGFGh0dHA6Ly9vY3Nw
# cy5zc2wuY29tMBEGA1UdIAQKMAgwBgYEVR0gADATBgNVHSUEDDAKBggrBgEFBQcD
# AzA7BgNVHR8ENDAyMDCgLqAshipodHRwOi8vY3Jscy5zc2wuY29tL3NzbC5jb20t
# cnNhLVJvb3RDQS5jcmwwHQYDVR0OBBYEFFTC/hCVAJPNavXnwNfZsku4jwzjMA4G
# A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEA9Q8mh3CvmaLK9dbJ8I1m
# PTmC04gj2IK/j1SEJ7bTgwfXnieJTYSOVNEg7mBD21dCPMewlfa+zOqjPY5PBsYr
# WYZ/63MbyuVAJuA9b8z2vXHGzX0OIEA51gXSr5QIv3/CUbcrtXuDIfBj2uWc4Wku
# dR1Oy2Ee9aUz3wKdFdntaZNXukZFLoC8Zb7nEj7eR/+QnBCt9laypNT61vwuvJch
# s3aD0pH6BlDRsYAogP7brQ9n7fh93NlwW3q6aLWzSmYXj+fw51fdaf68XuHVjJ8T
# u5WaFft5K4XVbT5nR24bB1z7VEUPFhEuEcOwvLVuHDNXlB7+QjRGjjFQTtszV5X6
# OOTmEturWC5Ft9kiyvRaR0ksKOhPjEI8ZGjp5kOsGZGpxxOCX/xxCje3nVB7PF33
# olKCNeS159MKb2v+jfmk19UdS+d9Ygj42desmUnbtYRBFC72LmCXU0ua/vGIenS6
# nnXp4NqnycwsO3tMCnjPlPc2YLaDPIpUy04NaCqUEXUmFOogN8zreRd2VXhxbeJJ
# ODM32+RsWccjYua8zi5US/1eAyrI3R5LcUTQdT4xYmWLKabtJOF6HYQ0f6QXfLSs
# fT81WMvDvxrdn1RWbUXlU/OIiisxo8o+UNEANOwnCMNnxlzoaL/PLhZluDxm/zuy
# lauajZ3MlPDteFB/7GRHo50wggb3MIIE36ADAgECAhACZ40AsvpiNcPsz2WF8V2L
# MA0GCSqGSIb3DQEBCwUAMHgxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQ
# MA4GA1UEBwwHSG91c3RvbjERMA8GA1UECgwIU1NMIENvcnAxNDAyBgNVBAMMK1NT
# TC5jb20gQ29kZSBTaWduaW5nIEludGVybWVkaWF0ZSBDQSBSU0EgUjEwHhcNMjEx
# MDE5MTIyNDU3WhcNMjQxMDE4MTIyNDU3WjBsMQswCQYDVQQGEwJVUzERMA8GA1UE
# CAwIRGVsYXdhcmUxDjAMBgNVBAcMBUxld2VzMRwwGgYDVQQKDBNTaWduUGF0aCBG
# b3VuZGF0aW9uMRwwGgYDVQQDDBNTaWduUGF0aCBGb3VuZGF0aW9uMIICIjANBgkq
# hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApWlhUEpT36mKoGoxJClSGLu4vbVKe9tg
# iQgv756TBwEoCyr7BL8ewpbHrVjoeryjeR1+RKQaMun19ScQOupFawtKL9Uhj9gV
# QI3sB4U34+8Z5bOOvWJfHmafAwEA6upKfT69xBLOHxMowj8uAyxGxujB53d80TaF
# XkO7zt/6KJIu2SYlpwbYUsedVhXbWqG40sEkkLtImFqk2GIrCKK2if/bUvRT6VCb
# 0NaVOVI+HAXHGKRZQH9y5WQ9kVpoJTe+3PZfHkZbk34zYM260lAxF74nbWLFScmd
# UjDahpoMWJ0mkwjE62OPYeVOZODX3MRDmku+E9ZjZGrjZPQWTerX/4Umk9frdgTo
# mNUICAhrDcf8ilx92nNUtYYhVeJmW/UJdkiWEo+NqBE5uzXOH5e6ewMWBpYjNJgy
# 9zZoYTAMpRtDYTJgpUz5xUrbhVzBPxoTr8jxxREkHMtq+MnynmGwbsbClcismIYC
# 4pcThsjaOP5Kz1/yebC5gBhF2SKa/y3xpEChqAMrsuxLj2LSo6pNcOeokn24xmuY
# lroUNo1NMXTICIsc13i995eEbqhsYJMPa8Ycu9EjLZOnDg7qKdsKzwplHgZLCvjT
# nEMnmF/caVRnQERG3ykaxibkQNHJfGxucGFma4RDCtP232rJ1RPRdYjo6xGUEKiA
# 9c390bKm/DMCAwEAAaOCAYcwggGDMB8GA1UdIwQYMBaAFFTC/hCVAJPNavXnwNfZ
# sku4jwzjMHoGCCsGAQUFBwEBBG4wbDBIBggrBgEFBQcwAoY8aHR0cDovL2NlcnQu
# c3NsLmNvbS9TU0xjb20tU3ViQ0EtQ29kZVNpZ25pbmctUlNBLTQwOTYtUjEuY2Vy
# MCAGCCsGAQUFBzABhhRodHRwOi8vb2NzcHMuc3NsLmNvbTBRBgNVHSAESjBIMAgG
# BmeBDAEEATA8BgwrBgEEAYKpMAEDAwEwLDAqBggrBgEFBQcCARYeaHR0cHM6Ly93
# d3cuc3NsLmNvbS9yZXBvc2l0b3J5MBMGA1UdJQQMMAoGCCsGAQUFBwMDME0GA1Ud
# HwRGMEQwQqBAoD6GPGh0dHA6Ly9jcmxzLnNzbC5jb20vU1NMY29tLVN1YkNBLUNv
# ZGVTaWduaW5nLVJTQS00MDk2LVIxLmNybDAdBgNVHQ4EFgQUrYyR4zRnkGC/K72y
# HKHwSGMK53QwDgYDVR0PAQH/BAQDAgeAMA0GCSqGSIb3DQEBCwUAA4ICAQBo/7N2
# JGiThkIMtCn68TgN+r/4cEfSbsI8fntdfy5tcX1PdkESnzvxb1mkuzEIJfTiA1si
# q0JgPb2j6XDkfUQ1YJ4wA2zwEN/jOdHjAWbhV6S6Ab3Uwax/zgGmUKYf0q/O3q9l
# rlvWCxOB7U+iv+ha/9yWNwl0KfBbVnQILTUIo7zFtxef4fswkkZBPw3030ErsUW5
# TcBQxSgrK8RKAs6OTrN67b7oHSIYMyIwapNezinRDpRCBG0Evvo2Zjj37EowwYQK
# ta36gnvhV2kEXQg+ze1X80fOJ3AhqA33vdAkZbCGFYB+1PX3MC9p9KpXZiEsTG+0
# Y5x1jipU5VPY6o0p+T9hQUwEWACyy9in2XVRrlaDApAiMPZewbs5LDbhhnugbgQT
# MkE7xsHRtD6TdlLbqrWMSF2qi0iHOHJd4XEgzrUfAZtaxPV4AKcL61jpMA7b+X4d
# Yo+kzKEFpivOmFifKxJbIXeF0UTv9yV020XTXU+Zacq2JUKfD3Tk6QpHSaG6XrcZ
# 4d84Lus0ya3+2FK+mD4aigV1W3Bc1xVBgvj/AIYwualxPGwr6MqY6A/Mb+Mw8LvG
# VknKECN3bcUPdXQi7cpqyXEVpvpAWXndn7PGFJFJSv6+YjCqzGoAzNnIowwEsOSF
# zht/BuwiOyjnqwkTLqHMkrfgYt1E2g5Dv+amKTGCGv4wghr6AgEBMIGMMHgxCzAJ
# BgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjERMA8G
# A1UECgwIU1NMIENvcnAxNDAyBgNVBAMMK1NTTC5jb20gQ29kZSBTaWduaW5nIElu
# dGVybWVkaWF0ZSBDQSBSU0EgUjECEAJnjQCy+mI1w+zPZYXxXYswDQYJYIZIAWUD
# BAIBBQCggf8wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIB
# CzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIJbq7G3lHkYm/yfsRKiT
# J8XR7IkMq5ssz6DpwmtN88owMIGSBgorBgEEAYI3AgEMMYGDMIGAoFaAVABTAG4A
# bwBvAHAALgBwAHMAbQAxACAAYgB5ACAAZwBpAHQAaAB1AGIALgBjAG8AbQAvAHMA
# bgBvAG8AcAB3AHAAZgAvAHMAbgBvAG8AcAB3AHAAZqEmgCRodHRwczovL2dpdGh1
# Yi5jb20vc25vb3B3cGYvc25vb3B3cGYwDQYJKoZIhvcNAQEBBQAEggIANOb4fLEw
# IIw8/XUIFDEbk9qYl2k5GkahYYpshSPNl91KO8W1Zco4nRK0cKFfrLuyCrARoYIY
# SaoetH7DWFaSGzuL0RZ+ue0ysM9ig0Q/gED4dflyY+bYwSh5UBEaT45A66VfmNOM
# T5KoaWNNLUoSXI/PSO3pFe+mWHBBetx7NmXqOV85sHftHz91zsr6l20KVG52ez4X
# ydsK0VAphzR3K6YcOWrT0qLWAt2rkOVuFbFFNcpnUwbmys7X7vxUw0id2frIBHxf
# +yjS/+Mz7Crgjf+YiL/97olpo7pM+UJmAcGZcVWjG6dVc45q5JHMTeSxOsJZiknQ
# jdR/MRlmOqvaleG31zwIyrA77IXnQc1YE/MOHTbum7wm135efc8gF0DfBddY6uLS
# NpyUY2LMBfe5ksSUYRre3evh0AQHsIifpy0Uh3t0U2fwTQQuk+UyiMgcfyy4wIDc
# X2bQKz8yHceaNKlGrNtne7diX+UEbEIpclhV4l3iq7mBP294jiWHDj2Ei7NjUnZI
# K2cvfWESINJ9WHIGmieCbYJFYRrNlDBFmOsbv3UesONB2pTpP8a1DiKKJhg5TK6v
# H4X+qGsoj2HFeWY8J4g9yOIVJDuxUqQgQPug2kH7SzWjHUVKNuas8ZoDSv/oXTPD
# sfKOS+dt5HfiRl9+/xUszeOTHp1UTbHDLSyhghdAMIIXPAYKKwYBBAGCNwMDATGC
# FywwghcoBgkqhkiG9w0BBwKgghcZMIIXFQIBAzEPMA0GCWCGSAFlAwQCAQUAMHgG
# CyqGSIb3DQEJEAEEoGkEZzBlAgEBBglghkgBhv1sBwEwMTANBglghkgBZQMEAgEF
# AAQgXKA93Pjf+jmaxa++wSs8lqNebw2qQWAgZfM2CvQFIB4CEQCKo4nNuWLc/qJO
# wq2iYZFCGA8yMDIzMTAxMTE1MjIwM1qgghMJMIIGwjCCBKqgAwIBAgIQBUSv85Sd
# CDmmv9s/X+VhFjANBgkqhkiG9w0BAQsFADBjMQswCQYDVQQGEwJVUzEXMBUGA1UE
# ChMORGlnaUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQg
# UlNBNDA5NiBTSEEyNTYgVGltZVN0YW1waW5nIENBMB4XDTIzMDcxNDAwMDAwMFoX
# DTM0MTAxMzIzNTk1OVowSDELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0
# LCBJbmMuMSAwHgYDVQQDExdEaWdpQ2VydCBUaW1lc3RhbXAgMjAyMzCCAiIwDQYJ
# KoZIhvcNAQEBBQADggIPADCCAgoCggIBAKNTRYcdg45brD5UsyPgz5/X5dLnXaEO
# CdwvSKOXejsqnGfcYhVYwamTEafNqrJq3RApih5iY2nTWJw1cb86l+uUUI8cIOrH
# mjsvlmbjaedp/lvD1isgHMGXlLSlUIHyz8sHpjBoyoNC2vx/CSSUpIIa2mq62DvK
# Xd4ZGIX7ReoNYWyd/nFexAaaPPDFLnkPG2ZS48jWPl/aQ9OE9dDH9kgtXkV1lnX+
# 3RChG4PBuOZSlbVH13gpOWvgeFmX40QrStWVzu8IF+qCZE3/I+PKhu60pCFkcOvV
# 5aDaY7Mu6QXuqvYk9R28mxyyt1/f8O52fTGZZUdVnUokL6wrl76f5P17cz4y7lI0
# +9S769SgLDSb495uZBkHNwGRDxy1Uc2qTGaDiGhiu7xBG3gZbeTZD+BYQfvYsSzh
# Ua+0rRUGFOpiCBPTaR58ZE2dD9/O0V6MqqtQFcmzyrzXxDtoRKOlO0L9c33u3Qr/
# eTQQfqZcClhMAD6FaXXHg2TWdc2PEnZWpST618RrIbroHzSYLzrqawGw9/sqhux7
# UjipmAmhcbJsca8+uG+W1eEQE/5hRwqM/vC2x9XH3mwk8L9CgsqgcT2ckpMEtGlw
# Jw1Pt7U20clfCKRwo+wK8REuZODLIivK8SgTIUlRfgZm0zu++uuRONhRB8qUt+JQ
# ofM604qDy0B7AgMBAAGjggGLMIIBhzAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/
# BAIwADAWBgNVHSUBAf8EDDAKBggrBgEFBQcDCDAgBgNVHSAEGTAXMAgGBmeBDAEE
# AjALBglghkgBhv1sBwEwHwYDVR0jBBgwFoAUuhbZbU2FL3MpdpovdYxqII+eyG8w
# HQYDVR0OBBYEFKW27xPn783QZKHVVqllMaPe1eNJMFoGA1UdHwRTMFEwT6BNoEuG
# SWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQw
# OTZTSEEyNTZUaW1lU3RhbXBpbmdDQS5jcmwwgZAGCCsGAQUFBwEBBIGDMIGAMCQG
# CCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wWAYIKwYBBQUHMAKG
# TGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJT
# QTQwOTZTSEEyNTZUaW1lU3RhbXBpbmdDQS5jcnQwDQYJKoZIhvcNAQELBQADggIB
# AIEa1t6gqbWYF7xwjU+KPGic2CX/yyzkzepdIpLsjCICqbjPgKjZ5+PF7SaCinEv
# GN1Ott5s1+FgnCvt7T1IjrhrunxdvcJhN2hJd6PrkKoS1yeF844ektrCQDifXcig
# LiV4JZ0qBXqEKZi2V3mP2yZWK7Dzp703DNiYdk9WuVLCtp04qYHnbUFcjGnRuSvE
# xnvPnPp44pMadqJpddNQ5EQSviANnqlE0PjlSXcIWiHFtM+YlRpUurm8wWkZus8W
# 8oM3NG6wQSbd3lqXTzON1I13fXVFoaVYJmoDRd7ZULVQjK9WvUzF4UbFKNOt50MA
# cN7MmJ4ZiQPq1JE3701S88lgIcRWR+3aEUuMMsOI5ljitts++V+wQtaP4xeR0arA
# VeOGv6wnLEHQmjNKqDbUuXKWfpd5OEhfysLcPTLfddY2Z1qJ+Panx+VPNTwAvb6c
# Kmx5AdzaROY63jg7B145WPR8czFVoIARyxQMfq68/qTreWWqaNYiyjvrmoI1VygW
# y2nyMpqy0tg6uLFGhmu6F/3Ed2wVbK6rr3M66ElGt9V/zLY4wNjsHPW2obhDLN9O
# TH0eaHDAdwrUAuBcYLso/zjlUlrWrBciI0707NMX+1Br/wd3H3GXREHJuEbTbDJ8
# WC9nR2XlG3O2mflrLAZG70Ee8PBf4NvZrZCARK+AEEGKMIIGrjCCBJagAwIBAgIQ
# BzY3tyRUfNhHrP0oZipeWzANBgkqhkiG9w0BAQsFADBiMQswCQYDVQQGEwJVUzEV
# MBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29t
# MSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMjIwMzIzMDAw
# MDAwWhcNMzcwMzIyMjM1OTU5WjBjMQswCQYDVQQGEwJVUzEXMBUGA1UEChMORGln
# aUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQgUlNBNDA5
# NiBTSEEyNTYgVGltZVN0YW1waW5nIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A
# MIICCgKCAgEAxoY1BkmzwT1ySVFVxyUDxPKRN6mXUaHW0oPRnkyibaCwzIP5WvYR
# oUQVQl+kiPNo+n3znIkLf50fng8zH1ATCyZzlm34V6gCff1DtITaEfFzsbPuK4CE
# iiIY3+vaPcQXf6sZKz5C3GeO6lE98NZW1OcoLevTsbV15x8GZY2UKdPZ7Gnf2ZCH
# RgB720RBidx8ald68Dd5n12sy+iEZLRS8nZH92GDGd1ftFQLIWhuNyG7QKxfst5K
# fc71ORJn7w6lY2zkpsUdzTYNXNXmG6jBZHRAp8ByxbpOH7G1WE15/tePc5OsLDni
# pUjW8LAxE6lXKZYnLvWHpo9OdhVVJnCYJn+gGkcgQ+NDY4B7dW4nJZCYOjgRs/b2
# nuY7W+yB3iIU2YIqx5K/oN7jPqJz+ucfWmyU8lKVEStYdEAoq3NDzt9KoRxrOMUp
# 88qqlnNCaJ+2RrOdOqPVA+C/8KI8ykLcGEh/FDTP0kyr75s9/g64ZCr6dSgkQe1C
# vwWcZklSUPRR8zZJTYsg0ixXNXkrqPNFYLwjjVj33GHek/45wPmyMKVM1+mYSlg+
# 0wOI/rOP015LdhJRk8mMDDtbiiKowSYI+RQQEgN9XyO7ZONj4KbhPvbCdLI/Hgl2
# 7KtdRnXiYKNYCQEoAA6EVO7O6V3IXjASvUaetdN2udIOa5kM0jO0zbECAwEAAaOC
# AV0wggFZMBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFLoW2W1NhS9zKXaa
# L3WMaiCPnshvMB8GA1UdIwQYMBaAFOzX44LScV1kTN8uZz/nupiuHA9PMA4GA1Ud
# DwEB/wQEAwIBhjATBgNVHSUEDDAKBggrBgEFBQcDCDB3BggrBgEFBQcBAQRrMGkw
# JAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBBBggrBgEFBQcw
# AoY1aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VHJ1c3RlZFJv
# b3RHNC5jcnQwQwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybDMuZGlnaWNlcnQu
# Y29tL0RpZ2lDZXJ0VHJ1c3RlZFJvb3RHNC5jcmwwIAYDVR0gBBkwFzAIBgZngQwB
# BAIwCwYJYIZIAYb9bAcBMA0GCSqGSIb3DQEBCwUAA4ICAQB9WY7Ak7ZvmKlEIgF+
# ZtbYIULhsBguEE0TzzBTzr8Y+8dQXeJLKftwig2qKWn8acHPHQfpPmDI2AvlXFvX
# bYf6hCAlNDFnzbYSlm/EUExiHQwIgqgWvalWzxVzjQEiJc6VaT9Hd/tydBTX/6tP
# iix6q4XNQ1/tYLaqT5Fmniye4Iqs5f2MvGQmh2ySvZ180HAKfO+ovHVPulr3qRCy
# Xen/KFSJ8NWKcXZl2szwcqMj+sAngkSumScbqyQeJsG33irr9p6xeZmBo1aGqwpF
# yd/EjaDnmPv7pp1yr8THwcFqcdnGE4AJxLafzYeHJLtPo0m5d2aR8XKc6UsCUqc3
# fpNTrDsdCEkPlM05et3/JWOZJyw9P2un8WbDQc1PtkCbISFA0LcTJM3cHXg65J6t
# 5TRxktcma+Q4c6umAU+9Pzt4rUyt+8SVe+0KXzM5h0F4ejjpnOHdI/0dKNPH+ejx
# mF/7K9h+8kaddSweJywm228Vex4Ziza4k9Tm8heZWcpw8De/mADfIBZPJ/tgZxah
# ZrrdVcA6KYawmKAr7ZVBtzrVFZgxtGIJDwq9gdkT/r+k0fNX2bwE+oLeMt8EifAA
# zV3C+dAjfwAL5HYCJtnwZXZCpimHCUcr5n8apIUP/JiW9lVUKx+A+sDyDivl1vup
# L0QVSucTDh3bNzgaoSv27dZ8/DCCBY0wggR1oAMCAQICEA6bGI750C3n79tQ4ghA
# GFowDQYJKoZIhvcNAQEMBQAwZTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lD
# ZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEkMCIGA1UEAxMbRGln
# aUNlcnQgQXNzdXJlZCBJRCBSb290IENBMB4XDTIyMDgwMTAwMDAwMFoXDTMxMTEw
# OTIzNTk1OVowYjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ
# MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTEhMB8GA1UEAxMYRGlnaUNlcnQgVHJ1
# c3RlZCBSb290IEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv+aQ
# c2jeu+RdSjwwIjBpM+zCpyUuySE98orYWcLhKac9WKt2ms2uexuEDcQwH/MbpDgW
# 61bGl20dq7J58soR0uRf1gU8Ug9SH8aeFaV+vp+pVxZZVXKvaJNwwrK6dZlqczKU
# 0RBEEC7fgvMHhOZ0O21x4i0MG+4g1ckgHWMpLc7sXk7Ik/ghYZs06wXGXuxbGrzr
# yc/NrDRAX7F6Zu53yEioZldXn1RYjgwrt0+nMNlW7sp7XeOtyU9e5TXnMcvak17c
# jo+A2raRmECQecN4x7axxLVqGDgDEI3Y1DekLgV9iPWCPhCRcKtVgkEy19sEcypu
# kQF8IUzUvK4bA3VdeGbZOjFEmjNAvwjXWkmkwuapoGfdpCe8oU85tRFYF/ckXEaP
# ZPfBaYh2mHY9WV1CdoeJl2l6SPDgohIbZpp0yt5LHucOY67m1O+SkjqePdwA5EUl
# ibaaRBkrfsCUtNJhbesz2cXfSwQAzH0clcOP9yGyshG3u3/y1YxwLEFgqrFjGESV
# GnZifvaAsPvoZKYz0YkH4b235kOkGLimdwHhD5QMIR2yVCkliWzlDlJRR3S+Jqy2
# QXXeeqxfjT/JvNNBERJb5RBQ6zHFynIWIgnffEx1P2PsIV/EIFFrb7GrhotPwtZF
# X50g/KEexcCPorF+CiaZ9eRpL5gdLfXZqbId5RsCAwEAAaOCATowggE2MA8GA1Ud
# EwEB/wQFMAMBAf8wHQYDVR0OBBYEFOzX44LScV1kTN8uZz/nupiuHA9PMB8GA1Ud
# IwQYMBaAFEXroq/0ksuCMS1Ri6enIZ3zbcgPMA4GA1UdDwEB/wQEAwIBhjB5Bggr
# BgEFBQcBAQRtMGswJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0LmNv
# bTBDBggrBgEFBQcwAoY3aHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0RpZ2lD
# ZXJ0QXNzdXJlZElEUm9vdENBLmNydDBFBgNVHR8EPjA8MDqgOKA2hjRodHRwOi8v
# Y3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMBEG
# A1UdIAQKMAgwBgYEVR0gADANBgkqhkiG9w0BAQwFAAOCAQEAcKC/Q1xV5zhfoKN0
# Gz22Ftf3v1cHvZqsoYcs7IVeqRq7IviHGmlUIu2kiHdtvRoU9BNKei8ttzjv9P+A
# ufih9/Jy3iS8UgPITtAq3votVs/59PesMHqai7Je1M/RQ0SbQyHrlnKhSLSZy51P
# pwYDE3cnRNTnf+hZqPC/Lwum6fI0POz3A8eHqNJMQBk1RmppVLC4oVaO7KTVPeix
# 3P0c2PR3WlxUjG/voVA9/HYJaISfb8rbII01YBwCA8sgsKxYoA5AY8WYIsGyWfVV
# a88nq2x2zm8jLfR+cWojayL/ErhULSd+2DrZ8LaHlv1b0VysGMNNn3O3AamfV6pe
# KOK5lDGCA3YwggNyAgEBMHcwYzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lD
# ZXJ0LCBJbmMuMTswOQYDVQQDEzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYg
# U0hBMjU2IFRpbWVTdGFtcGluZyBDQQIQBUSv85SdCDmmv9s/X+VhFjANBglghkgB
# ZQMEAgEFAKCB0TAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwHAYJKoZIhvcN
# AQkFMQ8XDTIzMTAxMTE1MjIwM1owKwYLKoZIhvcNAQkQAgwxHDAaMBgwFgQUZvAr
# MsLCyQ+CXc6qisnGTxmcz0AwLwYJKoZIhvcNAQkEMSIEIDN4EvsDxGiEElIocpA4
# eAviI9HN1vTrfcgNJenhxS8gMDcGCyqGSIb3DQEJEAIvMSgwJjAkMCIEINL25G3t
# dCLM0dRAV2hBNm+CitpVmq4zFq9NGprUDHgoMA0GCSqGSIb3DQEBAQUABIICADLK
# iubbrzGFXNuy0UStE69fV8lf37eWbiGqbYLpa7Gs3NHoOBGlTFYG08gFgX6q41bc
# Jgp+Zb7xWsbsOSBrQODd2K9O+N2k//O1HZd6i2UTdsnqMtFd/CP4XQGSUrUMroxd
# 4KAXT0mf5sBMi7eKqBd4rsaojSQ74yKP1n+fSrkfYC1q3TwedC63O+GXL7EerW7N
# g5qTi7smg6X+yDXM2dlj9aGtHwqP134rh3P8MJknJB2QedjcGZhogS5U6+OAK85G
# zcbutfhgJ58KMQxZAe10JsGfabczNs0yKb1dm8hHqER9Sww1NvMgSeitJj4WOLPA
# L7Dn23Apr0uI9aswZxP7fexGyPHSplfI2213X87x+W9gdLBq7+XkEM3NnZ0IY5cS
# raaW8sySvEnDABXC8NaqOVTXQEcdR01JL+YISfq8eMq97zR5EbTBjLQyGU8yWUyi
# EY/hato1zvOKJBdm5lJaqgigQDfNWrnckR1NqgAcquIGOKu9MZJq5UM2gIsmiZcp
# Pttjsslq9B1XcrQGfvxlnsgJuFdo3JopfNi1H+6I+RErW7Wp6b4pPNWoC3wGvTlb
# 3JuIp+nP9QlPUQZmr1fc/dARC6l3eJQ2Ur6R+aaClB5e5xZEy06J6bEkbKu2JlgI
# cIxOX/qklBGw7kG8tPbJN7N+Iluql9D4dJn7s2qc
# SIG # End signature block
.signature.p7s
 

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
Snoop 5.0.2 1918 Saturday, May 13, 2023 Approved
Snoop 5.0.1 285 Friday, May 5, 2023 Approved
Snoop 5.0.0 1926 Wednesday, January 4, 2023 Approved
Snoop 5.0.0-alpha0199 99 Sunday, November 27, 2022 Approved
Snoop 4.0.1 4059 Friday, December 24, 2021 Approved
Snoop 4.0.0 258 Sunday, December 19, 2021 Approved
Snoop 3.0.1 6054 Monday, December 21, 2020 Approved
Snoop 3.0.0 1508 Saturday, October 24, 2020 Approved
Snoop 3.0.0-alpha0385 574 Tuesday, July 14, 2020 Approved
Snoop 3.0.0-alpha0379 266 Wednesday, June 17, 2020 Approved
Snoop 3.0.0-alpha0376 152 Tuesday, June 16, 2020 Approved
Snoop 3.0.0-alpha0341 282 Wednesday, May 20, 2020 Approved
Snoop 3.0.0-alpha0336 156 Tuesday, May 19, 2020 Approved
Snoop 3.0.0-alpha0335 165 Sunday, May 17, 2020 Approved
Snoop 3.0.0-alpha0116 855 Sunday, October 6, 2019 Approved
Snoop 2.11.0 2407 Monday, July 8, 2019 Approved
Snoop 2.10.0 1813 Friday, September 21, 2018 Approved
Snoop 2.8.0 3538 Thursday, July 25, 2013 Approved
Snoop 2.7.1 709 Tuesday, June 26, 2012 Approved

This package has no dependencies.

Discussion for the Snoop Package

Ground Rules:

  • This discussion is only about Snoop and the Snoop 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 Snoop, 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