Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,819

Downloads of v 0.0.4-beta1:

149

Last Update:

15 May 2020

Package Maintainer(s):

Software Author(s):

  • Sergey Odinokov

Tags:

diagnostics stacktrace minidump process clrmd

stdump

This is a prerelease version of stdump.

  • 1
  • 2
  • 3

0.0.4-beta1 | Updated: 15 May 2020

Downloads:

1,819

Downloads of v 0.0.4-beta1:

149

Maintainer(s):

Software Author(s):

  • Sergey Odinokov

stdump 0.0.4-beta1

This is a prerelease version of stdump.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Failed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install stdump, run the following command from the command line or from PowerShell:

>

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

>

To uninstall stdump, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade stdump -y --source="'INTERNAL REPO URL'" --version="'0.0.4-beta1'" --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 stdump -y --source="'INTERNAL REPO URL'" --version="'0.0.4-beta1'" --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 stdump
  win_chocolatey:
    name: stdump
    version: '0.0.4-beta1'
    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 'stdump' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.0.4-beta1'
  options  '--prerelease'
end

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


cChocoPackageInstaller stdump
{
    Name        = "stdump"
    Version     = "0.0.4-beta1"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

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


package { 'stdump':
  ensure          => '0.0.4-beta1',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

WARNING

This package is exempt from moderation. While it is likely safe for you, there is more risk involved.

Description

Explore stack trace of a running managed process without downtime, or from a minidump file


tools\netcoreapp2.1\any\DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="stdump" EntryPoint="stdump.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
tools\netcoreapp2.1\any\Microsoft.Diagnostics.NETCore.Client.dll
md5: 805E36754C1A4BE08181D4CDEC05A7F8 | sha1: 90E869BB58CD428C206CCB9E7703366DFD5F03E3 | sha256: D84B813858B7FDA6CBB164BCA2F4D07BF3055296E48BFC008ED30DF87E10874B | sha512: B26E35101DEEB7A6DD68C2F0680DCF45DF7E89B824771DE3CDF3ADBB4051C2E30E7815C0604B2A0D31BC289423C656CA00A5A6E7D73703CD0F5B57220ECAAA77
tools\netcoreapp2.1\any\Microsoft.Diagnostics.Runtime.dll
md5: 78EFDE7211C3340A63EA60167D4C292E | sha1: 5FA6B3863AC640E27B6044906C09559F5137591E | sha256: AFD204BFB7F7822BEE6FEDAA4A1EDC3062235DAA4944774F35F58F46A251F12F | sha512: B9E0C2F2ED9255D711EE45E992E404352C8478A37AC0E17F1290B042DA0C363E2F7C32518DD485A6AFE37819F50486F8F868B4907009EC7A72056C59B9E7B2F7
tools\netcoreapp2.1\any\Microsoft.Extensions.CommandLineUtils.dll
md5: 634921D2C561DCBB415D27C39BDAEB82 | sha1: CA19A5399E546F68D130AC3EF739409400C4744F | sha256: 73D30A07DA46AA5156A7AB1221CD884E476F32C19219BAD19C7CC1201B652072 | sha512: 779883F2798B92AE414C7D828810451D37B0976B524422221EB8C024EDF46C987DB43C679F186295234356E76DF227AA5BC37484A267F9565F01756CEE169342
tools\netcoreapp2.1\any\stdump.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v2.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v2.1": {
      "stdump/1.0.0": {
        "dependencies": {
          "Microsoft.Diagnostics.Runtime": "2.0.0-beta.20230.2",
          "Microsoft.Extensions.CommandLineUtils": "1.1.1"
        },
        "runtime": {
          "stdump.dll": {}
        }
      },
      "Microsoft.Diagnostics.NETCore.Client/0.2.61701": {
        "runtime": {
          "lib/netcoreapp2.1/Microsoft.Diagnostics.NETCore.Client.dll": {
            "assemblyVersion": "0.2.1.11701",
            "fileVersion": "0.2.1.11701"
          }
        }
      },
      "Microsoft.Diagnostics.Runtime/2.0.0-beta.20230.2": {
        "dependencies": {
          "Microsoft.Diagnostics.NETCore.Client": "0.2.61701",
          "System.Buffers": "4.5.0",
          "System.Collections.Immutable": "1.7.0",
          "System.Memory": "4.5.3",
          "System.Reflection.Metadata": "1.8.0",
          "System.Runtime.CompilerServices.Unsafe": "4.6.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Diagnostics.Runtime.dll": {
            "assemblyVersion": "2.0.2.23002",
            "fileVersion": "2.0.2.23002"
          }
        }
      },
      "Microsoft.Extensions.CommandLineUtils/1.1.1": {
        "runtime": {
          "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {
            "assemblyVersion": "1.1.1.0",
            "fileVersion": "1.1.1.30427"
          }
        }
      },
      "System.Buffers/4.5.0": {},
      "System.Collections.Immutable/1.7.0": {
        "runtime": {
          "lib/netstandard2.0/System.Collections.Immutable.dll": {
            "assemblyVersion": "1.2.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Memory/4.5.3": {},
      "System.Reflection.Metadata/1.8.0": {
        "dependencies": {
          "System.Collections.Immutable": "1.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Reflection.Metadata.dll": {
            "assemblyVersion": "1.4.5.0",
            "fileVersion": "4.700.19.56404"
          }
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.6.0": {
        "runtime": {
          "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
            "assemblyVersion": "4.0.5.0",
            "fileVersion": "4.700.19.46214"
          }
        }
      }
    }
  },
  "libraries": {
    "stdump/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Diagnostics.NETCore.Client/0.2.61701": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/whUqXLkTiUvG+vfSFd77DHHsLZW2HztZt+ACOpuvGyLKoGGN86M8cR1aYfRW6fxXF3SVGMKMswcL485SQEDuQ==",
      "path": "microsoft.diagnostics.netcore.client/0.2.61701",
      "hashPath": "microsoft.diagnostics.netcore.client.0.2.61701.nupkg.sha512"
    },
    "Microsoft.Diagnostics.Runtime/2.0.0-beta.20230.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZC43g9ZHMwqSt3ColUP58WxP0Bso1JS+zVusQQS3CQzE/OzpWUGpQXhAFerwUr7xpYYedw9wqgRvKoAYs+16Bg==",
      "path": "microsoft.diagnostics.runtime/2.0.0-beta.20230.2",
      "hashPath": "microsoft.diagnostics.runtime.2.0.0-beta.20230.2.nupkg.sha512"
    },
    "Microsoft.Extensions.CommandLineUtils/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-s1T/3lriVSCf88s35fRpio+7+/3Kdng3UOZ6BX1xjhceXqKpzt1v72OuCdt9EAcVN0yNzUjrc7+OKlWr8g5Qdw==",
      "path": "microsoft.extensions.commandlineutils/1.1.1",
      "hashPath": "microsoft.extensions.commandlineutils.1.1.1.nupkg.sha512"
    },
    "System.Buffers/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
      "path": "system.buffers/4.5.0",
      "hashPath": "system.buffers.4.5.0.nupkg.sha512"
    },
    "System.Collections.Immutable/1.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
      "path": "system.collections.immutable/1.7.0",
      "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
    },
    "System.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.8.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RRnWHNjNmb14+S+INsYe1A0b+q05uzLNzENcKe1GCkXT2gaKCjPxVc5TsLVgFZdAAPREnLHFohVbo6bGzEWFlA==",
      "path": "system.reflection.metadata/1.8.0",
      "hashPath": "system.reflection.metadata.1.8.0.nupkg.sha512"
    },
    "System.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"
    }
  }
}
tools\netcoreapp2.1\any\stdump.dll
md5: 45CA07375CA19FBF368896442B457F04 | sha1: 7E8A86A3528E5147D6221730478E8328FB62BBFE | sha256: 2BA2C476015AD2BAD63B7047D452C24B36C9986131B4BA561D350F4223F332DE | sha512: 6C92AEBCC051BC01548E3A1F2EC607DEC52E37359531C41ACB56DF9ED48424F6A9B39A46E3111407237F0EF9FCF1A9BE0A253E50D6F355CE44A5FDC930D29DD2
tools\netcoreapp2.1\any\stdump.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp2.1",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "2.1.0"
    }
  }
}
tools\netcoreapp2.1\any\System.Collections.Immutable.dll
md5: 7EC24B7C7D3BEA8FE2A151F6E2C6059D | sha1: 0E5BC3F3B1A305198945156A44A57E2C472949D3 | sha256: 0595E122D16D5F52BA5018D94499E6827004D5017E9AB5DE3099391C7E39F9D9 | sha512: C92C563BB893D8FA10C459972BE4C049690A10420C334AF912C94E1D36199773D8B8648382BAE4165C1E08567D08EB6040CF2DBD0D3F5DA973D4B520164EBA95
tools\netcoreapp2.1\any\System.Reflection.Metadata.dll
tools\netcoreapp2.1\any\System.Runtime.CompilerServices.Unsafe.dll
md5: 199CFC54D1FD70F90A8B7847BEB183F5 | sha1: 826108E3FBD5112EC5641752FBA5B9FA9A01178D | sha256: 12E712F04DFDD2919795A57889E6D75A141D4647CFAA2BE99C70E23DF8737C00 | sha512: D61D616D1AD8FC9D0770C187312ACB0845FA8170B4F9EF62BF3F041BC1DC22C1C614B5CBE3B850D00941E459B8559494F789EAF279E13791A56264844E8E06C5
tools\netcoreapp3.1\any\DotnetToolSettings.xml
<?xml version="1.0" encoding="utf-8"?>
<DotNetCliTool Version="1">
  <Commands>
    <Command Name="stdump" EntryPoint="stdump.dll" Runner="dotnet" />
  </Commands>
</DotNetCliTool>
tools\netcoreapp3.1\any\Microsoft.Diagnostics.NETCore.Client.dll
md5: 805E36754C1A4BE08181D4CDEC05A7F8 | sha1: 90E869BB58CD428C206CCB9E7703366DFD5F03E3 | sha256: D84B813858B7FDA6CBB164BCA2F4D07BF3055296E48BFC008ED30DF87E10874B | sha512: B26E35101DEEB7A6DD68C2F0680DCF45DF7E89B824771DE3CDF3ADBB4051C2E30E7815C0604B2A0D31BC289423C656CA00A5A6E7D73703CD0F5B57220ECAAA77
tools\netcoreapp3.1\any\Microsoft.Diagnostics.Runtime.dll
md5: E81BF3015D4C07FFBF2111D91B891436 | sha1: C5B1DA78BD137D574E919BC027155E9E86CD4208 | sha256: 6D6EBD2C8426E67796261E20FA7A092B06459B71D56065D8ABC7CD62D32305AA | sha512: 7690024583B7BD09F751D7279999321FF1323B257F4EDF185998D889CBC540D6C2BADFCB7B7820EF2DBA927CF7E8659E4A30C03EF75DA52655ABB6810A7BBB07
tools\netcoreapp3.1\any\Microsoft.Extensions.CommandLineUtils.dll
md5: 634921D2C561DCBB415D27C39BDAEB82 | sha1: CA19A5399E546F68D130AC3EF739409400C4744F | sha256: 73D30A07DA46AA5156A7AB1221CD884E476F32C19219BAD19C7CC1201B652072 | sha512: 779883F2798B92AE414C7D828810451D37B0976B524422221EB8C024EDF46C987DB43C679F186295234356E76DF227AA5BC37484A267F9565F01756CEE169342
tools\netcoreapp3.1\any\stdump.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "stdump/1.0.0": {
        "dependencies": {
          "Microsoft.Diagnostics.Runtime": "2.0.0-beta.20230.2",
          "Microsoft.Extensions.CommandLineUtils": "1.1.1"
        },
        "runtime": {
          "stdump.dll": {}
        }
      },
      "Microsoft.Diagnostics.NETCore.Client/0.2.61701": {
        "runtime": {
          "lib/netcoreapp2.1/Microsoft.Diagnostics.NETCore.Client.dll": {
            "assemblyVersion": "0.2.1.11701",
            "fileVersion": "0.2.1.11701"
          }
        }
      },
      "Microsoft.Diagnostics.Runtime/2.0.0-beta.20230.2": {
        "dependencies": {
          "Microsoft.Diagnostics.NETCore.Client": "0.2.61701",
          "System.Buffers": "4.5.0",
          "System.Collections.Immutable": "1.7.0",
          "System.Memory": "4.5.3",
          "System.Reflection.Metadata": "1.8.0",
          "System.Runtime.CompilerServices.Unsafe": "4.6.0"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Diagnostics.Runtime.dll": {
            "assemblyVersion": "2.0.2.23002",
            "fileVersion": "2.0.2.23002"
          }
        }
      },
      "Microsoft.Extensions.CommandLineUtils/1.1.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {
            "assemblyVersion": "1.1.1.0",
            "fileVersion": "1.1.1.30427"
          }
        }
      },
      "Microsoft.NETCore.Platforms/1.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.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"
        }
      },
      "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": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": {},
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.5.0": {},
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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.7.0": {},
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "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": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "System.Buffers": "4.5.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.5.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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.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.Memory/4.5.3": {},
      "System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.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": "1.1.0",
          "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": "1.1.0",
          "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.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Metadata/1.8.0": {},
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "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": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/4.6.0": {},
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
        }
      },
      "System.Security.Cryptography.Cng/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.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.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.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.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": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.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.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.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.3.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.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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": "1.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "1.1.0",
          "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.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      }
    }
  },
  "libraries": {
    "stdump/1.0.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Microsoft.Diagnostics.NETCore.Client/0.2.61701": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/whUqXLkTiUvG+vfSFd77DHHsLZW2HztZt+ACOpuvGyLKoGGN86M8cR1aYfRW6fxXF3SVGMKMswcL485SQEDuQ==",
      "path": "microsoft.diagnostics.netcore.client/0.2.61701",
      "hashPath": "microsoft.diagnostics.netcore.client.0.2.61701.nupkg.sha512"
    },
    "Microsoft.Diagnostics.Runtime/2.0.0-beta.20230.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZC43g9ZHMwqSt3ColUP58WxP0Bso1JS+zVusQQS3CQzE/OzpWUGpQXhAFerwUr7xpYYedw9wqgRvKoAYs+16Bg==",
      "path": "microsoft.diagnostics.runtime/2.0.0-beta.20230.2",
      "hashPath": "microsoft.diagnostics.runtime.2.0.0-beta.20230.2.nupkg.sha512"
    },
    "Microsoft.Extensions.CommandLineUtils/1.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-s1T/3lriVSCf88s35fRpio+7+/3Kdng3UOZ6BX1xjhceXqKpzt1v72OuCdt9EAcVN0yNzUjrc7+OKlWr8g5Qdw==",
      "path": "microsoft.extensions.commandlineutils/1.1.1",
      "hashPath": "microsoft.extensions.commandlineutils.1.1.1.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3R+GYGnI5x/LC0rgPKdSRlI1DTYPG5JAx1X252k0siM4uAff/sAQqy9xkZ7zO15CIZluQZaXR6tJo8V1HL2wsQ==",
      "path": "microsoft.netcore.platforms/1.1.0",
      "hashPath": "microsoft.netcore.platforms.1.1.0.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.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"
    },
    "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"
    },
    "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"
    },
    "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.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
      "path": "system.buffers/4.5.0",
      "hashPath": "system.buffers.4.5.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-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.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
      "path": "system.collections.immutable/1.7.0",
      "hashPath": "system.collections.immutable.1.7.0.nupkg.sha512"
    },
    "System.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.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.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.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.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.8.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RRnWHNjNmb14+S+INsYe1A0b+q05uzLNzENcKe1GCkXT2gaKCjPxVc5TsLVgFZdAAPREnLHFohVbo6bGzEWFlA==",
      "path": "system.reflection.metadata/1.8.0",
      "hashPath": "system.reflection.metadata.1.8.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-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.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.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.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NSfM0MCDDtFZImm2cdJnRmuZ8z4W8wNoJ4nj6M5YbIXBEmIsKGKK5t83A/MceZGE8Wcs+RQsM8o+yzw9oxTzBA==",
      "path": "system.security.cryptography.cng/4.3.0",
      "hashPath": "system.security.cryptography.cng.4.3.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.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.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.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.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.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mNAVHBRIFgZSp7xVBLZbjrwhDVSyB04prrG36uuBJ9jzjJHJaxNjdxV54zsjJgzoZyHNcKJ8eJCd/olFB041EQ==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-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"
    }
  }
}
tools\netcoreapp3.1\any\stdump.dll
md5: 6A57A6C2D951D5562DEB1AC7C20B0EE9 | sha1: 8046F06DDDF8C5191EBCCAD0D629BFD0943AF308 | sha256: 08C9C1EF02A4551E2D20C1FC1EBF7A7475EFF20EDCFB96BF0D7441E0E085DDE2 | sha512: 7D0F7C64E60B109B6B865F223BBD9A4C2130636E5D635851751BF91EA717B5CAE28771494DB470A284EF07521C1045EED230B163C48C0A8F08D28090BC9E2FFD
tools\netcoreapp3.1\any\stdump.exe
md5: F1A03DA8C8670506FCA12CECC74C690E | sha1: 4EA0B52D951C53EF94FF06CFAF439BBF687FD6B9 | sha256: FC8F9EAB71C8BF662419AD8B6DD05AF4202630F0A6F82551E4EEF61C02B11C87 | sha512: E0071B7F3A4FEA7F72C99349553DF17EF1E270FE2E5956835A3C3E289E540C7B9455E47FD4814FAAEAAB08B893F9008236E22A03E4C988F1276D0B18E301A3C7
tools\netcoreapp3.1\any\stdump.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp3.1",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "3.1.0"
    }
  }
}
tools\stdump-x86.exe
md5: F44BCA87FFECE575A97E59FEBA283353 | sha1: F839A7004C854C695596DF8EBDD4891607BB7AAB | sha256: F30A155FFEA37A04F76358ED3CA54686BF584C652504638C3C46C4A8FA6B1645 | sha512: 38B3AEADF0DB23CB4A850C780EC948BA8709EC7B185ADD76AC7E0EA946576C2C7493EA87D3308246DEE9B9BFEAC53951FCF2F1724B564B4E1BEEBEA3197D87E6
tools\stdump.exe
md5: 27766545E60F46D60C0FDECF99795AF4 | sha1: 57563854260B37238BC475C6C3727E973ED79A09 | sha256: AE708D21905DC6B9DC2C4A6397FF82AD81E0BCEDEEBF176131C271AA02F9D992 | sha512: C28EC6FE63C39FCAE2DC6F59BCA9C2FEB69DF589D80FE33EEA3F25E9CCC7D327474D7CC56AE904DFD6E5D0A2F16FBC589649D525E7CFC22E32A5029714050072

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
stdump 0.0.8 92 Monday, November 9, 2020 Approved
stdump 0.0.7 94 Monday, November 9, 2020 Approved
stdump 0.0.6 95 Monday, November 9, 2020 Approved
stdump 0.0.5 98 Tuesday, November 3, 2020 Approved
stdump 0.0.4 115 Monday, October 12, 2020 Approved
stdump 0.0.4-beta1 149 Friday, May 15, 2020 Exempted
stdump 0.0.1 796 Wednesday, August 3, 2016 Approved

http://hangfire.io/blog/

0.0.1 – Initial Release


This package has no dependencies.

Discussion for the stdump Package

Ground Rules:

  • This discussion is only about stdump and the stdump 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 stdump, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus