Downloads:
30,073
Downloads of v 3.0.0-alpha0335:
183
Last Update:
17 May 2020
Package Maintainer(s):
Software Author(s):
- Cory Plotts
- Bastian Schmidt
Tags:
snoop spy wpf- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Snoop
This is a prerelease version of Snoop.
- 1
- 2
- 3
3.0.0-alpha0335 | Updated: 17 May 2020
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
30,073
Downloads of v 3.0.0-alpha0335:
183
Software Author(s):
- Cory Plotts
- Bastian Schmidt
Snoop 3.0.0-alpha0335
This is a prerelease version of Snoop.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Cory Plotts, Bastian Schmidt. The inclusion of Cory Plotts, Bastian Schmidt trademark(s), if any, upon this webpage is solely to identify Cory Plotts, Bastian Schmidt goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download snoop --internalize --version=3.0.0-alpha0335 --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade snoop -y --source="'INTERNAL REPO URL'" --version="'3.0.0-alpha0335'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade snoop -y --source="'INTERNAL REPO URL'" --version="'3.0.0-alpha0335'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install snoop
win_chocolatey:
name: snoop
version: '3.0.0-alpha0335'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'snoop' do
action :install
source 'INTERNAL REPO URL'
version '3.0.0-alpha0335'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller snoop
{
Name = "snoop"
Version = "3.0.0-alpha0335"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'snoop':
ensure => '3.0.0-alpha0335',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 17 May 2020.
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.
$desktopPath = $([System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::DesktopDirectory))
$shortcutFilePath = Join-Path $desktopPath "Snoop.lnk"
if (Test-Path($shortcutFilePath)) {
Remove-Item $shortcutFilePath -ErrorAction SilentlyContinue
}
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.
md5: CA15E20D6A89259C93637BB68710E7F2 | sha1: 2394509678E2EA6DD91E557FFB67412AF50B7102 | sha256: 8139ACE19576055701215537110BD8FEECD3174300A838F5209C416E16F2E3B3 | sha512: C9B572ECBEC8F99E91B123249F742EEC80AE6885EE4ABDF3C0306A372A165027242F9F2F50D80DD5E4276D5D9D1275D73F54986FA0CAEC6A0922995BBE806A85
md5: ABCD646CB66D95CE0283AC6A888BEFB7 | sha1: 5F375E113DA40C0870D0027625E1FFB129A9727F | sha256: 40AECC98D1878C93ACAD8F41DB3C310C382BE92C3BCE396E3F6E6A03A37DF193 | sha512: F69F25E39264B5552B80B3500F917C202C1AB16D2F03CA42F7D30104F6492A427BC3280E68F813D01C1AE0B1D111CA7403DF4A040E5358CA0737C8E7A1A4410F
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.0": {
"Snoop.Core/1.0.0": {
"dependencies": {
"JetBrains.Annotations": "2020.1.0",
"Microsoft.CodeAnalysis.CSharp": "3.5.0",
"Microsoft.SourceLink.GitHub": "1.0.0",
"PropertyChangedAnalyzers": "3.2.0",
"StyleCop.Analyzers": "1.1.118",
"System.Management.Automation": "6.2.3",
"WpfAnalyzers": "2.4.5"
},
"runtime": {
"Snoop.Core.dll": {}
}
},
"JetBrains.Annotations/2020.1.0": {},
"Microsoft.Build.Tasks.Git/1.0.0": {},
"Microsoft.CodeAnalysis.Analyzers/3.0.0-beta2.20059.3": {},
"Microsoft.CodeAnalysis.Common/3.5.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.0.0-beta2.20059.3",
"System.Collections.Immutable": "1.5.0",
"System.Memory": "4.5.3",
"System.Reflection.Metadata": "1.6.0",
"System.Runtime.CompilerServices.Unsafe": "4.6.0",
"System.Text.Encoding.CodePages": "4.5.1",
"System.Threading.Tasks.Extensions": "4.5.3"
}
},
"Microsoft.CodeAnalysis.CSharp/3.5.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Common": "3.5.0"
}
},
"Microsoft.Management.Infrastructure/1.0.0": {
"dependencies": {
"NETStandard.Library": "1.6.1",
"System.Runtime.CompilerServices.VisualC": "4.3.0",
"System.Runtime.Serialization.Xml": "4.3.0",
"System.Security.SecureString": "4.3.0",
"System.Threading.ThreadPool": "4.3.0"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0"
},
"runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.10011.16384"
},
"runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win-arm",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win-arm",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win-arm64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win-arm64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win10-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win10-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win7-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win7-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win8-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win8-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win8-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win8-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win81-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x64",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win81-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x86",
"assetType": "runtime",
"assemblyVersion": "1.0.0.0",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm/native/mi.dll": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm/native/miutils.dll": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm64/native/mi.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win-arm64/native/miutils.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "10.0.16299.15"
},
"runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win10-x64",
"assetType": "native",
"fileVersion": "10.0.14886.1000"
},
"runtimes/win10-x64/native/mi.dll": {
"rid": "win10-x64",
"assetType": "native",
"fileVersion": "10.0.14886.1000"
},
"runtimes/win10-x64/native/miutils.dll": {
"rid": "win10-x64",
"assetType": "native",
"fileVersion": "10.0.14886.1000"
},
"runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win10-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win10-x86/native/mi.dll": {
"rid": "win10-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win10-x86/native/miutils.dll": {
"rid": "win10-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"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/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win8-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win8-x64/native/mi.dll": {
"rid": "win8-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win8-x64/native/miutils.dll": {
"rid": "win8-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win8-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win8-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win8-x86/native/mi.dll": {
"rid": "win8-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win8-x86/native/miutils.dll": {
"rid": "win8-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win81-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x64/native/mi.dll": {
"rid": "win81-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x64/native/miutils.dll": {
"rid": "win81-x64",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win81-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x86/native/mi.dll": {
"rid": "win81-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
},
"runtimes/win81-x86/native/miutils.dll": {
"rid": "win81-x86",
"assetType": "native",
"fileVersion": "10.0.14394.1000"
}
}
},
"Microsoft.NETCore.Platforms/2.1.2": {},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.PowerShell.CoreCLR.Eventing/6.2.3": {
"dependencies": {
"System.Security.Principal.Windows": "4.5.1"
},
"runtimeTargets": {
"runtimes/linux-arm/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "linux-arm",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/linux-x64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "linux-x64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "0.0.0.0"
},
"runtimes/osx/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "osx",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "0.0.0.0"
},
"runtimes/win-arm/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "win-arm",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-arm64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "win-arm64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-x64/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "win-x64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-x86/lib/netcoreapp2.1/Microsoft.PowerShell.CoreCLR.Eventing.dll": {
"rid": "win-x86",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
}
}
},
"Microsoft.PowerShell.Native/6.2.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-arm/native/pwrshplugin.pdb": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"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-arm64/native/pwrshplugin.pdb": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"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-x64/native/pwrshplugin.pdb": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "0.0.0.0"
},
"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"
},
"runtimes/win-x86/native/pwrshplugin.pdb": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "0.0.0.0"
}
}
},
"Microsoft.SourceLink.Common/1.0.0": {},
"Microsoft.SourceLink.GitHub/1.0.0": {
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.0.0",
"Microsoft.SourceLink.Common": "1.0.0"
}
},
"Microsoft.Win32.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"Microsoft.Win32.Registry/4.5.0": {
"dependencies": {
"System.Security.AccessControl": "4.5.0",
"System.Security.Principal.Windows": "4.5.1"
}
},
"Microsoft.Win32.Registry.AccessControl/4.5.0": {
"dependencies": {
"Microsoft.Win32.Registry": "4.5.0",
"System.Security.AccessControl": "4.5.0"
}
},
"NETStandard.Library/1.6.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.Win32.Primitives": "4.3.0",
"System.AppContext": "4.3.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Console": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.IO.Compression.ZipFile": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Net.Http": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/12.0.2": {
"runtime": {
"lib/netstandard2.0/Newtonsoft.Json.dll": {
"assemblyVersion": "12.0.0.0",
"fileVersion": "12.0.2.23222"
}
}
},
"PropertyChangedAnalyzers/3.2.0": {},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.native.System/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.IO.Compression/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"dependencies": {
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
}
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"dependencies": {
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
"StyleCop.Analyzers/1.1.118": {},
"System.AppContext/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Buffers/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.CodeDom/4.5.0": {},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Collections.Concurrent/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Collections.Immutable/1.5.0": {},
"System.Configuration.ConfigurationManager/4.5.0": {
"dependencies": {
"System.Security.Cryptography.ProtectedData": "4.5.0",
"System.Security.Permissions": "4.5.0"
}
},
"System.Console/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Tools/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.DirectoryServices/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.IO.FileSystem.AccessControl": "4.5.0",
"System.Security.AccessControl": "4.5.0",
"System.Security.Principal.Windows": "4.5.1"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
}
},
"System.IO/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.Compression/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Buffers": "4.3.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.IO.Compression": "4.3.0"
}
},
"System.IO.Compression.ZipFile/4.3.0": {
"dependencies": {
"System.Buffers": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.IO.FileSystem.AccessControl/4.5.0": {
"dependencies": {
"System.Security.AccessControl": "4.5.0",
"System.Security.Principal.Windows": "4.5.1"
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Linq/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Linq.Expressions/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Management/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.Win32.Registry": "4.5.0",
"System.CodeDom": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/System.Management.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Management.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
}
},
"System.Management.Automation/6.2.3": {
"dependencies": {
"Microsoft.Management.Infrastructure": "1.0.0",
"Microsoft.PowerShell.CoreCLR.Eventing": "6.2.3",
"Microsoft.PowerShell.Native": "6.2.0",
"Microsoft.Win32.Registry.AccessControl": "4.5.0",
"Newtonsoft.Json": "12.0.2",
"System.Configuration.ConfigurationManager": "4.5.0",
"System.DirectoryServices": "4.5.0",
"System.IO.FileSystem.AccessControl": "4.5.0",
"System.Management": "4.5.0",
"System.Runtime.CompilerServices.Unsafe": "4.6.0",
"System.Security.AccessControl": "4.5.0",
"System.Security.Cryptography.Pkcs": "4.5.2",
"System.Security.Permissions": "4.5.0",
"System.Text.Encoding.CodePages": "4.5.1"
},
"runtimeTargets": {
"runtimes/linux-arm/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "linux-arm",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/linux-x64/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "linux-x64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "0.0.0.0"
},
"runtimes/osx/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "osx",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "0.0.0.0"
},
"runtimes/win-arm/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "win-arm",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-arm64/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "win-arm64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-x64/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "win-x64",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
},
"runtimes/win-x86/lib/netcoreapp2.1/System.Management.Automation.dll": {
"rid": "win-x86",
"assetType": "runtime",
"assemblyVersion": "6.2.3.0",
"fileVersion": "6.2.3.0"
}
}
},
"System.Memory/4.5.3": {},
"System.Net.Http/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Security.Cryptography.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Sockets/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.ObjectModel/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Private.DataContractSerialization/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.3.0"
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Metadata/1.6.0": {},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.TypeExtensions/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Resources.ResourceManager/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.6.0": {},
"System.Runtime.CompilerServices.VisualC/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0"
}
},
"System.Runtime.Numerics/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Serialization.Xml/4.3.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Private.DataContractSerialization": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Security.AccessControl/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Security.Principal.Windows": "4.5.1"
}
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.Apple": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"System.Security.Cryptography.Cng/4.5.0": {},
"System.Security.Cryptography.Csp/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Security.Cryptography.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"System.Security.Cryptography.OpenSsl/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"System.Security.Cryptography.Pkcs/4.5.2": {
"dependencies": {
"System.Security.Cryptography.Cng": "4.5.0"
}
},
"System.Security.Cryptography.Primitives/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Security.Cryptography.ProtectedData/4.5.0": {},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Runtime.Numerics": "4.3.0",
"System.Security.Cryptography.Algorithms": "4.3.0",
"System.Security.Cryptography.Cng": "4.5.0",
"System.Security.Cryptography.Csp": "4.3.0",
"System.Security.Cryptography.Encoding": "4.3.0",
"System.Security.Cryptography.OpenSsl": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.3.0",
"runtime.native.System.Net.Http": "4.3.0",
"runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
}
},
"System.Security.Permissions/4.5.0": {
"dependencies": {
"System.Security.AccessControl": "4.5.0"
}
},
"System.Security.Principal.Windows/4.5.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2"
}
},
"System.Security.SecureString/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Cryptography.Primitives": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.5.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"System.Runtime.CompilerServices.Unsafe": "4.6.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.RegularExpressions/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Threading.Tasks.Extensions/4.5.3": {},
"System.Threading.ThreadPool/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Threading.Timer/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "2.1.2",
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Xml.ReaderWriter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Extensions": "4.5.3"
}
},
"System.Xml.XDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlSerializer/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
}
},
"WpfAnalyzers/2.4.5": {}
}
},
"libraries": {
"Snoop.Core/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"JetBrains.Annotations/2020.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
"path": "jetbrains.annotations/2020.1.0",
"hashPath": "jetbrains.annotations.2020.1.0.nupkg.sha512"
},
"Microsoft.Build.Tasks.Git/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-z2fpmmt+1Jfl+ZnBki9nSP08S1/tbEOxFdsK1rSR+LBehIJz1Xv9/6qOOoGNqlwnAGGVGis1Oj6S8Kt9COEYlQ==",
"path": "microsoft.build.tasks.git/1.0.0",
"hashPath": "microsoft.build.tasks.git.1.0.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Analyzers/3.0.0-beta2.20059.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ve2kXanMNVZp1cIoKbflh3RcQgOYLC4UZ23YIMkOnkA6hQjpXsg9NnXbziR2m4i6+WGSz9Wbxp+Tj7XdNRiITw==",
"path": "microsoft.codeanalysis.analyzers/3.0.0-beta2.20059.3",
"hashPath": "microsoft.codeanalysis.analyzers.3.0.0-beta2.20059.3.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Common/3.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1CjUHyDxhlwDfUSTOwqbNMZ4rk/Pqs33BupWmun8S/DUOou9mDe+MjapK06WjvuhIEyEr3fzyk0bOIwu0n1RYg==",
"path": "microsoft.codeanalysis.common/3.5.0",
"hashPath": "microsoft.codeanalysis.common.3.5.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.CSharp/3.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WSMCz5tAtnmEzgmE20J1tjX7chU9HYDfz8AHmWn4Ek+6PPvPZSoo0GDo4Pbnu1FAf4MnNDN6lMd4nqNPuI9V2A==",
"path": "microsoft.codeanalysis.csharp/3.5.0",
"hashPath": "microsoft.codeanalysis.csharp.3.5.0.nupkg.sha512"
},
"Microsoft.Management.Infrastructure/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EhQ4sbjNu4rL39YVhRSKMzCaMNBSwSJi17t8LtAOW94WQTkhQCEhlMukFU2AtWOBW3zGIrvg85XRS+w0nuGxKw==",
"path": "microsoft.management.infrastructure/1.0.0",
"hashPath": "microsoft.management.infrastructure.1.0.0.nupkg.sha512"
},
"Microsoft.NETCore.Platforms/2.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
"path": "microsoft.netcore.platforms/2.1.2",
"hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tQtWIwCYwnm+y01tOzBB8ttv4vTKUywbzxGMV95nP9xKS4+b0747TlRsZziW14wbp6VD0fV7rpH/jMjqCqiLdw==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.PowerShell.CoreCLR.Eventing/6.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QjM7JAyfrJCn+MBOfXKRa4JdJVA2XAkb07SDRhUejr0BniCjkiraUsAMcwm2MAM62mXtp9e6ZF8TZsotx7Y/Bg==",
"path": "microsoft.powershell.coreclr.eventing/6.2.3",
"hashPath": "microsoft.powershell.coreclr.eventing.6.2.3.nupkg.sha512"
},
"Microsoft.PowerShell.Native/6.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5YPhSaW4j6R7oJ53RxOroB51k7zKBpi4owEKAY9rI8Cb+cGIIGN/37DoDOZfbKL4DNW0MeAchgNsAEML049y7Q==",
"path": "microsoft.powershell.native/6.2.0",
"hashPath": "microsoft.powershell.native.6.2.0.nupkg.sha512"
},
"Microsoft.SourceLink.Common/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G8DuQY8/DK5NN+3jm5wcMcd9QYD90UV7MiLmdljSJixi3U/vNaeBKmmXUqI4DJCOeWizIUEh4ALhSt58mR+5eg==",
"path": "microsoft.sourcelink.common/1.0.0",
"hashPath": "microsoft.sourcelink.common.1.0.0.nupkg.sha512"
},
"Microsoft.SourceLink.GitHub/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aZyGyGg2nFSxix+xMkPmlmZSsnGQ3w+mIG23LTxJZHN+GPwTQ5FpPgDo7RMOq+Kcf5D4hFWfXkGhoGstawX13Q==",
"path": "microsoft.sourcelink.github/1.0.0",
"hashPath": "microsoft.sourcelink.github.1.0.0.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-F9u4y3DsEhQU1S2euXLj/YJDZcXHVuc+EGzbSXxGpONQSuMOjGcO5HPddLK01VIG2IJLD7uJ25aFvb1vXU5GVA==",
"path": "microsoft.win32.primitives/4.3.0",
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
"path": "microsoft.win32.registry/4.5.0",
"hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
},
"Microsoft.Win32.Registry.AccessControl/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-f2aT8NLc9DsB1VEaM4jlYF9DFLA12+ccmWzWA0HEVC3Vgac7tGLSgrU6jtUG+VO1/R5zA6AomQ2pKqJ+5SDWyQ==",
"path": "microsoft.win32.registry.accesscontrol/4.5.0",
"hashPath": "microsoft.win32.registry.accesscontrol.4.5.0.nupkg.sha512"
},
"NETStandard.Library/1.6.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k/RehQ82szV4g9e29SWOYegW10hHRi7LyaT4KGorliOUMciN9DYefkCy0NF10KHtexnK3miqLDZfIeFFjk3b4A==",
"path": "netstandard.library/1.6.1",
"hashPath": "netstandard.library.1.6.1.nupkg.sha512"
},
"Newtonsoft.Json/12.0.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
"path": "newtonsoft.json/12.0.2",
"hashPath": "newtonsoft.json.12.0.2.nupkg.sha512"
},
"PropertyChangedAnalyzers/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Bf5GXQ4OnHal5+6yXNEHnOMsMC93Uhse5UGB2pzmXV4PWTyWeorQGbtv10KSVR7C8ay6MSPYD1wwB5VP0l08nw==",
"path": "propertychangedanalyzers/3.2.0",
"hashPath": "propertychangedanalyzers.3.2.0.nupkg.sha512"
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VaIxT2q0QQuqZmKHHykBJJx+wPsvsTew/zyVJDbnxN+YscimTqlVa+iLMBnkGPtldswJND7pPjDGMgcK6iwN3A==",
"path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hwJ3pPWU7qfisL8x7U7O2+7DjBdEGQLUpIIIrvl2DZjudEeVYmz+FIgZMzTW2OugpFf3Gu3593fq1fD/B8rIcA==",
"path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7naIhZBQmSIPQ/OXoK7PeL/yPw679BRRXlv6EUR/tskQtZavJk2bWw5n6XMvIj8cZuoEezm3wOLAJVmHZ3TQ7w==",
"path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.native.System/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DiryX27p4VUCWsfYv8pJQePj3EyA+vpqG4A9QkoPnSzEVA3DMhaYjyL7vL1O+2gPdgWgzPwL4g5k+p2YxF3yJg==",
"path": "runtime.native.system/4.3.0",
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-je7RfzaiGa6SUyqRw4fOIe45ViPJAzDH9HhkaO8iqyhAiloom16QnW1IAv2tcRnc1NI9UPGWSLjLYzafk9Pdag==",
"path": "runtime.native.system.io.compression/4.3.0",
"hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YeKAMSbecy7P1PMj1Vc15f/1AUIRkQ7/61MoOVOOIP3r8qfm6W9kl4vUgrUVCzDRlFGyZ2utMmp3V+XZEx3A2A==",
"path": "runtime.native.system.net.http/4.3.0",
"hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Dw+e+KzeURTFsOhcj8XgTxDcK50MjrbWzvoUG9zhgGawdFLKrioaznId42YSALK0tXDC+aSqEwpRKE7hC3M4xg==",
"path": "runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EkG92XYsCLTslYDgPCmA32jMWDmj5rUz4NOD+RZSBSUneJHxiqDXS1mXL1YlRTo6ZdmqnBwqjcBfEn94WXt2kA==",
"path": "runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WKv7W3I55IHXTFsrj3htDsHZNO31QYcnI/+co6GPkYZ1D1R46BfUtOgTXndRxe0gdCoAsjqeZemZFypzj703GQ==",
"path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-i3CJuBJrat70QVm4JhQ67V7AnQVPLUitsU+wHEQvIKhlUwOwWBVvyCXbA7jLWbaQoHdHT27vUKLVaD9ZLVMMLg==",
"path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QjvdvPVkZ72VwHMShd74KADfDdPgebacWeFoujzT2ti2j5EseBQvofmszWZXNA6NUhw6+Kdqd9qnRMBb3ohwwg==",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-e+Z3amEGj/v7ka3IH62DXdncfQ88A7PLtORyySNVW0vjOmq548JWj9DVaw4jxzWAE6S4C/J3FRRHHWStzHl2Xg==",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-haXIOeKiwB7+y0I1VtdOiHQbxZcSbYWqARnftA+pqCU6T7tEEAOQnn6DUhjKbMG1Hz/y1q/iwZ7gGy92//ibAw==",
"path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aUVikFc+J2k7N0loTMsdM7vn0Rz0dxcknNxk15KjU/EDHLE3+ZF6neQazR0DmECj06+FwZeocls5pgcQgxeirg==",
"path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Qe6Y6CHP4PM8AFOpjXKkrzC7Vo0mV1Mb3h6F3z4ncF0rZR81CBOMtSt1HhSY6Yzsv7NUOh+P/dDe1Z94Ed34QA==",
"path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1+60FSEUVQJWrG6W+gGaSetRVsCGJyoJuBKeDhzd9oBpMZLLcGAOdkZTyMBj8qNzNWEl9FZSz5tfLA1nXxF6ug==",
"path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
"hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"StyleCop.Analyzers/1.1.118": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==",
"path": "stylecop.analyzers/1.1.118",
"hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512"
},
"System.AppContext/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5dy4kAqBIL9zaMuUWymmTkpLV+DdDICmAz8ungze7nYjbRomb+nl7opzG5RV4DkjawfdJPjOv4BTwAxrbsauVQ==",
"path": "system.appcontext/4.3.0",
"hashPath": "system.appcontext.4.3.0.nupkg.sha512"
},
"System.Buffers/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Lu4B/nxhg/stHV3rwGUrssHSI7tQm+FAI9MMO3Sp4JuDr/TnBxiXLNBKyfBuXtJ4tRYmsEumq95/f9kW4mBpvQ==",
"path": "system.buffers/4.3.0",
"hashPath": "system.buffers.4.3.0.nupkg.sha512"
},
"System.CodeDom/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gqpR1EeXOuzNQWL7rOzmtdIz3CaXVjSQCiaGOs2ivjPwynKSJYm39X81fdlp7WuojZs/Z5t1k5ni7HtKQurhjw==",
"path": "system.codedom/4.5.0",
"hashPath": "system.codedom.4.5.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-s5jxYN8wejD/FoOWJxZcaxTSpo20SMLYDmhNp0BwGcFurwwmgqvgefKw0ic0N83IUah3bgaFghLt/RbkJ3c5xw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jECoXCzAFUb1JQ5uX9uE5DOXpIT8u6ImNdcUfKUXY5JJDV7actcLp31sN6qYa8hUqtqAA/vtcf/4658bK/+kGA==",
"path": "system.collections.concurrent/4.3.0",
"hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
},
"System.Collections.Immutable/1.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
"path": "system.collections.immutable/1.5.0",
"hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
"path": "system.configuration.configurationmanager/4.5.0",
"hashPath": "system.configuration.configurationmanager.4.5.0.nupkg.sha512"
},
"System.Console/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IayGyez8j8fPy9sc54N2npVfo/5ZBEuQuJxSDTChox8EQsF/oAn2W45V2P9dXxrWB++lHqC9/w201y5a6bFgVA==",
"path": "system.console/4.3.0",
"hashPath": "system.console.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GhzXI9lLEuBwTyaE2+EzZ1Qa2QwF3M6aMX/MssT9KM4chQqFB3qNnr7YGMypSpFANRnE4MAkTBvrp61jH5ZPCw==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gxCa5R9lLF4Y9j+2jCtcGxtekJyz3+hhRvxNMNkrIFt4EuLf52/gWAaLWuFO4RVKRvyd6GFUpY/WrZ+6QFvY9Q==",
"path": "system.diagnostics.diagnosticsource/4.3.0",
"hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tools/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZEuVyXQafdrpTZ1rmaGGhTfnonmGH6Wks+k07LOKleMuwS2Rgg1OCE/XkKWgoCOof2gC1m0C8d/tHMAMLfXeLQ==",
"path": "system.diagnostics.tools/4.3.0",
"hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FQTs5VwIaGT/I11/UluvfU+wq5gWlL8XKNRk11lq2CLP75wsTCzLNL7TA/vP5F8HaNHJxa1Mu2cCdXOXEOyiqQ==",
"path": "system.diagnostics.tracing/4.3.0",
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
"System.DirectoryServices/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6Uty9sMaeBG0/GIRTW4+DUTvuB/od5E6rY45JbEz1c2xMoPSA9GLov4KdiBEpjsEcsgORa6sC3vfh70tEJJaOw==",
"path": "system.directoryservices/4.5.0",
"hashPath": "system.directoryservices.4.5.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4NrDOX9IZnxkCcLlOW9MQnycb+RBNXspOkkt4WMpHl3AduYoLeNGuMqVfj03Ca0dNpiyHj2TlLFcQ5FiF9RZoQ==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ihlZvBHQCzEpipQJjtkjFo3MUtjXCJtmI4qXa7yWJo7Ae9HndgkUY8+risJ/j0cOCipEVWp4HCtLeEObSC6kNw==",
"path": "system.globalization.calendars/4.3.0",
"hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-atCWLG0oM1n7rOlYcqwJe/hLLwazA3d2GpZUCzz0gCz7KJClLmv+YhEpU5Manp61n/+QJyYUr/g4mueTVWVCCQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CBdr9hVHmQiEd74lillTS1BvmQ/Z7QMq+aGefpmXGTO+dRHRzl2dmbY5V7ayglZWkEph4fVkWWheCw9PInadWQ==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gB//fsZhN+CttLHJOlWZaglD+d86VP3WVauw3BYWN89/XyQ3S/0cH4OEKPAx+4gUg4flzhK6FaPll9m4jopPqg==",
"path": "system.io.compression/4.3.0",
"hashPath": "system.io.compression.4.3.0.nupkg.sha512"
},
"System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OvCt5QbgppHSaVWZ13hEVV+Tf1bCP1TXeTQSSNPo8G0z0qMEB5R9x0f3k1KyJ568hQwd46rCjk1hZfxCiNNddQ==",
"path": "system.io.compression.zipfile/4.3.0",
"hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HAefB25hH8SuW7REG+PgkeJx83m7J8qaUcUZ40cxf7kB2sRwqzisthPMc0LRlKOeUgR+PY7ImkT7+MjXAwL9WA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.AccessControl/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TYe6xstoqT5MlTly0OtPU6u9zWuNScLVMEx6sTCjjx+Hqdp0wCXoG6fnzMpTPMQACXQzi9pd2N5Tloow+5jQdQ==",
"path": "system.io.filesystem.accesscontrol/4.5.0",
"hashPath": "system.io.filesystem.accesscontrol.4.5.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-C6qkwwuY5Hclh6S4FsocRJA4iPdY60Nl7sX7kPvgRnKsVDdsto95lnGV9nPoNfE+8l9HrZt1KE45QWYxatJvkQ==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4p/95AZv0LHkpQ8s2jpei32L5gku0ZRfm4r7UsxoxkTOxniaXrd6itl3bF82amp72XFNxI3U6O54H9PAhXmDIg==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Gie7dHXNWSdImR6xCUAx3qlslW/3XLMcxAm0329AEhDdPo0hDGgNi3KpTQ7UH5IIGSt4wIpovP8kOqMe3m4Bkg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Management/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z6ac0qPGr3yJtwZEX1SRkhwWa0Kf5NJxx7smLboYsGrApQFECNFdqhGy252T4lrZ5Nwzhd9VQiaifndR3bfHdg==",
"path": "system.management/4.5.0",
"hashPath": "system.management.4.5.0.nupkg.sha512"
},
"System.Management.Automation/6.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U/ufrBiMZGDO0gz/g6o715O5Cy4yknAD/orPPz2Uf/m7omkAZbQQ/PnNeoAeLNoe3jcJjCL5P1QmvJRx/CcwEA==",
"path": "system.management.automation/6.2.3",
"hashPath": "system.management.automation.6.2.3.nupkg.sha512"
},
"System.Memory/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
"path": "system.memory/4.5.3",
"hashPath": "system.memory.4.5.3.nupkg.sha512"
},
"System.Net.Http/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aGNwVb8OxB6Bn9HVLFgtut18u3UhwxewumFW5vbOtLSXVIHUEXZwpqlVocyAsLNSEUpPNci6uqktazjvd4rnfg==",
"path": "system.net.http/4.3.0",
"hashPath": "system.net.http.4.3.0.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TSQrpKc0rjKKsznXMylXRzFq3GRC0ZHL2K1hZYV+MX5dMga50wwF94ek18E0yEw8HSinW49i0BGX1osU52tzhA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Sockets/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oITuj4PhjskahXAGWmnIclDSKBmx6laPFlvinQ6UfQcRg3zucl6lUe/RN5zKmsS79xhmtnZbygwEsmbtV4h+jQ==",
"path": "system.net.sockets/4.3.0",
"hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wcMrePmfSPllTDP9mqRsdDmhEbKsYOdRqm+2PyIXq9mIBwiO67QKoFs/ESCviKt6wkPMud38fCsIuVAdstT3cA==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
"path": "system.private.datacontractserialization/4.3.0",
"hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eIYtOPICLZeOmu9ebxX3rVcESm4wLnj9Ez68NZphjiOY7OPTqtxRhIVEXgOEwcMNTY5H7lm0x0lWNLEETW90Bw==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-A+YtUohq8oX8K8qoMFWY3syKpWjiI3c1z5h4qWlucj5TMTmg41RgJWeczcS2qouLEHThVj4/cFHzoHpKaguFyg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FF6tyKIZLwCzTrgRbp5UGdaPAJdfg6f9Z10BrikqMRy1b/CNNN0A6DiBPOSCS9TAD4rkyckKIyoodb61R8iFYw==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KffE0oxj+isGcWiAXWN/ftXFJ86INLEGT8kPnC91fiiaHINewF+oPcwrrTQ4cHrf50lioKfaIFnbQTv3nLO+iA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fGOKL9VfsQen4Ek1RXL9KDcgFu16FB+QuPjqi26OMR3VkFHm/6840HdsL0MggRNUPMwj4LUX2fOAZzj4u+4yVg==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Metadata/1.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
"path": "system.reflection.metadata/1.6.0",
"hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PXLVbOJSkkIMA8I25qZrmsIN4ajvuumNhBHfzGMpONxV3HSEVVHZBPoq2sK7FV9fZLaShaXdN4VlL3PT18O0Wg==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Gkx/n6nda5n0qkhSP9iGBZHsocQt+qlvGm00HLEMV+VnJRhtmxwCTMbA3HWQOZB2XZ9fhI5tewiE4UX2MWHxkg==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-R6rzD95NS2pocyPdLzpZfqkdxsGD+6hEyV2HKwxbDbpbAgMW2kyk3mYdjQ0dqIqgDX0+FxN7roW99c+JSo3J2w==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jr5sjb+5eiXzwhTW22Kz8YUrDIYE+69lKn8WVB+8SENcu3WN4LPgVX6DaiDf8gn6/yFs5/ddumc0Q4D1CU+8Xw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HxozeSlipUK7dAroTYwIcGwKDeOVpQnJlpVaOkBz7CM4TsE5b/tKlQBZecTjh6FzcSbxndYaxxpsBMz+wMJeyw==",
"path": "system.runtime.compilerservices.unsafe/4.6.0",
"hashPath": "system.runtime.compilerservices.unsafe.4.6.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.VisualC/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/dcn1oXqK/p/VnTYWNSf4OXlFIfzCRE/kqWz4+/r5B2S4zlKifB1FqklEEYs5zmE1JE3syvrJ5U4syOwsDQZbA==",
"path": "system.runtime.compilerservices.visualc/4.3.0",
"hashPath": "system.runtime.compilerservices.visualc.4.3.0.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eMFjVcZm/8qbW96NPNGp5H16LrY/0NDlDYwt4Ek4LKpN1IhD1tQM8KJX58ZuNooqsXj51gHGlYkJvoJwVxIdew==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+oEQgKc46MvAYXWL5T0BoVu6ZU6fVyicWaegBWNEcNXsCAUPAeUZE8SPD7TaJNag0IKOVnAAdqd/5uj0SWLMg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-f2npmiTM7tAmb4l3k5DKszyMmmLDCNpEaF053MLb1OPwT1x0JnsIyOOOZqn01bPXNSbJ4uk0C8RISRwo72+vqA==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ghG03LA0ysAraS4QBBDK4mOURr9P+12f0K5VTLcefIYEHIIfLWEqtmLqMluIgNtIotVfq1JHMjg7F5kmWxLEbw==",
"path": "system.runtime.interopservices.runtimeinformation/4.3.0",
"hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Q3/QNHXWlu7hmXgXwQxheCEtCxUHZCgYUDlWjGU4LWQGL6+VnQ/Z2GdSOSas/ewLMJ3Ri5WoukGqcp2rcMtAjg==",
"path": "system.runtime.numerics/4.3.0",
"hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mq2z7xN9DmJ8i6VAkZU27eeZTVz17biF9bR9W68+drx9mbq2MlZbHh/B/KwirsgovjFaIx1qAcLNivr42BKwmQ==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Xml/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==",
"path": "system.runtime.serialization.xml/4.3.0",
"hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512"
},
"System.Security.AccessControl/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
"path": "system.security.accesscontrol/4.5.0",
"hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ngIFH7CyHYnGQfbxffzGgG9Gg4DZAOuD1esSgdx+/uU9inIYZFV9c5cFBbxM3tHKEIvNDGXKmevcV2cw5/4LHA==",
"path": "system.security.cryptography.algorithms/4.3.0",
"hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
"path": "system.security.cryptography.cng/4.5.0",
"hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
},
"System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NaPQtbypOXljOvaIGCam6rdL2yG2QkixWaVOwkhbELWpIQ12MsZyMk5MSnvRz+sg0AXZ30RG97S75VTwYGLLEg==",
"path": "system.security.cryptography.csp/4.3.0",
"hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cqb3WNqggRfmjCcEUPyfKiSjI4xPhZhEd2FDzS1FpsfSIpPh7hL3/VapgUpAf22Suj77VDtPCFU7s95bBBKFLA==",
"path": "system.security.cryptography.encoding/4.3.0",
"hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RSvMgXYqEx9KAL2FxXuoDavSOmhqHgH2woOyaxySvAKzBtWZMgf4vEAcqMgBGwLJxjKd7iszg8PFx9D3FbXoYQ==",
"path": "system.security.cryptography.openssl/4.3.0",
"hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Pkcs/4.5.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lIo52x0AAsZs8r1L58lPXaqN6PP51Z/XJts0kZtbZRNYcMguupxqRGjvc/GoqSKTbYa+aBwbkT4xoqQ7EsfN0A==",
"path": "system.security.cryptography.pkcs/4.5.2",
"hashPath": "system.security.cryptography.pkcs.4.5.2.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2AqFHYpzi95VQTbTGAdBF5PlDZmI8bcawsOIdzAnwTnX7N4YC6l1uH3yjFofFLO4nYYqAcPqXnrCQvDIrj6dUQ==",
"path": "system.security.cryptography.primitives/4.3.0",
"hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
"path": "system.security.cryptography.protecteddata/4.5.0",
"hashPath": "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hKzTEkq/4PhV8x+avJrPXkAZzmsp/+0Or2/kKI29sKWTZQ6KIZcQx+7mN42S6v3DHMTLM+ncyRFyfTPJsYfAFQ==",
"path": "system.security.cryptography.x509certificates/4.3.0",
"hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
"System.Security.Permissions/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
"path": "system.security.permissions/4.5.0",
"hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L3R/xk1s+AJB/ZRrwXyjXMmKp+RNgLP92LSidWEM0iCouznJoiiBloDCxRTjmo8hTDAKSWaMrltsttUzg1RhjA==",
"path": "system.security.principal.windows/4.5.1",
"hashPath": "system.security.principal.windows.4.5.1.nupkg.sha512"
},
"System.Security.SecureString/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
"path": "system.security.securestring/4.3.0",
"hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-531N9xudxf31g9rzK/dDn6m3JE8on91+eBmnGBcq5v6aAqtA7rmSDNYb+khn4pwQSeZfLxjhOjZZ9YY+mih/1A==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
"path": "system.text.encoding.codepages/4.5.1",
"hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JbJ1so/rpHaKdf4ijVbfGH3xCcD+I19qo2BivmcEmowTo+trmIu8gpYWakWxdBLrgYSDzPme4RS4+v5vSsc6dQ==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-51gRPVbqwmNpRCw3k5g3TVg8M5N3HjwaLgN3e4V+tl/MvbbeMtel206EdqXrkvbXzZV0MPOwuweIl4EDpY6lkw==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-09r0cs1qDvgoIptJ4MgKpi1IeqSfDqOdXah4/CHeiiijK6JKNE6JP31cLpFAllTWeWS/OCnhlsJMpSnAJMvy2g==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S0AV1iNYWuwW8dxSjXFsVCKsQ3nSM3dju8KEV+Inf5NQxeox7AjX03UumxWJO+bOIVFqwmDDpY/W8mwUUg6Ocw==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
"path": "system.threading.tasks.extensions/4.5.3",
"hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
},
"System.Threading.ThreadPool/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-F2R7y4ok5NfdwX5CxqNjeNrq6d6r1rBs1N7J5gV2P3cx1TFFX/QXyuI9eAclKNxAKvMzvrsuor+KmU+eP/fPBQ==",
"path": "system.threading.threadpool/4.3.0",
"hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
},
"System.Threading.Timer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TaLi/uesP5fCe8yOIFXgruhSK+WsLzyDAjDDLJN1yckALXMyNExVxhzaAWk+dFcAcMUIZOYUs7JGiCZxRzb6Sw==",
"path": "system.threading.timer/4.3.0",
"hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wykd8a7p1ybXwJ5BcWDgfFuSyiF1kHZ/amRZXZo2NRjzRlqkh5veA3ZO51cX3USoZSyRDt9Hbh3NLN9xpEXjoQ==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4/sXUpvb7K/dEGsHJSIFMokLAA3R1yvMFnOcMWEiFmj8oMVZ9kkaxFx79oL+5oFRnyUcTG9tKtTnu+YDiiYakg==",
"path": "system.xml.xdocument/4.3.0",
"hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlSerializer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
"path": "system.xml.xmlserializer/4.3.0",
"hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
},
"WpfAnalyzers/2.4.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ODLHPLzsUz4FpbBMdGLmfORuN7UxMP4EAJbNnfjftCzFZbdhme0or9BWZawrEWHMLnLLbWGmNifZSNTPNlPluw==",
"path": "wpfanalyzers/2.4.5",
"hashPath": "wpfanalyzers.2.4.5.nupkg.sha512"
}
}
}
md5: FD48E61F461F85C38A731EC7A77930B1 | sha1: 4C79B80D409DB13839FA0BFDDED71FDE30065374 | sha256: AB26D5A9E592F6F1ED30E1CF322DF5B8600A2AF2665E4AF1BB4ED55404628E02 | sha512: 634B1D1E7DDE6784045845FB435FCA061BCB22D0FDC80474B3DAC2F6BC1C6DE965371D76A3A824B6DF64491807439DF20DC3B349B3D9F3758F4917BA7C447255
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Snoop.Core/1.0.0": {
"dependencies": {
"JetBrains.Annotations": "2020.1.0",
"Microsoft.CodeAnalysis.CSharp": "3.5.0",
"Microsoft.SourceLink.GitHub": "1.0.0",
"PropertyChangedAnalyzers": "3.2.0",
"StyleCop.Analyzers": "1.1.118",
"System.Management.Automation": "7.0.0",
"WpfAnalyzers": "2.4.5"
},
"runtime": {
"Snoop.Core.dll": {}
}
},
"JetBrains.Annotations/2020.1.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.0.0": {},
"Microsoft.CodeAnalysis.Analyzers/3.0.0-beta2.20059.3": {},
"Microsoft.CodeAnalysis.Common/3.5.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "3.0.0-beta2.20059.3",
"System.Collections.Immutable": "1.5.0",
"System.Memory": "4.5.3",
"System.Reflection.Metadata": "1.6.0",
"System.Runtime.CompilerServices.Unsafe": "4.7.0",
"System.Text.Encoding.CodePages": "4.7.0",
"System.Threading.Tasks.Extensions": "4.5.3"
}
},
"Microsoft.CodeAnalysis.CSharp/3.5.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Common": "3.5.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.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.0.0": {},
"Microsoft.SourceLink.GitHub/1.0.0": {
"dependencies": {
"Microsoft.Build.Tasks.Git": "1.0.0",
"Microsoft.SourceLink.Common": "1.0.0"
}
},
"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"
}
}
},
"PropertyChangedAnalyzers/3.2.0": {},
"StyleCop.Analyzers/1.1.118": {},
"System.CodeDom/4.7.0": {},
"System.Collections.Immutable/1.5.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": "4.7.0",
"System.Security.AccessControl": "4.7.0",
"System.Security.Cryptography.Pkcs": "4.7.0",
"System.Security.Permissions": "4.7.0",
"System.Text.Encoding.CodePages": "4.7.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.3": {},
"System.Reflection.Metadata/1.6.0": {},
"System.Runtime.CompilerServices.Unsafe/4.7.0": {},
"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/4.7.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.0"
}
},
"System.Threading.Tasks.Extensions/4.5.3": {},
"System.Windows.Extensions/4.7.0": {
"dependencies": {
"System.Drawing.Common": "4.7.0"
}
},
"WpfAnalyzers/2.4.5": {}
}
},
"libraries": {
"Snoop.Core/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"JetBrains.Annotations/2020.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kD9D2ey3DGeLbfIzS8PkwLFkcF5vCOLk2rdjgfSxTfpoyovl7gAyoS6yq6T77zo9QgJGaVJ7PO/cSgLopnKlzg==",
"path": "jetbrains.annotations/2020.1.0",
"hashPath": "jetbrains.annotations.2020.1.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.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-z2fpmmt+1Jfl+ZnBki9nSP08S1/tbEOxFdsK1rSR+LBehIJz1Xv9/6qOOoGNqlwnAGGVGis1Oj6S8Kt9COEYlQ==",
"path": "microsoft.build.tasks.git/1.0.0",
"hashPath": "microsoft.build.tasks.git.1.0.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Analyzers/3.0.0-beta2.20059.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ve2kXanMNVZp1cIoKbflh3RcQgOYLC4UZ23YIMkOnkA6hQjpXsg9NnXbziR2m4i6+WGSz9Wbxp+Tj7XdNRiITw==",
"path": "microsoft.codeanalysis.analyzers/3.0.0-beta2.20059.3",
"hashPath": "microsoft.codeanalysis.analyzers.3.0.0-beta2.20059.3.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Common/3.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1CjUHyDxhlwDfUSTOwqbNMZ4rk/Pqs33BupWmun8S/DUOou9mDe+MjapK06WjvuhIEyEr3fzyk0bOIwu0n1RYg==",
"path": "microsoft.codeanalysis.common/3.5.0",
"hashPath": "microsoft.codeanalysis.common.3.5.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.CSharp/3.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WSMCz5tAtnmEzgmE20J1tjX7chU9HYDfz8AHmWn4Ek+6PPvPZSoo0GDo4Pbnu1FAf4MnNDN6lMd4nqNPuI9V2A==",
"path": "microsoft.codeanalysis.csharp/3.5.0",
"hashPath": "microsoft.codeanalysis.csharp.3.5.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.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.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-G8DuQY8/DK5NN+3jm5wcMcd9QYD90UV7MiLmdljSJixi3U/vNaeBKmmXUqI4DJCOeWizIUEh4ALhSt58mR+5eg==",
"path": "microsoft.sourcelink.common/1.0.0",
"hashPath": "microsoft.sourcelink.common.1.0.0.nupkg.sha512"
},
"Microsoft.SourceLink.GitHub/1.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aZyGyGg2nFSxix+xMkPmlmZSsnGQ3w+mIG23LTxJZHN+GPwTQ5FpPgDo7RMOq+Kcf5D4hFWfXkGhoGstawX13Q==",
"path": "microsoft.sourcelink.github/1.0.0",
"hashPath": "microsoft.sourcelink.github.1.0.0.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"
},
"PropertyChangedAnalyzers/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Bf5GXQ4OnHal5+6yXNEHnOMsMC93Uhse5UGB2pzmXV4PWTyWeorQGbtv10KSVR7C8ay6MSPYD1wwB5VP0l08nw==",
"path": "propertychangedanalyzers/3.2.0",
"hashPath": "propertychangedanalyzers.3.2.0.nupkg.sha512"
},
"StyleCop.Analyzers/1.1.118": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==",
"path": "stylecop.analyzers/1.1.118",
"hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512"
},
"System.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/1.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
"path": "system.collections.immutable/1.5.0",
"hashPath": "system.collections.immutable.1.5.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.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
"path": "system.memory/4.5.3",
"hashPath": "system.memory.4.5.3.nupkg.sha512"
},
"System.Reflection.Metadata/1.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
"path": "system.reflection.metadata/1.6.0",
"hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
"path": "system.runtime.compilerservices.unsafe/4.7.0",
"hashPath": "system.runtime.compilerservices.unsafe.4.7.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/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
"path": "system.text.encoding.codepages/4.7.0",
"hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.5.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
"path": "system.threading.tasks.extensions/4.5.3",
"hashPath": "system.threading.tasks.extensions.4.5.3.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/2.4.5": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ODLHPLzsUz4FpbBMdGLmfORuN7UxMP4EAJbNnfjftCzFZbdhme0or9BWZawrEWHMLnLLbWGmNifZSNTPNlPluw==",
"path": "wpfanalyzers/2.4.5",
"hashPath": "wpfanalyzers.2.4.5.nupkg.sha512"
}
}
}
md5: 1060A06A7E44DF67CE69432AEAF254A0 | sha1: FBF35D6B646FC491EEC4E91DDC158D81CFDA0E5E | sha256: 4CC704DD5A0C990755BE7E18B37D274058282F2A0E5355347A657E63F4256D88 | sha512: 8EEB863B4B9DFAFD68DE4C9458FEF1ED009ABB5A3B31EDC5E6BFD03A623CDFD4B5F2B4EEED6F65D9189671FA76534A261EDAB37326B3A88D87D60F86063BFD27
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
<?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></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>
</Snoop.Properties.Settings>
</userSettings>
<startup>
<supportedRuntime version="v4.0" />
</startup>
</configuration>
md5: CA15E20D6A89259C93637BB68710E7F2 | sha1: 2394509678E2EA6DD91E557FFB67412AF50B7102 | sha256: 8139ACE19576055701215537110BD8FEECD3174300A838F5209C416E16F2E3B3 | sha512: C9B572ECBEC8F99E91B123249F742EEC80AE6885EE4ABDF3C0306A372A165027242F9F2F50D80DD5E4276D5D9D1275D73F54986FA0CAEC6A0922995BBE806A85
md5: 7112341435E25FE2FC0921A379329D98 | sha1: 9B0A50A53F9B9C1812D800F48809DEC099E20E1C | sha256: BD5A74F90DE046A0E0CBE43B8903AF62ABFCDACDD6D7626A463568B7DACB98A9 | sha512: 0F5E7B240ABED041AE68BAAFB42EF1C39BD586256D09EC94D466A69D2B6AD0AB41C2151E1440A1F437F2B16B722BF3E23C34CF0FECB32C1F402C1B8F4BBA2B4B
<?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></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>
</Snoop.Properties.Settings>
</userSettings>
<startup>
<supportedRuntime version="v4.0" />
</startup>
</configuration>
md5: 4F8D6BBA7C1E34814DC1CA06DEE91C8D | sha1: BBC92ABC16D1EDC7BA4267B3028837DC5DF46DCA | sha256: 7BAD08B9D5370E23CDA6409975AD61964FBEB2A28E1FEF158266565ACE1C71B4 | sha512: B4029190C67CE0B01F3303602F11469A21F6C8C02A4393F842A377C2C236E6A198DF1AB3CCDB16FF745F5EBA6BCE2ABB9838292BC83652FF2016A4072D4DD180
md5: 533F4BC4AB92FB9EFDB84C26AA1A2EC9 | sha1: F2B1501EC789D693297008D2F884F72A9A3BF705 | sha256: 8254961F65719B487563B12F67E2C02999C2167C40897AA60C097E13CE6CB52A | sha512: CB4EAD58F46A5F391993EFFF9961D321A454219D8269F3FEF3A5EB86324787552F14C7A7E3A698228FF0CCE201285F07443B372FA6073CD5E5479C76C931E6A0
md5: 48A498DE757CF1D14090D5A0483C31CE | sha1: D5C0CD15D21530AF7F64C8E259E48E1BBA1C7CEA | sha256: 070EC5C7F2B1B5A961F0F927A59B6CD9486642D0CE2C8263EC326EE4A5D6094C | sha512: 527BD9EF2716A69E79CBCAFB4D177A059BCA2C9AD3394460A9BEDF2490AA64CD90F1F51DB90E6880CF796F5AE5EB6CD52E805531F795E0D30A23821910367F90
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
md5: B58F736DB3EC371F9849CD856A3C8EBF | sha1: E6CEA9E6F3E58FC1DC1164970CFD9C36D121F2BB | sha256: 25A84688D1E28C39B1B1D5E778B446B7290E92D496D5CC524319CFD9DDF8F0C7 | sha512: EAA610A562227FA747BF2A937F159B932ABC087461AFFBAD855B99AB4F3D48C694ED76F4458FDBF9E65B3EC04486BFFA7ABC5FE0664EAC5848746339A4EF6088
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>
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.
Log in or click on link to see number of positives.
- System.Management.Automation.dll (40aecc98d187) - ## / 70
- snoop.3.0.0-alpha0335.nupkg (d917d7d6c3c9) - ## / 64
- Snoop.Core.dll (8139ace19576) - ## / 69
- Snoop.exe (bd5a74f90de0) - ## / 71
- Snoop.GenericInjector.x64.dll (7bad08b9d537) - ## / 71
- Snoop.GenericInjector.x86.dll (8254961f6571) - ## / 70
- Snoop.InjectorLauncher.x64.exe (070ec5c7f2b1) - ## / 72
- Snoop.InjectorLauncher.x86.exe (25a84688d1e2) - ## / 73
- Snoop.Core.dll (ab26d5a9e592) - ## / 71
- Snoop.Core.dll (4cc704dd5a0c) - ## / 71
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.1.0 | 2782 | Friday, October 13, 2023 | Approved | |
Snoop 5.0.2 | 1928 | Saturday, May 13, 2023 | Approved | |
Snoop 5.0.1 | 296 | Friday, May 5, 2023 | Approved | |
Snoop 5.0.0 | 1937 | Wednesday, January 4, 2023 | Approved | |
Snoop 5.0.0-alpha0199 | 110 | Sunday, November 27, 2022 | Approved | |
Snoop 4.0.1 | 4076 | Friday, December 24, 2021 | Approved | |
Snoop 4.0.0 | 270 | Sunday, December 19, 2021 | Approved | |
Snoop 3.0.1 | 6070 | Monday, December 21, 2020 | Approved | |
Snoop 3.0.0 | 1527 | Saturday, October 24, 2020 | Approved | |
Snoop 3.0.0-alpha0385 | 586 | Tuesday, July 14, 2020 | Approved | |
Snoop 3.0.0-alpha0379 | 285 | Wednesday, June 17, 2020 | Approved | |
Snoop 3.0.0-alpha0376 | 169 | Tuesday, June 16, 2020 | Approved | |
Snoop 3.0.0-alpha0341 | 292 | Wednesday, May 20, 2020 | Approved | |
Snoop 3.0.0-alpha0336 | 168 | Tuesday, May 19, 2020 | Approved | |
Snoop 3.0.0-alpha0335 | 183 | Sunday, May 17, 2020 | Approved | |
Snoop 3.0.0-alpha0116 | 874 | Sunday, October 6, 2019 | Approved | |
Snoop 2.11.0 | 2419 | Monday, July 8, 2019 | Approved | |
Snoop 2.10.0 | 1826 | Friday, September 21, 2018 | Approved | |
Snoop 2.8.0 | 3550 | Thursday, July 25, 2013 | Approved | |
Snoop 2.7.1 | 725 | Tuesday, June 26, 2012 | Approved |
This package has no dependencies.
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.