Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: 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 packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
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:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
1,265
Downloads of v 1.0.0-beta-5:
291
Last Update:
18 Jul 2017
Package Maintainer(s):
Software Author(s):
- Joel "Jaykul" Bennett
Tags:
jupyter kernel powershell notebook- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Jupyter-PowerShell
This is a prerelease version of Jupyter-PowerShell.
- 1
- 2
- 3
1.0.0-beta-5 | Updated: 18 Jul 2017
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,265
Downloads of v 1.0.0-beta-5:
291
Maintainer(s):
Software Author(s):
- Joel "Jaykul" Bennett
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
- 1
- 2
- 3
Jupyter-PowerShell
1.0.0-beta-5
This is a prerelease version of Jupyter-PowerShell.
- 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 Jupyter-PowerShell, run the following command from the command line or from PowerShell:
To upgrade Jupyter-PowerShell, run the following command from the command line or from PowerShell:
To uninstall Jupyter-PowerShell, 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
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 jupyter-powershell --internalize --version=1.0.0-beta-5 --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 jupyter-powershell -y --source="'INTERNAL REPO URL'" --version="'1.0.0-beta-5'" --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 jupyter-powershell -y --source="'INTERNAL REPO URL'" --version="'1.0.0-beta-5'" --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 jupyter-powershell
win_chocolatey:
name: jupyter-powershell
version: '1.0.0-beta-5'
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 'jupyter-powershell' do
action :install
source 'INTERNAL REPO URL'
version '1.0.0-beta-5'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jupyter-powershell
{
Name = "jupyter-powershell"
Version = "1.0.0-beta-5"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jupyter-powershell':
ensure => '1.0.0-beta-5',
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.
A PowerShell Kernel for Jupyter (and nteract, etc.)
md5: 26A2C4E54D682CC21D206FAC2BE47705 | sha1: 560564A5393273B234C062E23EDEB9727B4C6332 | sha256: 088D1DE315E8DD54074DB0DB79809D3C13CDF8EFAF9430419671279E2C0997FD | sha512: B71F0A7A072EBB8207420FDFDB8E64FA44633E1D19850A2A5816C77673710127ADE5EC384B598330B0D09E53D21E2379C3CE20EC417B52B3D6A1AAD1103B21DD
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "70a8077601d629623b03a8b3765664d7fb67ef8c"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {
"Jupyter/1.0.0-beta-5": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Console": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Debug": "2.0.0-preview2-final",
"NetMQ": "4.0.0.1",
"Newtonsoft.Json": "10.0.3",
"System.Net.Primitives": "4.3.0"
},
"runtime": {
"Jupyter.dll": {}
}
},
"AsyncIO/0.1.26": {
"dependencies": {
"System.Net.NameResolution": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/AsyncIO.dll": {}
}
},
"Microsoft.CSharp/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0"
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0-preview2-final": {
"dependencies": {
"System.ComponentModel": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Options": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0-preview2-final": {
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging.Console/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
"Microsoft.Extensions.Logging.Debug/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
"Microsoft.Extensions.Options/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Primitives": "2.0.0-preview2-final",
"System.ComponentModel": "4.3.0"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.0.0-preview2-final": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview2-25405-01"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.Win32.Primitives/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"NetMQ/4.0.0.1": {
"dependencies": {
"AsyncIO": "0.1.26",
"System.Net.NetworkInformation": "4.1.0",
"System.Runtime.Loader": "4.0.0",
"System.ServiceModel.Primitives": "4.1.0",
"System.Threading": "4.3.0",
"System.Threading.Thread": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/NetMQ.dll": {}
}
},
"Newtonsoft.Json/10.0.3": {
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
}
},
"runtime.native.System/4.0.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.IO.Compression/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Security/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Collections.Concurrent/4.0.12": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Collections.NonGeneric/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections.Specialized/4.3.0": {
"dependencies": {
"System.Collections.NonGeneric": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.ComponentModel/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.ComponentModel.Primitives/4.3.0": {
"dependencies": {
"System.ComponentModel": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.TypeConverter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel": "4.3.0",
"System.ComponentModel.Primitives": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.1.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Dynamic.Runtime/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.0.1": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/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.InteropServices": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO/4.3.0": {
"dependencies": {
"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.1.0": {
"dependencies": {
"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.0.0",
"runtime.native.System.IO.Compression": "4.1.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"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.Linq.Queryable/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Net.Http/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.0.0",
"System.Diagnostics.Tracing": "4.1.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.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NameResolution/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.0.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.1.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.Linq": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.1.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.0.0",
"System.Threading": "4.3.0",
"System.Threading.Overlapped": "4.0.1",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Thread": "4.0.0",
"System.Threading.ThreadPool": "4.0.10",
"runtime.native.System": "4.0.0"
},
"runtimeTargets": {
"runtime/linux/lib/_._": {
"rid": "linux",
"assetType": "runtime"
},
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Security/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.IO": "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.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.ThreadPool": "4.0.10",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Security": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Sockets/4.1.0": {
"dependencies": {
"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.Net.WebHeaderCollection/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Net.WebSockets/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Net.WebSockets.Client/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.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.X509Certificates": "4.1.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"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.1.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"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.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.0.11"
}
},
"System.Private.ServiceModel/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.1.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.1.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Linq.Queryable": "4.0.1",
"System.Net.Http": "4.1.0",
"System.Net.NameResolution": "4.0.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Security": "4.0.0",
"System.Net.Sockets": "4.1.0",
"System.Net.WebHeaderCollection": "4.0.1",
"System.Net.WebSockets": "4.0.0",
"System.Net.WebSockets.Client": "4.0.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.DispatchProxy": "4.0.1",
"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.Handles": "4.3.0",
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Claims": "4.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Security.Principal.Windows": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Timer": "4.0.1",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0",
"System.Xml.XmlSerializer": "4.0.11"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll": {
"rid": "win7",
"assetType": "runtime"
}
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.DispatchProxy/4.0.1": {
"dependencies": {
"System.Collections": "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.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "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.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"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.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.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.4.0-preview2-25405-01": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"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.0.0": {
"dependencies": {
"System.Reflection": "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.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Runtime.Loader/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Numerics/4.0.1": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
}
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Serialization.Xml/4.1.1": {
"dependencies": {
"System.IO": "4.3.0",
"System.Private.DataContractSerialization": "4.1.1",
"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.Claims/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Security.Principal": "4.0.1"
}
},
"System.Security.Cryptography.Algorithms/4.2.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.0.1",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Cng/4.2.0": {
"dependencies": {
"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.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Csp/4.0.0": {
"dependencies": {
"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.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Encoding/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.0.12",
"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.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.OpenSsl/4.0.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.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Primitives/4.0.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.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Calendars": "4.0.1",
"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.0.1",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Security.Cryptography.Cng": "4.2.0",
"System.Security.Cryptography.Csp": "4.0.0",
"System.Security.Cryptography.Encoding": "4.0.0",
"System.Security.Cryptography.OpenSsl": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"runtime.native.System": "4.0.0",
"runtime.native.System.Net.Http": "4.0.1",
"runtime.native.System.Security.Cryptography": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Principal/4.0.1": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Security.Principal.Windows/4.0.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.1",
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "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.Claims": "4.0.1",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ServiceModel.Primitives/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.ComponentModel.EventBasedAsync": "4.0.11",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Private.ServiceModel": "4.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Security.Cryptography.X509Certificates": "4.1.0",
"System.Security.Principal": "4.0.1",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/System.ServiceModel.Primitives.dll": {}
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"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.Overlapped/4.0.1": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"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.Thread/4.0.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading.ThreadPool/4.0.10": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Threading.Timer/4.0.1": {
"dependencies": {
"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.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.0.11": {
"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"
}
}
}
},
"libraries": {
"Jupyter/1.0.0-beta-5": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"AsyncIO/0.1.26": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mV6fvJg4K/kN6xzQ1sJJNzk7L8W0hKYxm2enGgi0cUs81v5S5JWfJF+M+KoyfmhUNNhy1nDcS4ycru8pBOFGyw==",
"path": "asyncio/0.1.26",
"hashPath": "asyncio.0.1.26.nupkg.sha512"
},
"Microsoft.CSharp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"path": "microsoft.csharp/4.3.0",
"hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-71mtagRC9ogVKZ3Yc1lKfG3JOtOoB5+NgSN9vOrQ+5V7sDyldOmubiBk73dViWRx+3YrsS0LeZ5wUCpTpf0dAg==",
"path": "microsoft.extensions.configuration.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U0z7cAjc2jcfCHYaqJsFjZ9MmwaeEUqNENO3IeBq3/9YANvYxwJ3XpK5QQpEDFzP8mmS0FRR+VJqLpKygg5QIQ==",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YYICK7+m1YkobN4B2WX67HIVpgag4CGrvMRMxkuGxch2+XLp2J+J3O/T1kbAzZDjqBaFG/q+io2Ge9ZYr47yDg==",
"path": "microsoft.extensions.logging/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AKxyJBE25CQfHCaSxqUPgIWC3BIw1r6TSieoQ2qPLJ9mrLWNnjnd81GNeyVLrfstXId79g7gz8sIuTAGqOFzVQ==",
"path": "microsoft.extensions.logging.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-w1CnNHN5brj2kuqW/ff9ATy0tBi5TIXp+/uYyFvVIxD1jJNdnDjlfVepC2c91lTeFScRAxMyXGvj4G6QnPjcjA==",
"path": "microsoft.extensions.logging.console/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.console.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CjGdTjJakpKCx2AOFn3m+fXjYbYT4CYVlbfugn1d2uX+ifsBfUWW84uSNk0rkT2rnGqzFykXC8+xZJ2xZd38Zg==",
"path": "microsoft.extensions.logging.debug/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.debug.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Options/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pxAbtQHRSoTJIvp3ksTjjT5PwfK40myFAo4WZErfgakgxHuv1apJ3+A5QDWmugMsONAuHBDbfBiWATpyl+2w0A==",
"path": "microsoft.extensions.options/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.options.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XXR+O/We4SCKF9QFcUkDoWkugh3ia/KJJVWO5/SW3+AZlvy9SvD5/ePxjtwMWacZOt4cZm5v8trr2igXq9wEIw==",
"path": "microsoft.extensions.primitives/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.primitives.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kIXKCWZq9cJtBCW916jRrulToDv9ebstNR9KjzqGHh/QWJ6B7zhb0ol6mt+kXhu7jN397tQ96zLCLWGw/wx2ag==",
"path": "microsoft.win32.primitives/4.0.1",
"hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
},
"NetMQ/4.0.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yGAYGVzgtKfN5tJn/iZa1XLmXog44Qo2jrJqWBT7I7SlYFvPYzIzoXeV/yMkwuq1eyWSou0lucuCcAJp6uxZOw==",
"path": "netmq/4.0.0.1",
"hashPath": "netmq.4.0.0.1.nupkg.sha512"
},
"Newtonsoft.Json/10.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wBM7i7i3U2WX0ecor4zdVGvgrwFUjuigBoHKiL+nH39fCOpCPjBY3RDqJM32edvdyTAVdjzlccHsg41+/+zpSA==",
"path": "newtonsoft.json/10.0.3",
"hashPath": "newtonsoft.json.10.0.3.nupkg.sha512"
},
"runtime.native.System/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
"path": "runtime.native.system/4.0.0",
"hashPath": "runtime.native.system.4.0.0.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-q7r6Wnj5QdCQira6HBHFMDepGILqBxt7EPkiQRb3fcYhOrhlaPAPrLwHfkUtV5f+w45I3Z/6XPlvR2pOQqq1tg==",
"path": "runtime.native.system.io.compression/4.1.0",
"hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AnzPi1OTy8zdfrSnfIk3rtW+YCOuSlKqL61Vh/0oEmeIHSUXXHVM25AeLA+gUYTQ0H08mTbzU3JeYKps4ggyog==",
"path": "runtime.native.system.net.http/4.0.1",
"hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512"
},
"runtime.native.System.Net.Security/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0ip/xQgT/XOPx51aGhZ4Z1I+qxhsBLWm5h+2KIox6fpAzRGxsMZmL61GBp9vY4Cwv8xQ1PiBMbDspkk71CUEDg==",
"path": "runtime.native.system.net.security/4.0.1",
"hashPath": "runtime.native.system.net.security.4.0.1.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
"path": "runtime.native.system.security.cryptography/4.0.0",
"hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.0.12": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
"path": "system.collections.concurrent/4.0.12",
"hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
},
"System.Collections.NonGeneric/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"path": "system.collections.nongeneric/4.3.0",
"hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
},
"System.Collections.Specialized/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"path": "system.collections.specialized/4.3.0",
"hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
},
"System.ComponentModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"path": "system.componentmodel/4.3.0",
"hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
},
"System.ComponentModel.EventBasedAsync/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z7SO6vvQIR84daPE4uhaNdef9CjgjDMGYkas8epUhf0U3WGuaGgZ0Mm4QuNycMdbHUY8KEdZrtgxonkAiJaAlA==",
"path": "system.componentmodel.eventbasedasync/4.0.11",
"hashPath": "system.componentmodel.eventbasedasync.4.0.11.nupkg.sha512"
},
"System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"path": "system.componentmodel.primitives/4.3.0",
"hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
},
"System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"path": "system.componentmodel.typeconverter/4.3.0",
"hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qRamjdAGCXMHvu/j5YYcEYAdCeP+gq1DPB333kf0KhX6j6YK0ROORqQqKklI2ICPavyYNyc2Wqm11HjxAUhzIg==",
"path": "system.diagnostics.diagnosticsource/4.0.0",
"hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
"path": "system.diagnostics.tracing/4.1.0",
"hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
},
"System.Dynamic.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"path": "system.dynamic.runtime/4.3.0",
"hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DDcKRkkNHIRQq8dx7NHGBnB8i/8ALE5UFFV9lwXccwD26LBQny0PzqKE82Hw34JdkmOd4qJGcYuWdyWFdwDjGQ==",
"path": "system.globalization.calendars/4.0.1",
"hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wJe0ca+lQi7Y+AF0oqTxN6PIS2dJVS67EtYSrWqr1swM+zgkBbKca8OEMBNO0Rpu8uRPFI5qmyjckmu+vaDvfA==",
"path": "system.io.compression/4.1.0",
"hashPath": "system.io.compression.4.1.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mXiYZw8Hen/LXggxvtU4AzJTwa3or3BH3/+6q3m8jP5lF8xh2lGitZ173iitB929BmTdAeP8wi8LQXfA4w1Veg==",
"path": "system.linq.queryable/4.0.1",
"hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
},
"System.Net.Http/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XENdnQLdnQ8gCYQMtLIs75J4jkwW/NlSwX1eWNnT5KyDVqxNOe7TWBurybDOZtd8mC11Eav7nM3r0Jeh2MEywQ==",
"path": "system.net.http/4.1.0",
"hashPath": "system.net.http.4.1.0.nupkg.sha512"
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-V3oJzrBKQHfaH78HVwl0VCFuZWmL8rrLeSy2RjMo7ZNJowbcDw/sKOPZl2vi5ebH8X7QsiyTVyBV3ssa3m8J8g==",
"path": "system.net.nameresolution/4.0.0",
"hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"path": "system.net.networkinformation/4.1.0",
"hashPath": "system.net.networkinformation.4.1.0.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Security/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Y+3s3/oc7umTDBJbSOL3RjndKag5zknW1YrLCBEXFioddNgvamTyMiG3E8i1plJsoaLRD1Aj5JXy9jVQV4K8Pg==",
"path": "system.net.security/4.0.0",
"hashPath": "system.net.security.4.0.0.nupkg.sha512"
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Pf3nO/sLrFlKIOSZdAaLsGEkDZBFjNzVj0lnuGTQeIea+gi3g9ef8iUyb9rBPVg1672rP+eweycmM74EF8WPHw==",
"path": "system.net.sockets/4.1.0",
"hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
},
"System.Net.WebHeaderCollection/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-H6a7cjugY369JQWtNyfNbDNzSLWSirCAYkPGNFK3Dqx8z25OelCpeFLcid6Ae42epBxMF6TPrdTIrEyJlFyJbw==",
"path": "system.net.webheadercollection/4.0.1",
"hashPath": "system.net.webheadercollection.4.0.1.nupkg.sha512"
},
"System.Net.WebSockets/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
"path": "system.net.websockets/4.0.0",
"hashPath": "system.net.websockets.4.0.0.nupkg.sha512"
},
"System.Net.WebSockets.Client/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GY5h9cn0ZVsG4ORQqMytTldrqxet2RC2CSEsgWGf4XNW5jhL5SxzcUZph03xbZsgn7K3qMr+Rq+gkbJNI+FEXg==",
"path": "system.net.websockets.client/4.0.0",
"hashPath": "system.net.websockets.client.4.0.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
"path": "system.private.datacontractserialization/4.1.1",
"hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
},
"System.Private.ServiceModel/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/QviVqIgta03ms7IDFALHCJOQCANZ1lILobf/OoLzdphHN40M3r6zqso2NsKvvSV7rJus+QLLWS/q33XGIybrQ==",
"path": "system.private.servicemodel/4.1.0",
"hashPath": "system.private.servicemodel.4.1.0.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.DispatchProxy/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fWmuJ86Pknajkonql6v3KrFo0kFw3s5IVXxayhgvANsbyTJru9wY+vaSIoupmj4kvMRol3s0w0k0sK82TqDrnA==",
"path": "system.reflection.dispatchproxy/4.0.1",
"hashPath": "system.reflection.dispatchproxy.4.0.1.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.4.0-preview2-25405-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Y/GimlNpKmT6cJvN/q7Q6cKt9u32WgKigSqRXYEVQcaoE3V9ciDt/ScmcjGzBxt5kCggUTcbD2PIJfYingTpdQ==",
"path": "system.runtime.compilerservices.unsafe/4.4.0-preview2-25405-01",
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0-preview2-25405-01.nupkg.sha512"
},
"System.Runtime.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
"path": "system.runtime.interopservices.runtimeinformation/4.0.0",
"hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
},
"System.Runtime.Loader/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ckNbxRJ+bOZwcw7NQAdTr/hpDomMS39Kzm3RdH8Ei6TAKPCLBCfa1FVLthzElCzgiki/TFJ+F7Xhg3asPBLgHw==",
"path": "system.runtime.loader/4.0.0",
"hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MAPR9qRXPBMcJ2Shqz9VwAbFMws0Br+aeRVrEpoHwpLbqDqVbhtWJAR5rzn07XLTAZLVSN5Hmwe/IiXBH6X30A==",
"path": "system.runtime.numerics/4.0.1",
"hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"path": "system.runtime.serialization.formatters/4.3.0",
"hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Xml/4.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yqfKHkWUAdI0hdDIdD9KDzluKtZ8IIqLF3O7xIZlt6UTs1bOvFRpCvRTvGQva3Ak/ZM9/nq9IHBJ1tC4Ybcrjg==",
"path": "system.runtime.serialization.xml/4.1.1",
"hashPath": "system.runtime.serialization.xml.4.1.1.nupkg.sha512"
},
"System.Security.Claims/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4jwowgcmOe6gOLrvleNj/2UiwYTJWzHwW+EvfFPBKH+Ptx8gz1HqNcYBKJnKCXXuJjqYv0rPRye3KPhT4wWCZA==",
"path": "system.security.claims/4.0.1",
"hashPath": "system.security.claims.4.0.1.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
"path": "system.security.cryptography.algorithms/4.2.0",
"hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2W9qXGcyvQbWWvdiHwvCvc641L3zsLqbbqVbA6NvGB2awUL3sxY3fPOrFBvdRwFJhemZzqyyyCTr4Xj/mhfpeA==",
"path": "system.security.cryptography.cng/4.2.0",
"hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512"
},
"System.Security.Cryptography.Csp/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MuqxE98kLaCL1b2ehf7fIzDvqywRGzEaG+/y6ggz15+vxQJ5MhwL8NjINqs+5Li8f+bTnkBDdTdImXCSLKRwdg==",
"path": "system.security.cryptography.csp/4.0.0",
"hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
"path": "system.security.cryptography.encoding/4.0.0",
"hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-01BslCiIR0LFZUYd3sWZP6drOQ/q6D3mMs+yQfuegTpSGxtNhILwy2XpEom0mfqdu9pDyL4QlXIatA/RAXdWeQ==",
"path": "system.security.cryptography.openssl/4.0.0",
"hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
"path": "system.security.cryptography.primitives/4.0.0",
"hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
"path": "system.security.cryptography.x509certificates/4.1.0",
"hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
},
"System.Security.Principal/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WK/iMkOh76sQ3QLF1Zllsq32pNqoNIDTESfyP/MszNTojHTNlNRwg7l7R8mVAU7WCv3xJ90Z9YKOMfFFXUAZ7w==",
"path": "system.security.principal/4.0.1",
"hashPath": "system.security.principal.4.0.1.nupkg.sha512"
},
"System.Security.Principal.Windows/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AeqzzLn92E+qT0ZO4zL6i2u/lnVIDch9kZgU+uslowGw9q0G8IMFs4D9AO4jSGkdXgHdPp7XHyPT9QQzmqsJAQ==",
"path": "system.security.principal.windows/4.0.0",
"hashPath": "system.security.principal.windows.4.0.0.nupkg.sha512"
},
"System.ServiceModel.Primitives/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Kd65HOn/5pL9xtCUkSL8xVqpqBUYy9tsfo0qe/MTTzApY8WQ+6i4I2ts++M+m4vbOanCoEsjjUj26P6C6ilQjQ==",
"path": "system.servicemodel.primitives/4.1.0",
"hashPath": "system.servicemodel.primitives.4.1.0.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.Overlapped/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xtHHIrUKB6SsjWJeQYOXD1wWKh0Vp38zC/eK1yJjdy3+vAg/NO0mQmkzwQLYCkayjzVOZRBuoyZAcdgZlambPQ==",
"path": "system.threading.overlapped/4.0.1",
"hashPath": "system.threading.overlapped.4.0.1.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Threading.Thread/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HS4pngNqh74D8n0r9KvnaHzGNsTr8UlqIuJDUvZLJgp0xXyRJkhE0rsFdGUUHP+uSWdnIksvi0p2SfAcbo8LSA==",
"path": "system.threading.thread/4.0.0",
"hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
},
"System.Threading.ThreadPool/4.0.10": {
"type": "package",
"serviceable": true,
"sha512": "sha512-irm2plBlAONsNB6aLRi9h0iKCMjouLWYblUgS8+f7M8Y7n/BYXvG5UNYmHkUwGJ8yKAskxf0lgjGE5eu5nnNiQ==",
"path": "system.threading.threadpool/4.0.10",
"hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
},
"System.Threading.Timer/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PgK6SX0v85Esg7seqbLxbsZ5QGm27bZwnhvqvigPVN8dTN6w1bNBzjZMnEUZ8kGIgYDocs5CGZGDbj5N8emzZw==",
"path": "system.threading.timer/4.0.1",
"hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.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.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
"path": "system.xml.xmlserializer/4.0.11",
"hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
}
}
}
md5: CFCCFCC431B7758672E7E993E0856C0C | sha1: 35EEB8CA260EA79A85A9E44938124A6030738106 | sha256: A26400A417473A05540252FC311A0607A644E64A89458AB225C29884EABC4E27 | sha512: 45AD86681253A1ECE93EDA7EB30D4079501101719B08ED892B36740014C103AAE00CBC18871BDD994E0D31AE58BE5D80437F088E8A80F71084D9A01AB170C70F
md5: 484BBE856ED0B8EFED97CEB1F5BD3F34 | sha1: 75BE0A5413057ED960A3FAD093AB9DD62D58050C | sha256: CA72A20CF8EF62B4080FAB71571586DFDF7E21D7A2989687302FD539BD75AE06 | sha512: 905167A7240CF58BFBFCD5355FF1F6EC0D0C15B4FC16D83909FF62036EC885364727285030D0F269D8018A510FCF7F804C7CC052B5EE6CD364A294CA2E0E9EE1
md5: B91A5A6B55A48C7363A571D9CD532851 | sha1: A613BFF8998C6B0C51AD19E45595E7603850A99D | sha256: 70DED44BCF96E04A3C6682AB3CD1891211BAF46D4E147082DF6CF3732C5CF0D4 | sha512: BA5D7CBE22DF7864F089025E7B36503D8EBA2A5A49D5028EA8628D0B8B59D924D654B2AE06EA7E9C8BC9BA4814B1BD031BDB7901BD5E0EDEA56E159B85550F78
md5: 6124998F71D841327108B635ADF2A3F6 | sha1: 7A0A97F6CF23FD29DA1048E97B16997BCD6B7B26 | sha256: DDF0E2B96B3FBE1F98C5377DBC326F843D8F93FC575339CAC6932B96FFD823F6 | sha512: AC42A76F6B4F60DDFAB8B1757000B37357422773A77DECDC52DB4D368689A2328868B2D962FDAFC812DF257A07BBFBD1C61B70F0D16A651D2B66FE40A42131E2
md5: 5387C0F4F7EEC5FBEF60E840D868F372 | sha1: ED15EF6CBBB09E554EB3DD13079E42AFE9582F6D | sha256: 24E1EA4B1CCCDB7ACAAC456A4DA6D4D635614B994EFBB73557F3DA7363C6A46A | sha512: ADBAE4F8FEFDEAF11ED0AB00FC9532F8F68EB5B89C617174FAC0D0E70C983867C62871BD330F6368F5B182056F0889B8CE8C578DE57C9C58C2C893D6F397611F
md5: 1D2658107506D702B74E9F5A537B96FB | sha1: 1A14A73F1D10A4A0ABE1A384D8F2155F89281DAE | sha256: 929C8444E898D50DA7A31507497EBE7A65FDFD171C50B8025402959D2799960C | sha512: E405FC42CE94BFED36BFAF47BD3A67D43349A22E3025AE57CEEC5C696A865D397FFA59876CDC62C8B577D49B85E08703790A61F1BD84FDC90DA7FD6B71C1F3D0
md5: 6F8D618FBAEF0190DBF76C2B621EB78A | sha1: 832F3724BF6003200C89D0A16A05898C93E5EDA4 | sha256: 06C59E107BA0A92EEC4AAF4A76B3B60BE1202D9591F3C0542C2C61A2B701BB42 | sha512: 906495339F0741027B15896258CF05F04BCEF0571E69735C66EF611C8D3CF99544BCD3E43F1457CEB419CBFFD04734491A6BFA8E494CE22E0A01BEAD4B26D938
md5: 4F405ECFCDB49051DD083F55AFEC23D9 | sha1: 6950C0092A8CC52A98E2F2A5B566CFE1B600A69F | sha256: 4C48C6C03C62207996E77F6FA6D384E97BF0F3189EB7A668A3ACB9AF220DB23C | sha512: F2B8A1327F6C0B522D885EC1AFF3A8E3E5619640412D35CA858C9A0F7D2593A56B3D8319803447A506D328AC42C38DF9F1A276EC9442A43322D5EE7C0D6E21F2
md5: 67E66BB824593742FA9DEADDFE1AD3AC | sha1: 54C7ABB4B57B09C49ACC010AA504351060E7348B | sha256: 7C271C09DB5DE90E03F7B47B125B5051D87AEAD61E076E9D0D55625B560CB555 | sha512: FFE7EB5927B25A23A3A91A32DA2CF0CE16BA65991CC28EFABC8E13A3EA2DBE1B12C5D2276DB8E90D609AE670167F85DB2FECBF54C64780B019A57B7FB797A0D0
md5: DDFA4C76360310DCE7C8E8684B621AEF | sha1: F3448925C7C137C81F3EF0A2F111A795E3C54A6B | sha256: 51E09E5457EEEE10758A4D079421D7A47D654075C4D11AC2865C1FB0E1A1C99A | sha512: D2880F3FA41BAD4AB047A4C4F282E83D652A4DE5E3759C70E14D3F248A3AA3CAEDFED62E63D945044F66E38D496B2D77273AFDD2639258377248AF5FD9A2EC3D
md5: 2C5974319705F5737C5878AE0E34C6D7 | sha1: E4A2FC40CC24F67260171A1A179540EFAFB7B7E0 | sha256: 3D06617FD13670BE267019988ACCECC939290C974A3670094A207DBF60F95C27 | sha512: 1C650D1C863C8591FC3978960FB2B18982DE9C188DB416BA480E31D8139184CDC2DDA8927C8605E3C297DDBE086801910DE6D383710C7CEC22A46B5409F7806F
md5: 9FB475CD790B62B1AE6C7ACF98EF13CD | sha1: 3F2794B2D5AECA4382A0EFBB669EF38A4B732D29 | sha256: FC285202C18EDDB1C9B52EEA8DAA79A9AFDA91010370192D55B1AA373CB503E8 | sha512: 0D73A06E6D1C2CA5961B18091EA391700128C4B28B8EE7D331DD49C5A07D577F352026F6AF70A6BF153D9DEB12EC47E9E4FD0CBC39A8966E532DB9CCED7BBEDE
md5: 7CE53211C31927BDF6857177323BBCDA | sha1: 5C0EC244DF1E83AD03AD9E2F9B1C0432B8732388 | sha256: FF3C25B0F8EC7CCBA1FD25661134DC42090AA9BB33169CE5104D5B159E9503B0 | sha512: 4A4499390A18D1D89EFFB70C2CFCF9C8E4BFC13F27AC78811B12C81269C7B7F82FEEB74C0390334DC56A16AA8DA710DA9A327AA57F715CD99EB0B9BADA07C446
md5: 23D50738ECF0F35072A4CC9D56DAF1CA | sha1: 61F41CCCF09CA0523CDBF88C5DE54F866A4BF1E2 | sha256: 4B398EA6E30B5BF7415C8F6F14A03F7FE0D66CD3B4EBD8813B0DBB1B39EB8CE3 | sha512: 10A0E7A3B79A54E730D6ADC13FDF26778DECF018D133DD9C6AA8B88F93B79983A9E100060E02D993D8A56B4EA6E8CA87CF0FBABC8E05D1C7B72FA61824C04772
md5: 9665E45C6FA8972B2F9B10978B60690F | sha1: 16E7A5699DE9C925EBED641D5A2D22EE76AE18F9 | sha256: E31A2C57A22728AD027B18A2B3D31195A9BDB1A0319593A37DD9083E97DEB6F7 | sha512: 398FCEB501A89F5D4472B4EFF3070EEBE9CE1E0028C7B3306EFF1A57C70BB9F0F6710FFF051472A5E4421D7309F3BDFC70936057A2A3F45D86D4844C53E0F19B
md5: 948B92FE6DBFFEABF7387C293531034D | sha1: 1753A8A973FCA3068FCF51DA65CC7235674EB6E1 | sha256: 6A7EEC568B22F72AACC0FC39A8E9C4ABEA25608FA5EFE517765FB517281036CD | sha512: A7C717D0F6BD978314C951BA1DE0CAD9F6DC2377D65C68ED95EB928A255EEB9A50A26D4C11086A884B3E0544AA35987B8A3318C1D84739C8682BEDF1BD74CF3A
md5: 72951BEA9A8A21B3CB2648DFD4C3321E | sha1: D2ACB98A80A4291AB33F05A488948D631070CA68 | sha256: 5B9CB133983AC652CEF17A6A3D01AA71379D16801D46483B28CC22C59927948B | sha512: 548DC6DDE84B0E377B7C1A6DE73CBE493C9BE553D23170CAA9819E70E86F90925F76BD6ADE62E4300E9497D3C9C7613A0ED37AABA8BC285EC40A162DB2ED3541
md5: AC7102EF997BFA8518731C513A097E20 | sha1: E380C066E6608442F0E9A912A56B6CD23AB330DB | sha256: 67A91613554B1021B8295C2FE22863786A1127CDE6F7BBB263EACB9B106AAA25 | sha512: A2B4EFF62F36B20C079AF6D8B0FDA7AC6C3EED4701A3DDB411A2787C725A101E33383A6BF1543F96CE2A776699761B82732D8A4FEFE0CA27EB1B330D5503A0D6
md5: DEBDD6D3316078C7DFA4847797030A2D | sha1: AD4C7D15C695BF6EF15D6E5173CFA2D5B17B96A0 | sha256: 04692E109AD1F26AC8227CB110C6AD11697104B1B74B1E66F7230473034BC5E3 | sha512: EE1433D6C2B3C160BDC09DDA2CE00A2C034EF8C91815FF73831A6BBF9DA7F1B7154BE2CB59750A835A9F52C839C6D5B521EF30ECC420D2C0357DFAD7C3044C04
md5: 79C3CA8D824014AC5376CFB687DB4CD4 | sha1: 69373A00FE3EF91345B8774B2B3320C1BCF3838B | sha256: 956EFF9501010EB06991A53446F66AF43DE377391BB6D44E2F9B92A1ACCE759D | sha512: 90660AD93515C7ABCCEEEF63DAACB9728CCD043E865161F0946797DDE9F63AF3560EA58CAC78318421D7B2C93A7012D86D227D6F80D82257E2DE85F0637B47A8
md5: 99D08A0B398C42CBFB87F9E34C0EC44C | sha1: 5E9ED7812595C3C90F1F58DD108A9AF28EA76FDE | sha256: E0D24EC45FDEAE53521D01F8457D0E0054749A90F379CEB1D6916E6CB4AD9345 | sha512: 06033914AC31ADBEBAD3F8D36EF0244F1A061854D38267AE061F0084E646DBF81BA69969BB9883297B0F479AF668AEA17FB8C2D209108795951E3822EC9B17AA
md5: E09BB1C2F55C5156DA79D20E804DBDE0 | sha1: FC08E8DB3C6B325463CDAC0610E4599669EF0FE5 | sha256: 040C8FE328E86B537CBB7A85CB7D2705535FADB57FCCB3E5D830147D2306B588 | sha512: 5C8CC3E553EDA1305E4D34BCD8A511280E24337410E01FCB532AA492E616F6D3EBD1121813571586DBBECB3ED8FE52803BEADA9C7D7B2D70DAC42792C6EE8EA5
md5: 69AF6CFEF23229A61CAB11766EA75191 | sha1: 72E3959E4B40FCF79FA3DB83D7251646899AA44C | sha256: 478043B9536244D66058035848171A1B9872BFB9F9087B0E47794D5B7BA4A38B | sha512: E9AA6AAC4202D50BD321CA1E7587A37AADA418A4C97866B4B6B4A61B9594871039125ED764BA36DC866B4E038C68FE3FB5E722D0943A8F6B3030E64F5555A693
md5: 3752F54211EE4BEF819DD08F5D717972 | sha1: 0836B1D774068D5CA63BA95A51472E367A350C5C | sha256: AB98AFD68E61F2CFF772E8F8C9DBF05AA15DBD779D0CBDCBBD4465C24A21CEED | sha512: 5808420EA4883CE23D909D45DA5EF1975F59F6F28B3D218BD008AC85E28B4A12802F6734AFD44BF49E9EE26244605FCEA1FF9D2D2E5A94005832D5C44B130F63
md5: 71F74647616F08D3B298FC73CD507688 | sha1: BBA1663AF6D1484483185800F0EC388BEF75BEA0 | sha256: E3798271C53513AB994BA0223DEB77D0727B53926F5D680252899D777D38C6A4 | sha512: D9F3D3B5F7DA490A4F095788B710AFBDF65A422679BF1DA4127E34CA58413E1BA6E859D56D6CBF0B69D554ABEF83ED184781B5A304E5127F9EEB0959F20FCFF4
md5: 6B9BFBC0DB4198DF4E268D561C29E6B6 | sha1: 58D69745B208DBBBF8F1C391E4A5CD8262A2D9C0 | sha256: 37B9526CD23B5AB2EBA486691E3A97988860CDB44F486541CF609F30D4FBB756 | sha512: 2314E1DA1E42EE261ACB1EA390C7D5AF1CF930E222AB4F2B2948B41E3B2DDDDEE8237F1BFD4D15C69E3B16A6B459016BA6BDF2C1055ACCCC65A937471CE93FB6
md5: 9090DDE4C3BF59B35149294BD45A999C | sha1: 6B54D97628C24C491572AFCA5212DA704EA75CE0 | sha256: 0724BF4E2934DA30EB87869E29425F643B682E38F87AE8D1F60B58AF1090D037 | sha512: C4EAE04CA56764EFDEB9A4C011EEAE83EFF639BBE7CA46DA276B71E135A9453C8CF5EC280829E00CB8FBB3F3B64BC2D372B5A7BCAD03C611E998898F3A6C75AE
md5: 14421E64A7E742FED2325CDC2B05E870 | sha1: C418C8D6A43B72DC4EBDCCC9D34F7A1A0C0DCD4F | sha256: 162D7CE00DDD9F14893E732416A8F0BA0D38FD722108DB184B0297E7A776F717 | sha512: 0298C17FD1F2517AB50718B83F882C8977206F450BE521573D1FD79F7698A73BB60B46B3A7356C2BA43A8CD3197E934037A1B0E56AB38716BB5384B715FD0A51
md5: F09758AE692E87E21A5BB05EE4066FBB | sha1: 2C969B9BE6F8D454DB690FD34F234BE158852958 | sha256: 6306C7834F219C2FDA5EA0F500D4F7F5FF2599A2E17767309CF4938AF0CB1F16 | sha512: 5C44F0B84A7F6413F4FDA6202A2AE37E6E3E13D2BBFC1272DBCF480FBDE3D111336CF2F481A8A3E4E4CED1AD28468ED93AB05FAB992D86E2797F9F4F933E85FE
md5: E3176B8D0FE9873F4990521E0F8B5A61 | sha1: B9668C26C39DCBE0D2D6D3DF52F47B1657BC1B3B | sha256: 8147B8BF4728421C4B7EEF66A63CA27C50F0698C666CBF97E42945FD125553F8 | sha512: CC3FFA08332818724C8D4D2EC92E0A718EB1613A0703D89AAF917698E9F129D29DFAB9CECF883A5C23C920F70858DEDD08D0F79764E463C757C80D61AE1A2799
md5: 92D9DBBE10F8F3770BA97ACC3683325D | sha1: A2BDCEF88F3CF1FBCB2E3953C07A65CEACFB2B53 | sha256: 0268D88516035EB67851E15FEA5BD2787100E55F4ED6A9C8B4349FE933C39329 | sha512: D92AB8640BD4D39455393BF44AE672454381CE5E606ACF12D0387130724EF8B997CDB9D53424712827E8650A8AF8E2F5B9C6EA95A6EBB4ABA32CF3ECAD813E18
{
"PowerShell": {
"JsonOutput": false
},
"Logger": {
"ConsoleOutput": true,
"DebuggerOutput": false
},
"Debug": {
"BreakOnStart": true
}
}
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.0",
"signature": "63bec22a775ba388fc7d402716b59f584df90477"
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.0": {
"PowerShell-Kernel/1.0.0-beta-5": {
"dependencies": {
"Jupyter-Kernel": "1.0.0-beta-5",
"Microsoft.Extensions.Configuration": "2.0.0-preview2-final",
"Microsoft.Extensions.Configuration.Binder": "2.0.0-preview2-final",
"Microsoft.Extensions.Configuration.Json": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Console": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Debug": "2.0.0-preview2-final",
"Microsoft.PowerShell.Commands.Diagnostics": "6.0.0-beta.4",
"Microsoft.PowerShell.SDK": "6.0.0-beta.4",
"Microsoft.WSMan.Management": "6.0.0-beta.4",
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"PowerShell-Kernel.dll": {}
}
},
"AsyncIO/0.1.26": {
"dependencies": {
"System.Net.NameResolution": "4.0.0"
},
"runtime": {
"lib/netstandard1.3/AsyncIO.dll": {}
}
},
"Microsoft.ApplicationInsights/2.3.0": {
"dependencies": {
"System.Collections": "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.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.Linq": "4.3.0",
"System.Net.Http": "4.1.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "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.XDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {}
}
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {},
"Microsoft.CodeAnalysis.Common/2.2.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Analyzers": "1.1.0",
"System.AppContext": "4.3.0",
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Collections.Immutable": "1.3.1",
"System.Console": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.FileVersionInfo": "4.3.0",
"System.Diagnostics.StackTrace": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO.Compression": "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.Reflection": "4.3.0",
"System.Reflection.Metadata": "1.4.2",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "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.X509Certificates": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Text.Encoding.CodePages": "4.4.0-preview3-25423-02",
"System.Text.Encoding.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Tasks.Parallel": "4.3.0",
"System.Threading.Thread": "4.3.0",
"System.ValueTuple": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XPath.XDocument": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
}
},
"Microsoft.CodeAnalysis.CSharp/2.2.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Common": "2.2.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
"Microsoft.CSharp/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Dynamic.Runtime": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Threading": "4.3.0"
}
},
"Microsoft.Extensions.Configuration/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Binder/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0-preview2-final",
"System.ComponentModel.TypeConverter": "4.3.0"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
"Microsoft.Extensions.Configuration.FileExtensions/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0-preview2-final",
"Microsoft.Extensions.FileProviders.Physical": "2.0.0-preview2-final",
"System.Threading.Thread": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Json/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.0.0-preview2-final",
"Microsoft.Extensions.Configuration.FileExtensions": "2.0.0-preview2-final",
"Newtonsoft.Json": "10.0.3",
"System.Dynamic.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0-preview2-final": {
"dependencies": {
"System.ComponentModel": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Abstractions/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
"Microsoft.Extensions.FileProviders.Physical/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.FileProviders.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.FileSystemGlobbing": "2.0.0-preview2-final",
"System.IO.FileSystem.Watcher": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
"Microsoft.Extensions.FileSystemGlobbing/2.0.0-preview2-final": {
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
"Microsoft.Extensions.Logging/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Options": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0-preview2-final": {
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Logging.Console/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
"Microsoft.Extensions.Logging.Debug/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0-preview2-final"
},
"runtime": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
"Microsoft.Extensions.Options/2.0.0-preview2-final": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0-preview2-final",
"Microsoft.Extensions.Primitives": "2.0.0-preview2-final",
"System.ComponentModel": "4.3.0"
},
"runtime": {
"lib/netstandard1.1/Microsoft.Extensions.Options.dll": {}
}
},
"Microsoft.Extensions.Primitives/2.0.0-preview2-final": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview2-25405-01"
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
"Microsoft.Management.Infrastructure/1.0.0-alpha06": {
"dependencies": {
"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": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win10-x64",
"assetType": "runtime"
},
"runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x64",
"assetType": "runtime"
},
"runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win10-x86",
"assetType": "runtime"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win7-x64",
"assetType": "runtime"
},
"runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x64",
"assetType": "runtime"
},
"runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win7-x86",
"assetType": "runtime"
},
"runtime/win8-x64/lib/_._": {
"rid": "win8-x64",
"assetType": "runtime"
},
"runtime/win8-x86/lib/_._": {
"rid": "win8-x86",
"assetType": "runtime"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {
"rid": "win81-x64",
"assetType": "runtime"
},
"runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x64",
"assetType": "runtime"
},
"runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": {
"rid": "win81-x86",
"assetType": "runtime"
},
"runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtimes/win10-x64/native/mi.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtimes/win10-x64/native/miutils.dll": {
"rid": "win10-x64",
"assetType": "native"
},
"runtime/win10-x86/native/_._": {
"rid": "win10-x86",
"assetType": "native"
},
"runtime/win7-x64/native/_._": {
"rid": "win7-x64",
"assetType": "native"
},
"runtime/win7-x86/native/_._": {
"rid": "win7-x86",
"assetType": "native"
},
"runtime/win8-x64/native/_._": {
"rid": "win8-x64",
"assetType": "native"
},
"runtime/win8-x86/native/_._": {
"rid": "win8-x86",
"assetType": "native"
},
"runtime/win81-x64/native/_._": {
"rid": "win81-x64",
"assetType": "native"
},
"runtime/win81-x86/native/_._": {
"rid": "win81-x86",
"assetType": "native"
}
}
},
"Microsoft.NETCore.Targets/1.1.0": {},
"Microsoft.PowerShell.Commands.Diagnostics/6.0.0-beta.4": {
"dependencies": {
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {}
}
},
"Microsoft.PowerShell.Commands.Management/6.0.0-beta.4": {
"dependencies": {
"Microsoft.PowerShell.Security": "6.0.0-beta.4",
"System.ServiceProcess.ServiceController": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.Commands.Management.dll": {}
}
},
"Microsoft.PowerShell.Commands.Utility/6.0.0-beta.4": {
"dependencies": {
"Microsoft.CodeAnalysis.CSharp": "2.2.0",
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.Commands.Utility.dll": {}
}
},
"Microsoft.PowerShell.ConsoleHost/6.0.0-beta.4": {
"dependencies": {
"Microsoft.ApplicationInsights": "2.3.0",
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.ConsoleHost.dll": {}
}
},
"Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/6.0.0-beta.4": {
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.dll": {}
}
},
"Microsoft.PowerShell.CoreCLR.Eventing/6.0.0-beta.4": {
"dependencies": {
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {}
}
},
"Microsoft.PowerShell.SDK/6.0.0-beta.4": {
"dependencies": {
"Microsoft.PowerShell.Commands.Management": "6.0.0-beta.4",
"Microsoft.PowerShell.Commands.Utility": "6.0.0-beta.4",
"Microsoft.PowerShell.ConsoleHost": "6.0.0-beta.4",
"Microsoft.PowerShell.Security": "6.0.0-beta.4",
"System.Data.SqlClient": "4.4.0-preview3-25423-02",
"System.IO.Packaging": "4.4.0-preview3-25423-02",
"System.Management.Automation": "6.0.0-beta.4",
"System.Net.Http.WinHttpHandler": "4.4.0-preview3-25423-02",
"System.Private.ServiceModel": "4.4.0-preview3-25423-01",
"System.ServiceModel.Duplex": "4.4.0-preview3-25423-01",
"System.ServiceModel.Http": "4.4.0-preview3-25423-01",
"System.ServiceModel.NetTcp": "4.4.0-preview3-25423-01",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01",
"System.ServiceModel.Security": "4.4.0-preview3-25423-01",
"System.Text.Encodings.Web": "4.4.0-preview3-25423-02",
"System.Threading.AccessControl": "4.4.0-preview3-25423-02"
}
},
"Microsoft.PowerShell.Security/6.0.0-beta.4": {
"dependencies": {
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.PowerShell.Security.dll": {}
}
},
"Microsoft.Win32.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"Microsoft.Win32.Registry/4.4.0-preview3-25423-02": {
"dependencies": {
"System.Security.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"Microsoft.Win32.Registry.AccessControl/4.4.0-preview3-25423-02": {
"dependencies": {
"Microsoft.Win32.Registry": "4.4.0-preview3-25423-02",
"System.Security.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"Microsoft.WSMan.Management/6.0.0-beta.4": {
"dependencies": {
"Microsoft.WSMan.Runtime": "6.0.0-beta.4",
"System.Management.Automation": "6.0.0-beta.4"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.WSMan.Management.dll": {}
}
},
"Microsoft.WSMan.Runtime/6.0.0-beta.4": {
"runtime": {
"lib/netcoreapp2.0/Microsoft.WSMan.Runtime.dll": {}
}
},
"NetMQ/4.0.0.1": {
"dependencies": {
"AsyncIO": "0.1.26",
"System.Net.NetworkInformation": "4.1.0",
"System.Runtime.Loader": "4.0.0",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01",
"System.Threading": "4.3.0",
"System.Threading.Thread": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/NetMQ.dll": {}
}
},
"Newtonsoft.Json/10.0.3": {
"dependencies": {
"Microsoft.CSharp": "4.3.0",
"System.ComponentModel.TypeConverter": "4.3.0",
"System.Runtime.Serialization.Formatters": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Newtonsoft.Json.dll": {}
}
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/debian.8-x64/native/_._": {
"rid": "debian.8-x64",
"assetType": "native"
}
}
},
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/fedora.23-x64/native/_._": {
"rid": "fedora.23-x64",
"assetType": "native"
}
}
},
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/fedora.24-x64/native/_._": {
"rid": "fedora.24-x64",
"assetType": "native"
}
}
},
"runtime.native.System/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Data.SqlClient.sni/4.4.0-preview3-25423-02": {
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0-preview2-25312-01",
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0-preview2-25312-01",
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0-preview2-25312-01"
}
},
"runtime.native.System.IO.Compression/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Net.Http/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0"
}
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"dependencies": {
"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": {
"runtimeTargets": {
"runtime/opensuse.13.2-x64/native/_._": {
"rid": "opensuse.13.2-x64",
"assetType": "native"
}
}
},
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/opensuse.42.1-x64/native/_._": {
"rid": "opensuse.42.1-x64",
"assetType": "native"
}
}
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"runtimeTargets": {
"runtime/osx.10.10-x64/native/_._": {
"rid": "osx.10.10-x64",
"assetType": "native"
}
}
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/osx.10.10-x64/native/_._": {
"rid": "osx.10.10-x64",
"assetType": "native"
}
}
},
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/rhel.7-x64/native/_._": {
"rid": "rhel.7-x64",
"assetType": "native"
}
}
},
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/ubuntu.14.04-x64/native/_._": {
"rid": "ubuntu.14.04-x64",
"assetType": "native"
}
}
},
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/ubuntu.16.04-x64/native/_._": {
"rid": "ubuntu.16.04-x64",
"assetType": "native"
}
}
},
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"runtimeTargets": {
"runtime/ubuntu.16.10-x64/native/_._": {
"rid": "ubuntu.16.10-x64",
"assetType": "native"
}
}
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"runtimeTargets": {
"runtimes/win-arm64/native/sni.dll": {
"rid": "win-arm64",
"assetType": "native"
}
}
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"runtimeTargets": {
"runtimes/win-x64/native/sni.dll": {
"rid": "win-x64",
"assetType": "native"
}
}
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"runtimeTargets": {
"runtimes/win-x86/native/sni.dll": {
"rid": "win-x86",
"assetType": "native"
}
}
},
"System.AppContext/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Buffers/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections/4.3.0": {
"dependencies": {
"Microsoft.NETCore.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.3.1": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "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.Threading": "4.3.0"
}
},
"System.Collections.NonGeneric/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Collections.Specialized/4.3.0": {
"dependencies": {
"System.Collections.NonGeneric": "4.3.0",
"System.Globalization": "4.3.0",
"System.Globalization.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.ComponentModel/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.Primitives/4.3.0": {
"dependencies": {
"System.ComponentModel": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.ComponentModel.TypeConverter/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.NonGeneric": "4.3.0",
"System.Collections.Specialized": "4.3.0",
"System.ComponentModel": "4.3.0",
"System.ComponentModel.Primitives": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Console/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Data.SqlClient/4.4.0-preview3-25423-02": {
"dependencies": {
"Microsoft.Win32.Registry": "4.4.0-preview3-25423-02",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02",
"System.Text.Encoding.CodePages": "4.4.0-preview3-25423-02",
"runtime.native.System.Data.SqlClient.sni": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netstandard2.0/System.Data.SqlClient.dll": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Diagnostics.Debug/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.DiagnosticSource/4.0.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.FileVersionInfo/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Reflection.Metadata": "1.4.2",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Diagnostics.StackTrace/4.3.0": {
"dependencies": {
"System.IO.FileSystem": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Metadata": "1.4.2",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tools/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Diagnostics.Tracing/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Dynamic.Runtime/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0"
}
},
"System.Globalization/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Calendars/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Globalization": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Globalization.Extensions/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.InteropServices": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO/4.3.0": {
"dependencies": {
"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": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem/4.3.0": {
"dependencies": {
"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.4.0-preview3-25423-02": {
"dependencies": {
"System.Security.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.FileSystem.Primitives/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.IO.FileSystem.Watcher/4.3.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.3.0",
"System.Collections": "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.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Overlapped": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Thread": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/linux/lib/_._": {
"rid": "linux",
"assetType": "runtime"
},
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.IO.Packaging/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard1.3/System.IO.Packaging.dll": {}
}
},
"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.Automation/6.0.0-beta.4": {
"dependencies": {
"Microsoft.Management.Infrastructure": "1.0.0-alpha06",
"Microsoft.PowerShell.CoreCLR.AssemblyLoadContext": "6.0.0-beta.4",
"Microsoft.PowerShell.CoreCLR.Eventing": "6.0.0-beta.4",
"Microsoft.Win32.Registry.AccessControl": "4.4.0-preview3-25423-02",
"Newtonsoft.Json": "10.0.3",
"System.IO.FileSystem.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.Cryptography.Pkcs": "4.4.0-preview3-25423-02",
"System.Text.Encoding.CodePages": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netcoreapp2.0/System.Management.Automation.dll": {}
}
},
"System.Net.Http/4.1.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.DiagnosticSource": "4.0.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": "4.0.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Http.WinHttpHandler/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NameResolution/4.0.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.NetworkInformation/4.1.0": {
"dependencies": {
"Microsoft.Win32.Primitives": "4.3.0",
"System.Collections": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.IO.FileSystem": "4.3.0",
"System.IO.FileSystem.Primitives": "4.3.0",
"System.Linq": "4.3.0",
"System.Net.Primitives": "4.3.0",
"System.Net.Sockets": "4.1.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Runtime.Handles": "4.3.0",
"System.Runtime.InteropServices": "4.3.0",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02",
"System.Threading": "4.3.0",
"System.Threading.Overlapped": "4.3.0",
"System.Threading.Tasks": "4.3.0",
"System.Threading.Thread": "4.3.0",
"System.Threading.ThreadPool": "4.3.0",
"runtime.native.System": "4.3.0"
},
"runtimeTargets": {
"runtime/linux/lib/_._": {
"rid": "linux",
"assetType": "runtime"
},
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Net.Primitives/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.Net.Sockets/4.1.0": {
"dependencies": {
"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.Private.ServiceModel/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Net.Http.WinHttpHandler": "4.4.0-preview3-25423-02",
"System.Reflection.DispatchProxy": "4.4.0-preview2-25405-01",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
"rid": "unix",
"assetType": "runtime"
},
"runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
"rid": "win7",
"assetType": "runtime"
}
}
},
"System.Reflection/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.IO": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.DispatchProxy/4.4.0-preview2-25405-01": {},
"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.Targets": "1.1.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Reflection.Metadata/1.4.2": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Immutable": "1.3.1",
"System.Diagnostics.Debug": "4.3.0",
"System.IO": "4.3.0",
"System.IO.Compression": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.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.Threading": "4.3.0"
}
},
"System.Reflection.Primitives/4.3.0": {
"dependencies": {
"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.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.Targets": "1.1.0"
}
},
"System.Runtime.CompilerServices.Unsafe/4.4.0-preview2-25405-01": {
"runtime": {
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
}
},
"System.Runtime.CompilerServices.VisualC/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Handles/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.InteropServices/4.3.0": {
"dependencies": {
"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.Loader/4.0.0": {
"dependencies": {
"System.IO": "4.3.0",
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
}
},
"System.Runtime.Numerics/4.3.0": {
"dependencies": {
"System.Globalization": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
}
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.3.0"
}
},
"System.Runtime.Serialization.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.4.0-preview3-25423-02": {
"dependencies": {
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Algorithms/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.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"
},
"runtimeTargets": {
"runtime/osx/lib/_._": {
"rid": "osx",
"assetType": "runtime"
},
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Cng/4.3.0": {
"dependencies": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Csp/4.3.0": {
"dependencies": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Encoding/4.3.0": {
"dependencies": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
}
}
},
"System.Security.Cryptography.Pkcs/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"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": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.Principal.Windows/4.4.0-preview3-25423-02": {
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Security.SecureString/4.3.0": {
"dependencies": {
"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"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.ServiceModel.Duplex/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Private.ServiceModel": "4.4.0-preview3-25423-01",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
}
},
"System.ServiceModel.Http/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Private.ServiceModel": "4.4.0-preview3-25423-01",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.Http.dll": {}
}
},
"System.ServiceModel.NetTcp/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Private.ServiceModel": "4.4.0-preview3-25423-01",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
}
},
"System.ServiceModel.Primitives/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Private.ServiceModel": "4.4.0-preview3-25423-01"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.Primitives.dll": {}
}
},
"System.ServiceModel.Security/4.4.0-preview3-25423-01": {
"dependencies": {
"System.Private.ServiceModel": "4.4.0-preview3-25423-01",
"System.ServiceModel.Primitives": "4.4.0-preview3-25423-01"
},
"runtime": {
"lib/netstandard2.0/System.ServiceModel.Security.dll": {}
}
},
"System.ServiceProcess.ServiceController/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Text.Encoding/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0"
}
},
"System.Text.Encoding.CodePages/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Text.Encoding.Extensions/4.3.0": {
"dependencies": {
"Microsoft.NETCore.Targets": "1.1.0",
"System.Runtime": "4.3.0",
"System.Text.Encoding": "4.3.0"
}
},
"System.Text.Encodings.Web/4.4.0-preview3-25423-02": {
"runtime": {
"lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
}
},
"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.AccessControl/4.4.0-preview3-25423-02": {
"dependencies": {
"System.Security.AccessControl": "4.4.0-preview3-25423-02",
"System.Security.Principal.Windows": "4.4.0-preview3-25423-02"
},
"runtime": {
"lib/netstandard2.0/System.Threading.AccessControl.dll": {}
},
"runtimeTargets": {
"runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Threading.Overlapped/4.3.0": {
"dependencies": {
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
},
"runtimeTargets": {
"runtime/unix/lib/_._": {
"rid": "unix",
"assetType": "runtime"
},
"runtime/win/lib/_._": {
"rid": "win",
"assetType": "runtime"
}
}
},
"System.Threading.Tasks/4.3.0": {
"dependencies": {
"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.Tasks.Parallel/4.3.0": {
"dependencies": {
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "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.Threading.Thread/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0"
}
},
"System.Threading.ThreadPool/4.3.0": {
"dependencies": {
"System.Runtime": "4.3.0",
"System.Runtime.Handles": "4.3.0"
}
},
"System.ValueTuple/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Resources.ResourceManager": "4.3.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"
}
},
"System.Xml.XmlDocument/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.Encoding": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XmlSerializer/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.ILGeneration": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Reflection.Primitives": "4.3.0",
"System.Reflection.TypeExtensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XmlDocument": "4.3.0"
}
},
"System.Xml.XPath/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Globalization": "4.3.0",
"System.IO": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0"
}
},
"System.Xml.XPath.XDocument/4.3.0": {
"dependencies": {
"System.Diagnostics.Debug": "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.Threading": "4.3.0",
"System.Xml.ReaderWriter": "4.3.0",
"System.Xml.XDocument": "4.3.0",
"System.Xml.XPath": "4.3.0"
}
},
"Jupyter-Kernel/1.0.0-beta-5": {
"dependencies": {
"Microsoft.Extensions.Logging": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Console": "2.0.0-preview2-final",
"Microsoft.Extensions.Logging.Debug": "2.0.0-preview2-final",
"NetMQ": "4.0.0.1",
"Newtonsoft.Json": "10.0.3",
"System.Net.Primitives": "4.3.0"
},
"runtime": {
"Jupyter.dll": {}
}
}
}
},
"libraries": {
"PowerShell-Kernel/1.0.0-beta-5": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"AsyncIO/0.1.26": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mV6fvJg4K/kN6xzQ1sJJNzk7L8W0hKYxm2enGgi0cUs81v5S5JWfJF+M+KoyfmhUNNhy1nDcS4ycru8pBOFGyw==",
"path": "asyncio/0.1.26",
"hashPath": "asyncio.0.1.26.nupkg.sha512"
},
"Microsoft.ApplicationInsights/2.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xMSuL1UVTKOGjfskm4f60FjH7CuWAm5HHEgGTDwHoyKQdOlYMcMLwguSTzyjnuZ4Gmdj+/gDXu8TM72Lms7CqQ==",
"path": "microsoft.applicationinsights/2.3.0",
"hashPath": "microsoft.applicationinsights.2.3.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
"path": "microsoft.codeanalysis.analyzers/1.1.0",
"hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Common/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PHRbHwfE9jT1CWG56iesAVnoUI5u5hQ51LSX6WLS4BQBVVL4NL17qKAajxZQTlhVe2JHz0fuJhMujvB3sY7X0A==",
"path": "microsoft.codeanalysis.common/2.2.0",
"hashPath": "microsoft.codeanalysis.common.2.2.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.CSharp/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Bz/q5lPbv1KKplx3z6IoUz4wGjbih/C7GE3LQmWvTRGWnAycqemozG7h4x4RYtbBe5PjKbiYONB2RWCA9r/faw==",
"path": "microsoft.codeanalysis.csharp/2.2.0",
"hashPath": "microsoft.codeanalysis.csharp.2.2.0.nupkg.sha512"
},
"Microsoft.CSharp/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"path": "microsoft.csharp/4.3.0",
"hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7alywCprKRHZIBdWXoB76blqs3SVWdh7YTDYQuJ0QDSk6QODlmN1NGm7dcX9VtOfoEMLkiNm29yFln1oYup5ow==",
"path": "microsoft.extensions.configuration/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-71mtagRC9ogVKZ3Yc1lKfG3JOtOoB5+NgSN9vOrQ+5V7sDyldOmubiBk73dViWRx+3YrsS0LeZ5wUCpTpf0dAg==",
"path": "microsoft.extensions.configuration.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2PJuI+NwncOfbB+isGUxmQf727UXfUArKMXM6MJ/qZ3nsiYFiGx4JUVftCgW1pYz5ZYsIke0mMs/jvbmvnOuAg==",
"path": "microsoft.extensions.configuration.binder/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.binder.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.FileExtensions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-x2uoP7CVNmPwm02H5k/nomTurr65+H9nCP9vhpryYS4sKTDm4qCiw4LQYewiPQBme4EkPq5pe+dDzfLT2vEKJw==",
"path": "microsoft.extensions.configuration.fileextensions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.fileextensions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Json/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-8uiCwSEiUvHfeQDFeh2KmrDxYFdBxkyqxgatxfIyWtahrvlaWWcaFfY7XbsQLP0Zt2S7KT7Lrvc2YP1yF7Lmjg==",
"path": "microsoft.extensions.configuration.json/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.configuration.json.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U0z7cAjc2jcfCHYaqJsFjZ9MmwaeEUqNENO3IeBq3/9YANvYxwJ3XpK5QQpEDFzP8mmS0FRR+VJqLpKygg5QIQ==",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rlUTGfyVjCRJSP+eSJj8YUZ0WNwyf3x2ZZUMysJxiTJriza68Sjo6k18CUGdGDl72vaLjGmS71ZL+S6aHjSBpQ==",
"path": "microsoft.extensions.fileproviders.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.FileProviders.Physical/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XszUsT6oWEK3j0U1S1gOtMHk1M2sDRTypRJYdDzrAfC/ZCA1AG0FtNsng72p2m0wqtnBrxy70o0KFN1svXISNA==",
"path": "microsoft.extensions.fileproviders.physical/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.fileproviders.physical.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.FileSystemGlobbing/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pqoUWOtL77kn99d0wtpahGfFVwcbj0QnY9cN7hUACpsAed/7wBWjRDiiWBIczpIzaf2cLDL2jGF1JqxJHcFmYg==",
"path": "microsoft.extensions.filesystemglobbing/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.filesystemglobbing.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YYICK7+m1YkobN4B2WX67HIVpgag4CGrvMRMxkuGxch2+XLp2J+J3O/T1kbAzZDjqBaFG/q+io2Ge9ZYr47yDg==",
"path": "microsoft.extensions.logging/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AKxyJBE25CQfHCaSxqUPgIWC3BIw1r6TSieoQ2qPLJ9mrLWNnjnd81GNeyVLrfstXId79g7gz8sIuTAGqOFzVQ==",
"path": "microsoft.extensions.logging.abstractions/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.abstractions.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Console/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-w1CnNHN5brj2kuqW/ff9ATy0tBi5TIXp+/uYyFvVIxD1jJNdnDjlfVepC2c91lTeFScRAxMyXGvj4G6QnPjcjA==",
"path": "microsoft.extensions.logging.console/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.console.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Debug/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CjGdTjJakpKCx2AOFn3m+fXjYbYT4CYVlbfugn1d2uX+ifsBfUWW84uSNk0rkT2rnGqzFykXC8+xZJ2xZd38Zg==",
"path": "microsoft.extensions.logging.debug/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.logging.debug.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Options/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-pxAbtQHRSoTJIvp3ksTjjT5PwfK40myFAo4WZErfgakgxHuv1apJ3+A5QDWmugMsONAuHBDbfBiWATpyl+2w0A==",
"path": "microsoft.extensions.options/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.options.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.0.0-preview2-final": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XXR+O/We4SCKF9QFcUkDoWkugh3ia/KJJVWO5/SW3+AZlvy9SvD5/ePxjtwMWacZOt4cZm5v8trr2igXq9wEIw==",
"path": "microsoft.extensions.primitives/2.0.0-preview2-final",
"hashPath": "microsoft.extensions.primitives.2.0.0-preview2-final.nupkg.sha512"
},
"Microsoft.Management.Infrastructure/1.0.0-alpha06": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sHewsrcxwVb6fszw4L6oWoGUR150IrrxM7nq/yuzPSQLf0/MMOHEyd3vPcB7y8asmSS29JJMvIXNngYjbXXBgA==",
"path": "microsoft.management.infrastructure/1.0.0-alpha06",
"hashPath": "microsoft.management.infrastructure.1.0.0-alpha06.nupkg.sha512"
},
"Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"path": "microsoft.netcore.targets/1.1.0",
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
},
"Microsoft.PowerShell.Commands.Diagnostics/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Jq+PDs8JmIu9bdi6dEnt0sngnzZMANXd1DU8TV/ZiWGmhVBzFbj093q65CmDvovOBCzpRD5v6s3Hgkz8+nYEIA==",
"path": "microsoft.powershell.commands.diagnostics/6.0.0-beta.4",
"hashPath": "microsoft.powershell.commands.diagnostics.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.Commands.Management/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Yj9RdNrROX4tRmnA99xTdWqAJORDnldLZm9g34GRG+nZ3ur82MTvTx2luZxowbVqALx8fAbACh7AZVjVQSoMlA==",
"path": "microsoft.powershell.commands.management/6.0.0-beta.4",
"hashPath": "microsoft.powershell.commands.management.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.Commands.Utility/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WDoLvX8+0Yd5ymzanZIB1ZfIvWqgT48t3JksxHm0IiNODQEB9rgLdwNdiAi9+FTCB3HaS8Fc7aFqGE8tS5cqVA==",
"path": "microsoft.powershell.commands.utility/6.0.0-beta.4",
"hashPath": "microsoft.powershell.commands.utility.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.ConsoleHost/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JF0yR4aTpnnKgim5L/XGyBxRq66o2KocT/+BF/K+t7WzrbjYbD9gUysfLOEnwI0I0odUx89PO53TBDf/XB797Q==",
"path": "microsoft.powershell.consolehost/6.0.0-beta.4",
"hashPath": "microsoft.powershell.consolehost.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uS0cCptpBgKve9IfemV0JXOoXVhes+gR6xJN75f9tIeWYhaJ8y6FTn+GNK09vDhQEtNMZ+8BxSO+ygzB8s5m6Q==",
"path": "microsoft.powershell.coreclr.assemblyloadcontext/6.0.0-beta.4",
"hashPath": "microsoft.powershell.coreclr.assemblyloadcontext.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.CoreCLR.Eventing/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BjfB/yxhxnyCuIkANXTgz1ygdBXNd/TTH3RCF7edL0GFcoTFDxR0IEfbfgBJrqAfhBP3k6U5VZw0OwYnYFGtIw==",
"path": "microsoft.powershell.coreclr.eventing/6.0.0-beta.4",
"hashPath": "microsoft.powershell.coreclr.eventing.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.SDK/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1Vm+l2RE6jjRgUe7SeG06PnZlu0wdD1BVS+nmUIH4TfU3e2kl2k1qpWQDOEBNCdNV/KWbaAapAEs9BBcIKnumA==",
"path": "microsoft.powershell.sdk/6.0.0-beta.4",
"hashPath": "microsoft.powershell.sdk.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.PowerShell.Security/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9OG12d11KiWUBeSsxxh6mxhrE2xtBUCr2xEPdog9TBUrojq5aqtapdYiRfafXm3MU1H8v4tl4XWKTIFlfecboA==",
"path": "microsoft.powershell.security/6.0.0-beta.4",
"hashPath": "microsoft.powershell.security.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"path": "microsoft.win32.primitives/4.3.0",
"hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZDoM3AiS7Z0S4K8b4536BO5iuIjjoe4/H2ziC6WxYhMO2l6RbHbvXcQpppYvdoweUgjPV27rKI0aSzwGSgTVDA==",
"path": "microsoft.win32.registry/4.4.0-preview3-25423-02",
"hashPath": "microsoft.win32.registry.4.4.0-preview3-25423-02.nupkg.sha512"
},
"Microsoft.Win32.Registry.AccessControl/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Uhc8XkfY20CjYsWx6LgkKcrHnoKIsC649oDJkPzgZx/dmqWvoT6lguVboGEwW668o9WMtelSbD0xyWu38++rqA==",
"path": "microsoft.win32.registry.accesscontrol/4.4.0-preview3-25423-02",
"hashPath": "microsoft.win32.registry.accesscontrol.4.4.0-preview3-25423-02.nupkg.sha512"
},
"Microsoft.WSMan.Management/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-o0I3mORtlzc5ixonsJFAaReXKV3BdN1uFBGMGl6cFDk6825HnLkHBfAfLhSX2UHIzHW+AWurWU4siRZpcd6kDw==",
"path": "microsoft.wsman.management/6.0.0-beta.4",
"hashPath": "microsoft.wsman.management.6.0.0-beta.4.nupkg.sha512"
},
"Microsoft.WSMan.Runtime/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-hKviXSoURslx5wdiawkS+su7XjRAJjolwnSEXohckH6XLhNiuwWQRYShUTfjn7lKlf4zksmUzc7sCNlKCmn6Eg==",
"path": "microsoft.wsman.runtime/6.0.0-beta.4",
"hashPath": "microsoft.wsman.runtime.6.0.0-beta.4.nupkg.sha512"
},
"NetMQ/4.0.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yGAYGVzgtKfN5tJn/iZa1XLmXog44Qo2jrJqWBT7I7SlYFvPYzIzoXeV/yMkwuq1eyWSou0lucuCcAJp6uxZOw==",
"path": "netmq/4.0.0.1",
"hashPath": "netmq.4.0.0.1.nupkg.sha512"
},
"Newtonsoft.Json/10.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wBM7i7i3U2WX0ecor4zdVGvgrwFUjuigBoHKiL+nH39fCOpCPjBY3RDqJM32edvdyTAVdjzlccHsg41+/+zpSA==",
"path": "newtonsoft.json/10.0.3",
"hashPath": "newtonsoft.json.10.0.3.nupkg.sha512"
},
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
"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-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"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-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
"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-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"path": "runtime.native.system/4.3.0",
"hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
},
"runtime.native.System.Data.SqlClient.sni/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WvatIDQ9X8Wi2f3jq7H62nd3kP9eQWgU0KhGtcr85lGk3flkVB0mJ9Bf5OFHjv/wq3WzK5AhmcwXJeYfG9V7Zw==",
"path": "runtime.native.system.data.sqlclient.sni/4.4.0-preview3-25423-02",
"hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0-preview3-25423-02.nupkg.sha512"
},
"runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"path": "runtime.native.system.io.compression/4.3.0",
"hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
},
"runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"path": "runtime.native.system.net.http/4.3.0",
"hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
"path": "runtime.native.system.security.cryptography/4.0.0",
"hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
"path": "runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"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-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
"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-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
"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-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
"path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
"hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
},
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
"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-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
"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-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
"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-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
"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-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
"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"
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5hi5rq70S2x3bjJLQ6OOSGc3ddceD5uZ592R4FIhz8Utbr9L80bk/I8lNnlvdTBDAoJ688IRitXx1M4VGEcmBw==",
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0-preview2-25312-01",
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0-preview2-25312-01.nupkg.sha512"
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-L2HCpvPi1dk0OIimJLmtQS4qzJ53rt0UtDgM3m82sw8tk9+QA38ifATNoA22T3C/Bd21DaHPIogQwM55LqWmEQ==",
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0-preview2-25312-01",
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0-preview2-25312-01.nupkg.sha512"
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0-preview2-25312-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CqarNAAvvc4RwlxWhbcKdHgg7EQBzjRLvOsdsjN1rpLvQLQWdOPyBorDwO9Ccb0ZT4VZnCg+WYkzlGXRG8k9Fg==",
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0-preview2-25312-01",
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0-preview2-25312-01.nupkg.sha512"
},
"System.AppContext/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"path": "system.appcontext/4.3.0",
"hashPath": "system.appcontext.4.3.0.nupkg.sha512"
},
"System.Buffers/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"path": "system.buffers/4.3.0",
"hashPath": "system.buffers.4.3.0.nupkg.sha512"
},
"System.Collections/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"path": "system.collections/4.3.0",
"hashPath": "system.collections.4.3.0.nupkg.sha512"
},
"System.Collections.Concurrent/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"path": "system.collections.concurrent/4.3.0",
"hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
},
"System.Collections.Immutable/1.3.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==",
"path": "system.collections.immutable/1.3.1",
"hashPath": "system.collections.immutable.1.3.1.nupkg.sha512"
},
"System.Collections.NonGeneric/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"path": "system.collections.nongeneric/4.3.0",
"hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
},
"System.Collections.Specialized/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"path": "system.collections.specialized/4.3.0",
"hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
},
"System.ComponentModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"path": "system.componentmodel/4.3.0",
"hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
},
"System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"path": "system.componentmodel.primitives/4.3.0",
"hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
},
"System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"path": "system.componentmodel.typeconverter/4.3.0",
"hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
},
"System.Console/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"path": "system.console/4.3.0",
"hashPath": "system.console.4.3.0.nupkg.sha512"
},
"System.Data.SqlClient/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KmkuXPVtTK81lcAKkZHDFwCzLJcWPbQNi1TVEyE8TJBHx3nPX4efJ1dozczOmVpn6hU7vpDQc+K9OuL3wJVgbA==",
"path": "system.data.sqlclient/4.4.0-preview3-25423-02",
"hashPath": "system.data.sqlclient.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Diagnostics.Debug/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"path": "system.diagnostics.debug/4.3.0",
"hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qRamjdAGCXMHvu/j5YYcEYAdCeP+gq1DPB333kf0KhX6j6YK0ROORqQqKklI2ICPavyYNyc2Wqm11HjxAUhzIg==",
"path": "system.diagnostics.diagnosticsource/4.0.0",
"hashPath": "system.diagnostics.diagnosticsource.4.0.0.nupkg.sha512"
},
"System.Diagnostics.FileVersionInfo/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
"path": "system.diagnostics.fileversioninfo/4.3.0",
"hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512"
},
"System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"path": "system.diagnostics.stacktrace/4.3.0",
"hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tools/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"path": "system.diagnostics.tools/4.3.0",
"hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
},
"System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"path": "system.diagnostics.tracing/4.3.0",
"hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
},
"System.Dynamic.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"path": "system.dynamic.runtime/4.3.0",
"hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
},
"System.Globalization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"path": "system.globalization/4.3.0",
"hashPath": "system.globalization.4.3.0.nupkg.sha512"
},
"System.Globalization.Calendars/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"path": "system.globalization.calendars/4.3.0",
"hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
},
"System.Globalization.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"path": "system.globalization.extensions/4.3.0",
"hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
},
"System.IO/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"path": "system.io/4.3.0",
"hashPath": "system.io.4.3.0.nupkg.sha512"
},
"System.IO.Compression/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"path": "system.io.compression/4.3.0",
"hashPath": "system.io.compression.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"path": "system.io.filesystem/4.3.0",
"hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.AccessControl/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-B2LrTxqRTffy2SIeHm6eu9II9Db07CqSf9mJpa+lny+pDoODwIVeIhfWRhkBfe20qGBYdVp38QYqHneIsRnKbA==",
"path": "system.io.filesystem.accesscontrol/4.4.0-preview3-25423-02",
"hashPath": "system.io.filesystem.accesscontrol.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"path": "system.io.filesystem.primitives/4.3.0",
"hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
},
"System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"path": "system.io.filesystem.watcher/4.3.0",
"hashPath": "system.io.filesystem.watcher.4.3.0.nupkg.sha512"
},
"System.IO.Packaging/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k2l3ifq62isuhlM9WBDrPESVxvlujhnWR+abYMAJBiMt79FZz9bTH1z8XOP5uLEqqKHQGDaRV9Jxcfrvvj5dGQ==",
"path": "system.io.packaging/4.4.0-preview3-25423-02",
"hashPath": "system.io.packaging.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Linq/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"path": "system.linq/4.3.0",
"hashPath": "system.linq.4.3.0.nupkg.sha512"
},
"System.Linq.Expressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"path": "system.linq.expressions/4.3.0",
"hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
},
"System.Management.Automation/6.0.0-beta.4": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+LhO+S/14rvgeuSI+XDpVHtJHCETBKoUImYEMX6UO4Wq9d4St0h8Re9C0Vwnel/nOqiPMNPX4+dIhSYrdXEXTA==",
"path": "system.management.automation/6.0.0-beta.4",
"hashPath": "system.management.automation.6.0.0-beta.4.nupkg.sha512"
},
"System.Net.Http/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-XENdnQLdnQ8gCYQMtLIs75J4jkwW/NlSwX1eWNnT5KyDVqxNOe7TWBurybDOZtd8mC11Eav7nM3r0Jeh2MEywQ==",
"path": "system.net.http/4.1.0",
"hashPath": "system.net.http.4.1.0.nupkg.sha512"
},
"System.Net.Http.WinHttpHandler/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WW+PGoweSs4itsFy1oD9s+srkB+FggTNTmH/CN3mJXoKIwAALL9QaEx6F/YeNl+N491fNB1itV9y0CUGLBQBYw==",
"path": "system.net.http.winhttphandler/4.4.0-preview3-25423-02",
"hashPath": "system.net.http.winhttphandler.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Net.NameResolution/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-V3oJzrBKQHfaH78HVwl0VCFuZWmL8rrLeSy2RjMo7ZNJowbcDw/sKOPZl2vi5ebH8X7QsiyTVyBV3ssa3m8J8g==",
"path": "system.net.nameresolution/4.0.0",
"hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
},
"System.Net.NetworkInformation/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
"path": "system.net.networkinformation/4.1.0",
"hashPath": "system.net.networkinformation.4.1.0.nupkg.sha512"
},
"System.Net.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"path": "system.net.primitives/4.3.0",
"hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
},
"System.Net.Sockets/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Pf3nO/sLrFlKIOSZdAaLsGEkDZBFjNzVj0lnuGTQeIea+gi3g9ef8iUyb9rBPVg1672rP+eweycmM74EF8WPHw==",
"path": "system.net.sockets/4.1.0",
"hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
},
"System.ObjectModel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"path": "system.objectmodel/4.3.0",
"hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
},
"System.Private.DataContractSerialization/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
"path": "system.private.datacontractserialization/4.3.0",
"hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
},
"System.Private.ServiceModel/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-j5TKwZu4LsCLaFY3K2ThyqQT26lALbGZUe2rl+SJg54Pdoew1uVE0RlY10K/aEnAwPs8JiWm2K/wSWxQ3BSiOQ==",
"path": "system.private.servicemodel/4.4.0-preview3-25423-01",
"hashPath": "system.private.servicemodel.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.Reflection/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"path": "system.reflection/4.3.0",
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
},
"System.Reflection.DispatchProxy/4.4.0-preview2-25405-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UUA5n14qeWFp0Jk2QfptrFSgoh8n7D3PFFmWFPGtOJoUmcx4civUMvgdCPK0fQHZoUZcVicnOOEKfmfzsHoRVw==",
"path": "system.reflection.dispatchproxy/4.4.0-preview2-25405-01",
"hashPath": "system.reflection.dispatchproxy.4.4.0-preview2-25405-01.nupkg.sha512"
},
"System.Reflection.Emit/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"path": "system.reflection.emit/4.3.0",
"hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"path": "system.reflection.emit.ilgeneration/4.3.0",
"hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"path": "system.reflection.emit.lightweight/4.3.0",
"hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
},
"System.Reflection.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"path": "system.reflection.extensions/4.3.0",
"hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
},
"System.Reflection.Metadata/1.4.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==",
"path": "system.reflection.metadata/1.4.2",
"hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512"
},
"System.Reflection.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"path": "system.reflection.primitives/4.3.0",
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"path": "system.reflection.typeextensions/4.3.0",
"hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"path": "system.resources.resourcemanager/4.3.0",
"hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
},
"System.Runtime/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"path": "system.runtime/4.3.0",
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.4.0-preview2-25405-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Y/GimlNpKmT6cJvN/q7Q6cKt9u32WgKigSqRXYEVQcaoE3V9ciDt/ScmcjGzBxt5kCggUTcbD2PIJfYingTpdQ==",
"path": "system.runtime.compilerservices.unsafe/4.4.0-preview2-25405-01",
"hashPath": "system.runtime.compilerservices.unsafe.4.4.0-preview2-25405-01.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-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"path": "system.runtime.extensions/4.3.0",
"hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
},
"System.Runtime.Handles/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"path": "system.runtime.handles/4.3.0",
"hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
},
"System.Runtime.InteropServices/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"path": "system.runtime.interopservices/4.3.0",
"hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
},
"System.Runtime.Loader/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ckNbxRJ+bOZwcw7NQAdTr/hpDomMS39Kzm3RdH8Ei6TAKPCLBCfa1FVLthzElCzgiki/TFJ+F7Xhg3asPBLgHw==",
"path": "system.runtime.loader/4.0.0",
"hashPath": "system.runtime.loader.4.0.0.nupkg.sha512"
},
"System.Runtime.Numerics/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"path": "system.runtime.numerics/4.3.0",
"hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Formatters/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
"path": "system.runtime.serialization.formatters/4.3.0",
"hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
},
"System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"path": "system.runtime.serialization.primitives/4.3.0",
"hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
},
"System.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.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-HZomr2Rdgpz9R+B58JcziT70BdZPJow2D392tCtLzeEcJ6mdYWJszTXA1UGKCs0WkKW60KCDUBjpaNtXIhEDGA==",
"path": "system.security.accesscontrol/4.4.0-preview3-25423-02",
"hashPath": "system.security.accesscontrol.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"path": "system.security.cryptography.algorithms/4.3.0",
"hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"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-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"path": "system.security.cryptography.csp/4.3.0",
"hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"path": "system.security.cryptography.encoding/4.3.0",
"hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"path": "system.security.cryptography.openssl/4.3.0",
"hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.Pkcs/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JFhzohTw9ttf1rEmH5z8Zr6xYdHUFu/L0lFPdMr+hETz9vkZFsVmdr+HeORB2X7rlaPjHcC1B5iPIzLjONEYiA==",
"path": "system.security.cryptography.pkcs/4.4.0-preview3-25423-02",
"hashPath": "system.security.cryptography.pkcs.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"path": "system.security.cryptography.primitives/4.3.0",
"hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
},
"System.Security.Cryptography.X509Certificates/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"path": "system.security.cryptography.x509certificates/4.3.0",
"hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CZXzPgVSNDxZM9Ll4QSa12nH2K155A+WlcJY5ShlcjdFO9yshpO2qucmoX3It3nbbFEBYpdVEzovesknt1OIbw==",
"path": "system.security.principal.windows/4.4.0-preview3-25423-02",
"hashPath": "system.security.principal.windows.4.4.0-preview3-25423-02.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.ServiceModel.Duplex/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yBbKlmbP1QgyXzQgUrXASgsS7IrJfUCD2PO6ynSbcEYvzMbWSNjmp967ZvDzolyZ9aSLoNshVNltOUR9nmJ7YA==",
"path": "system.servicemodel.duplex/4.4.0-preview3-25423-01",
"hashPath": "system.servicemodel.duplex.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.ServiceModel.Http/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tWGwA0QXcAIt3bqbHpSBzEKnkQ1dvKt4Mb2RLWffZ+IE8B7v58QY1sATvZRstJKTjKD+yhLUEHq17Xw92s3grQ==",
"path": "system.servicemodel.http/4.4.0-preview3-25423-01",
"hashPath": "system.servicemodel.http.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.ServiceModel.NetTcp/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YW4nd8MSGtIFPFserRmxmJjevpLGHFF3bLdf1MYjQk6XjEulng+FVuCeU1IZGvOYK3u9kyqTxHD/S4FlpGKsSg==",
"path": "system.servicemodel.nettcp/4.4.0-preview3-25423-01",
"hashPath": "system.servicemodel.nettcp.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.ServiceModel.Primitives/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MMZGy6JABYWZWKRnXiWy7Ipr1bt01Lag9p2i8kYt0c7kpmsm2suEgmAFUdO6kOM95Pou5EIaltpHjxvHYtxGvA==",
"path": "system.servicemodel.primitives/4.4.0-preview3-25423-01",
"hashPath": "system.servicemodel.primitives.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.ServiceModel.Security/4.4.0-preview3-25423-01": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Hrv7BVtTPduBwGxJhtrm0xh6/hTczKsa8gXtsXJ//87b7vBHxDo0QXqBB6FWj2cGMYKuWUz6w8wWn/k85ilDzw==",
"path": "system.servicemodel.security/4.4.0-preview3-25423-01",
"hashPath": "system.servicemodel.security.4.4.0-preview3-25423-01.nupkg.sha512"
},
"System.ServiceProcess.ServiceController/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BKG6MJSxiccG6LWlBhGRwz5nW0ucP43ZEAWX873mySHNh890M0tSSV6IYmKYGb5EvYrumyRLc/S1cdam59eZTA==",
"path": "system.serviceprocess.servicecontroller/4.4.0-preview3-25423-02",
"hashPath": "system.serviceprocess.servicecontroller.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Text.Encoding/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"path": "system.text.encoding/4.3.0",
"hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5W2MfvdGRq8BtGw0Z5bvzYsLyVFg3UunzDtSO3Qc6t+Cae7sCL0zlRS2sdAhFnlP2YDXdrFUzzCw41X4/wkehg==",
"path": "system.text.encoding.codepages/4.4.0-preview3-25423-02",
"hashPath": "system.text.encoding.codepages.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"path": "system.text.encoding.extensions/4.3.0",
"hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
},
"System.Text.Encodings.Web/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NJIC6cL92pMQkh13JHZWby1A8u9IPTazvY2ZmttjLWUPnzYInojzjfsXFHY6ozvHjjNGyw8wZ+S/MeDC2hWtDA==",
"path": "system.text.encodings.web/4.4.0-preview3-25423-02",
"hashPath": "system.text.encodings.web.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Text.RegularExpressions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"path": "system.text.regularexpressions/4.3.0",
"hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
},
"System.Threading/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"path": "system.threading/4.3.0",
"hashPath": "system.threading.4.3.0.nupkg.sha512"
},
"System.Threading.AccessControl/4.4.0-preview3-25423-02": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gvKluEmTY/e0F18ugRZ8IX5w0P+oj6V56oaJ+f5cgFGIWCd989+MSsMVTm1v8zEe88CranIqNc1ntltfbU0TEA==",
"path": "system.threading.accesscontrol/4.4.0-preview3-25423-02",
"hashPath": "system.threading.accesscontrol.4.4.0-preview3-25423-02.nupkg.sha512"
},
"System.Threading.Overlapped/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"path": "system.threading.overlapped/4.3.0",
"hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"path": "system.threading.tasks/4.3.0",
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"path": "system.threading.tasks.extensions/4.3.0",
"hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
},
"System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-J3wL8sxXgwn7h8X3+toyYtyUF1ZLv392EfHbpTAF1YanCX4vQRrsZoYvDeyp6LKneMY0U8GJ3ANuxeyeGe4ZMg==",
"path": "system.threading.tasks.parallel/4.3.0",
"hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
},
"System.Threading.Thread/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"path": "system.threading.thread/4.3.0",
"hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
},
"System.Threading.ThreadPool/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"path": "system.threading.threadpool/4.3.0",
"hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
},
"System.ValueTuple/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
"path": "system.valuetuple/4.3.0",
"hashPath": "system.valuetuple.4.3.0.nupkg.sha512"
},
"System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"path": "system.xml.readerwriter/4.3.0",
"hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
},
"System.Xml.XDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"path": "system.xml.xdocument/4.3.0",
"hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
"path": "system.xml.xmldocument/4.3.0",
"hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
},
"System.Xml.XmlSerializer/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
"path": "system.xml.xmlserializer/4.3.0",
"hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
},
"System.Xml.XPath/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
"path": "system.xml.xpath/4.3.0",
"hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
},
"System.Xml.XPath.XDocument/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
"path": "system.xml.xpath.xdocument/4.3.0",
"hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
},
"Jupyter-Kernel/1.0.0-beta-5": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}
md5: 3F6504CF62B33CE62E9EA4B9DBB3A1E8 | sha1: EB50B66BFBAF0F58830A2FA4FE4F867B5009E2A4 | sha256: C4110370FEE0A85CDE3AACFD604E6EE6B4FED1D28AEBAE3A30A323FBC95E6968 | sha512: 08A4560161117FF7F24888703E40432DB9CF01720D68403CCD4DEC8C66EA2599A4B7234D78A2BA4F251143474DF373E3885CF59D1F8B82A597302AD9F004149E
{
"runtimeOptions": {
"tfm": "netcoreapp2.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.0.0-preview3-25426-01"
}
}
}
md5: F0137BDC270F8EDF05290CB71F19C78A | sha1: E414C248FAA036F57ACCCD767B2579100553EE8A | sha256: BD51E4FEEC590D4F70036650A42C0F7BB26E9735888977A12CEA0293BFEAB858 | sha512: 76981C1D7FA8609A9B590B28AD9D38D60D7C8FA3550533F76CDCAA9B4FC258C67A88F832DFACA780C9288017731AF871297BBE61E8E6BF936EA54251121A0A93
md5: 98851FEF8D22B3AB476D8BEEFA7D2E19 | sha1: 44D182AF8C702844E57803F2F69911D844D203AE | sha256: 70DE95DEAE3F404C4EE1DE6C2FA2BEA3FACC38D66F81E4854964C59B369979DD | sha512: 2763824C89C4D62F5E172552DE143603D1F51A7E532E8E365E631717A9ECE011FC50E61608DA1B166E995F8F7332B3407FDAC06C598E192DF68EF1FAE0D2A76A
md5: 335A40EA64BA15D7268AFA722424A79A | sha1: C11938770AE3439E43A782AD140D60DCAF8F73AB | sha256: 72F548C63FBB0BB7BE2D8F13AD091752B8C9989B318EADB1291F0EDE222C6422 | sha512: 79D359A4A919CFAA7E140F2AC76BF32EDF0C3C045603A7611C6D6FCF696A067C80763FAC93F061068BD2B971232B217F9301D743F86E0EA4C225A928E8BCC5A9
md5: 9B053704864B3E9A3A246D8D27331B4A | sha1: A50DCCD948075BAAEB0CB1FFBF5D7E7380EF7059 | sha256: F268590CBF0BF838015D61934EC42D0C479888D0175934F3AFE275D16CE81537 | sha512: 36A7518DA5770EEA26107CADFAD2A27C68D08C9189C517F9B26C7B0D31E1AED73DADD6BA7B688E3D493FFD7C703431FF8555B9F217EE040099A520C1A67E8812
md5: D0A6BE05CB3591B8BDDC9B43A420DE04 | sha1: 379F1F334CF671139CBA4A82FF2B6D6B1D521B76 | sha256: 263B6D76A613A8B98578169D8E9AE20E9239F9E6B43F26302C5593DB870F0780 | sha512: 369192D91A5882CA645C19D22A20FEB11949499A0903DFDE423CCC179A49E3A3EA8B09ACA5F1FEE46742319CE74FD6CF975A05C65F7A0DD276A32F4AF6C4373C
md5: FD13229F493D7611F4FE6D6EFF46D277 | sha1: BCA147DC0D15AD9660D61F92D0958A2D32C6FD58 | sha256: 0E90104F6D308F12F7B72854D3F2883A287DCD64D4DC8B415C3B770D3DF6EC3B | sha512: 754D13023D0FDE804D25B8CE43F8E1F16AF70CF7A1120189F628F6BE1DCEFEAD28222B35FB2BCC51FA789F875112EF8C0D5940B67D4109FB22744D0C712C5523
md5: 7CFA18393C116A272242017568B000AC | sha1: 0E36DB39F5D951906AE8CF325474878D69E879F7 | sha256: DCC27B0C570A48D7CBC0CEA3F323196E2AD65A053A1E17B747DB5917CEE6EFE1 | sha512: 634D516640D3B4E9B6CD8BAC10710B3D65BFFF6534A8CDB5BB39C38B5602DD10E0407FFE9C9A383F0893C1F6603E6A7C8DFA553BB82267BD95F60A3FA935F355
md5: DD36DB4A0D576F1DFC300221D73D5F43 | sha1: E76191018C26EAAE797900D458D66A6448949970 | sha256: 38959D773598902E1988ED8DC0789359A01CAE6C0374B8BC26E21B54854992B4 | sha512: 032A1AF6C1E0C5EEDA035077AE172426D4B97FBA7D9E0E24209B9F74B340DCDFD93103EE49855642BDB7432BF3FEE9C62CFECCC47BBCD1DD59DAC95C0B042735
md5: B51A07A666E1AEBBF7E0D701A33E21F7 | sha1: 6145DDA69A1D5278EB25A4A10917BF4C55B8FB17 | sha256: AED2970B88F336ED5F0BAD31EA2A0ACE4B13FA31A183CC13CD012E0A588796BE | sha512: 174701106D2604192CB37F0F89A29324B4125184F2FBEBE1A21505CAB90EBA35E9D9F074A217C397D570C6D033A1D5E6EB9B8724EB71E7A603E7BBBE646EE328
md5: C1161029E9EDF7C2B0B0478EA86163DC | sha1: BD94BBFDC87AB8005596EEEB6FDE3B1CD9B3DA15 | sha256: 42E1847FC023129737C86B77997479C131DF698A6C2837EC1951F37BB5B44F2E | sha512: 5F31FDD6BD7ABCED24E09DFA9E2960C245547102057B6AB6B6FBFD7F2262982A4EA584E38FD42E1459CDB77BCDDD826339CBC862DF647738F88EEE2C42C881B6
md5: 7269BE6F8285736F98CC08B5074280E9 | sha1: EBD06B338BE1D522B7F2F4A339FC99E3ED1DDA8C | sha256: CB2F364769CCD4F8D855EE708F740A51362EAACD8921400A223DB26BF3740E5C | sha512: C41CF9F8AED96EE1166F5237E19B05E5F907AD8545092F71BA60B25FF65C95F21A2CF25C9F7E22800DC54928C5CF164598BA219611FEC7D0C6F6388AF28796FE
md5: 300C1D0E1DC8F6B7C6A5EA2B8D231FEE | sha1: 4DAE01657619069FA78BE5B1C7896658B68055CD | sha256: 485FCB4DDF0787177851AD15C0BBFE00434938350FC1675BF3871706E1AC51A7 | sha512: 5121BEB39D2520A20E31FBB1D6C76E67ABDAC1B29027CB7D6A1E1E759BCD972968AE518C0988ACFFFE4F6F437037748DEC1FA30E3F7D813F04F02820FA808990
md5: 8576B7F2658F55EAE5A1C5D07D03B415 | sha1: 615C9237113F2B42BFCE4A5BA96FB13F37CB1D2E | sha256: 7AE90F192DC5431BDFAD821BE4791A256E61F83625A5612049438BE556006738 | sha512: F14C7C8484DAF63EC8E1D7F56C60EC424E87F21E08014828CAC15BFF52E39090F5036B600CBE459D0E3D123599A9E1E29D02370B97A414A16463BD4D748D51AF
md5: F25E27CC569DB648F67B878A1A79EFBC | sha1: 55CA76B0BDAA26BB8B7F05FF8F0973C220ED31C9 | sha256: 3C68AC0DA76337AAB7B315B6EE69FCCF13C3777C4B99255AA9949C1D046F4BC3 | sha512: 957D9402422E4FCFCE961BC3DBDF93E46DE98963DC022320D9E799B8C14227F44A9A5BB0ABF86330D900028200C0B6AD41940A4AEE6A0E69702A325DDF95212E
md5: F117033247E1934F395926B066FD7E97 | sha1: 0CACA419C01EFB60488DE108BCF2801D4A3FBA31 | sha256: ABDC4D9D5F122086C646D26402473D929CC3E5E62C2E1AAF3850C20AB7727381 | sha512: FB5DA472AF3A19F24427BF1A1F8E41F51FBBBFA0130E7088BD5DF28798842B220638F6F01E731DC6C38276F9D23A73E48E3845E252030792A473705088357DA6
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 3F8E23AD2865388663F97AC302CD0C38 | sha1: CEA45D0876F92D59C901AD1BCA454665EA3D022E | sha256: 05E7758CC3C8E0746DA60BECBDB6D4BF647118FEE3643279D63E3443A0843C14 | sha512: 4E9B5C15E0E4B9661E3A3972CEDA4D6BA6C6AF24AC4CBE2466462B0576829DA85269EA8C6B7B91E764A4397A06CE76EFAA0E350BBA2346C08D85E61096330E01
md5: DD6515C5A98589D5F89FE7684EDF0FF0 | sha1: FA0E36515BBA7430E7AC36F2679DD08EDD19FC2E | sha256: 03BD3EDA42CFEEF27C17ABE417CAF413AD5DEE101D5820FB260FF98ABCA113B7 | sha512: AFE5C0D5AB397DC72456D65AFDB9267288A9E97A72CF5B59D06D3B1327B209F9B4C4BCC15D29B0D32D27AE90AF7397E03F4E651AC38E6C1C91C40322A14FCB7C
md5: 25741FAF84DE44D4C3621CAC7825FBCC | sha1: D4D381AA3DA346AA039C223413D3FA8022731C54 | sha256: 89EB73D8FC048B47AF6E45B96113100D8A6913601EFC0303AD2A19AE56EBE97A | sha512: 7F8B8D86D03AC07A25E0B8335AAE0B1CB5FEF7F633BD530DE2D76068AB0A9BA42575F1D8F4E48FC2BA8D2A1B39364E9FA5A5A332D34ED7A1EB4E19D4749AE48C
md5: 76043EE8C440B275D389CF9D4F26B04E | sha1: 2D41576925D767F2680675DD57D503EB7072C642 | sha256: 14E61C9B4ED3E745B77530BC99E5DB07820BB92ADC4AEB0CDCD9AC4FA7D2C2AA | sha512: 8B61ACF732CC281F152ACFCC7DE00294A9DCF3BF6A6EB9669344825B3A210865AE880FF0C96F5698595BE3314922365210A365F054C1ADD5A9C7BA6BC7430F72
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 33544C4C601ABAA5ECE9F28604B91DE2 | sha1: 61C5EDC17D109285219E3F422EE9F61B06C762FF | sha256: 6AE9970129D08DCD89065A30EDC9D020BCDA0C5BE2BB6036A7C5ACC87846E706 | sha512: 6E3013DD563EEBD3C50297465F7118272FB730F900A715BA61553A9347BB1BBA02800427C1117CF10354849A37D9FA6B58BF9241B9E1F5C3EA5A1AB9A8C92A65
md5: B51277AAECD487D974EAA5EFDB9127BF | sha1: CFCF79897D2E3E5540ECE8F18554B831A8BA6EDB | sha256: 8E3957736A5AAC08608DAADAA62FEA8B8F931A5973E007DF65C230E34F75515F | sha512: 4A13FA13077CE88F67380BE4123414E445DEE84F118C3AAE48E9E2B6C3EE9E8EF65BC69EDABD6D9BFE1B4F9C076C7B0CFF7FDF3C10F240058D10C5C2DA9A6C8F
md5: 781572BC07C8814F3643F43B5678539B | sha1: 30AD1208C6E311D0702D65D1B087285B6A124649 | sha256: EDAD3FD958AB852D28E259FF0EA9F59A7493D2DB978120DEF03E1A85E5CA66ED | sha512: F0017AC5170EAE90E73878314C2F675776B2F20E24AC38804AB6428F4A9A8B7AC32C6C0047CC27576277C0F156F55744D501B1E016D07C1D7D1E570789C69294
md5: 463A64D5AD96002D16C2BE36514A07F7 | sha1: EB3F17A24718A12D2A6834E2887B3D912060CEAE | sha256: 7124A56F420EA1D733CC5D68A5B9CD1ABB454F2AA41BEBA4FAC45C87FB254991 | sha512: 1C526A087088199C7FA6AE600BC47E2295721C0200EFD8151D6CCE6AC39233985B6FCFD4ED1C269DF51D199172994F17593D192A2A1EC802DCE395EDCF817B38
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 3F8E23AD2865388663F97AC302CD0C38 | sha1: CEA45D0876F92D59C901AD1BCA454665EA3D022E | sha256: 05E7758CC3C8E0746DA60BECBDB6D4BF647118FEE3643279D63E3443A0843C14 | sha512: 4E9B5C15E0E4B9661E3A3972CEDA4D6BA6C6AF24AC4CBE2466462B0576829DA85269EA8C6B7B91E764A4397A06CE76EFAA0E350BBA2346C08D85E61096330E01
md5: 349DFA82596C8140AB1B49F7C1E1EDF3 | sha1: F424EC00D085E468D33431D5498A4F3D3401495B | sha256: 6F1C5E90734653D8BA16B0E297B035FA684AB2E1960182C69C7B167E73DD8EAF | sha512: F7D39F566CB3C1B9FB31D0373F1AF97BC7929180FB21B23120FF9414027E24CB86DE7584F0BEC22A98A43DB0559D3F4E50A554C69DEACAEA2E622D11DF78BFBA
md5: 58C531635CA0B9FD96787DF1514EA825 | sha1: 5E555CCD0AA083C4D7C5070FE23918013C186C68 | sha256: 78440814858456975D0090C4CAD7E82951C924DEA2510E32B256121E37A996F2 | sha512: 2BADA3E2DAF2B672C386648C7DA93DF7298212912340EF12BD284FE32C9C9DAB9EAC1381D7D5C32D9205630DD446E5C39C8EFFFB4A4D940629B99FEBC88F3FE9
md5: 9AB5D8697287EB2D3839413A234CAA0C | sha1: CB046ACF7A01491A1FBD8574EF97EEE1B20A0DDA | sha256: 1D46F002DD7AE88A0A40F26431392BC4B06F1E037EBC6384C7CBC6DB5916AE9B | sha512: 23A785AD77F3AA99EB7CB64CF12FE2B54CA5144D51DE8EA3CA90B3CC4F247E409FE0B4D8595C2C3B9ED7D80BBAA0A632306F7DD181547C596D6C8CF76CBF1070
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 33544C4C601ABAA5ECE9F28604B91DE2 | sha1: 61C5EDC17D109285219E3F422EE9F61B06C762FF | sha256: 6AE9970129D08DCD89065A30EDC9D020BCDA0C5BE2BB6036A7C5ACC87846E706 | sha512: 6E3013DD563EEBD3C50297465F7118272FB730F900A715BA61553A9347BB1BBA02800427C1117CF10354849A37D9FA6B58BF9241B9E1F5C3EA5A1AB9A8C92A65
md5: BF5E1F009062C62776B9C1BFA1AAFE96 | sha1: 911E8119087C6E97DDCF28D0D906659C41FA01D8 | sha256: 4359A7B69ADB1AEE50BFD983C5B51CA7E7E381D4D643C7FCCF315C7F5AC25C0D | sha512: 35DDC5DBB508D650A9BE3C010D75A84B1BE1A9989D5B427246148551E4AA513453DA83CF4F548627110AD1280DE460F7B98431C76A8022943D043072B423FFAE
md5: AF1FCD291F64BBB4105BD1A7EA463730 | sha1: AAC1962DCFA24F6544D03E6AA60BE20DA08F937A | sha256: 8370307DECC248C4B96BC06B4E7379E542AC954434E876EE04BE6BB461E74DBC | sha512: C949D710EDFEBB79B9B7934C8C70A03BB791640F30DF7DB732E7C29AE9FBC0E3B4F35B7CB272C83D4AF0C39804E56A693C3B18AC921474DE3E724BFAF70995D4
md5: C7AF267406FE127230247A42390BD660 | sha1: E1B27D7511B67A649C44097DC3D012A050FD297B | sha256: C0A22F070079CE8A4C3DFFF9215C2227D345D4545AD14D6EC353BE74ACC0907F | sha512: 60360B7284E302BAC9B35B92064808E9D2B558FCBD7AEB2A7E03D7F95C90FD3A46934A5EFA21ACF31D12DFBC97F304862C56A2215153A9ECFB238EF8AB6C256B
md5: 2465953D54076504A945202CFAB77885 | sha1: 6047F894AA62FC74AE58435202633CBB7B995564 | sha256: F04C71225466470FBCC38D0D532CA7D61B7FCCBEDEA0A0CCAB5101138303F09D | sha512: DE6AA3CF5FE9D33725240EBBA241EB9FD6A09789ECDF2C4163598658768541D83485A42CD40EF1F2948F54C458F4FD3D4FC97F09400BBC36E866FACB26486627
md5: 0B154DFB12D7FC6AF4D3A5D537E8B082 | sha1: 37037DDF8B720AB19B277E203E477CC74CB2803A | sha256: 553E18262F7C4C40589E83B5E1B3A724BF0ACA91FF86B554323B63152AB158D6 | sha512: 3F6D6E746C7F9975581E25F2E3CCACA39F0D06A59366E76A5373A97BD46C9C89E44EAC8CF5DEF039FCAC11B9AFCF0E38AC3AD1A5E780C67E88CFCF1E5906EF26
md5: 072A2EC47C34C6D8C0B74E4114582D72 | sha1: 77EA726C61965A57E319F6B52C2F0EBEE7351EA0 | sha256: 119A91F90C82DDBA07711B01CADF02AEF454A0D8DCEF33C94F7087488AEE7702 | sha512: 261C53A0B3B977E56FD6BC652799493C5B89F48FA504107A199A6AAA289D647A05100A632FD899A2773C12F89C5B035CF46EBA6A8A90D5DD8F88C9C779AAF495
md5: 2C67E1F15127C15CD4C2451163E4096B | sha1: 3F98C3F4C066BBCD088657869C0C8D3CF7672B89 | sha256: 6D4FC205AAE235BC7A470D73F6F355EC5DFD2E4CD968ADB0EE8E3291CEBA9722 | sha512: 3B7A12AE83455ED69A4964C487E1DBC15D1C51FB21B63CF439EDCD5E4EB28B8D0CDD1A4CFD9F3771FCAD6FBA74D04D2A6A64B2BB3EC5AC04AD38D32AB72EED03
md5: 00CC6B845B6482E275C3FE69CCB214AA | sha1: CE427577C43F1A0B2CE84D4A844AA201FE5954B7 | sha256: 9D53DAF0A0D52B8871BF7D6B1F5D4A0D1FA863A61B49B8F96F4D2073B01DF763 | sha512: D10DED47860249EECF3410826A4098413D7414B9B25179EA99BAAA0D17AD3FC2A9142396784069228A2593F2BE517A04D3A16504D99694E2361D6AF705F4D91C
md5: 33F182E692D4200896934E9A2C31356F | sha1: E7E6D5CC4F4835C37BCA84C837218742E9628F66 | sha256: A1CFB745DE885965BBD8407BE9787A42328A7F898A48BE75D858B9D195F903C7 | sha512: C8892702F9A1F89CC362C4BEF97C40F29A697EA92CC031889B71049F5D156A6C29CE9984BE9429F5583CB2BCD7427C7632C34518BCE5003BFF75BF307E609888
md5: 7E0E6951999DA2216C6236BDB6388F58 | sha1: 07A0E46FD91A64F4D2CB8EB1BC4A206882EBA529 | sha256: 5AE1314A4E16490D59D5B88882CF8A80DEC26DAE7A5F1CEAD349B931AD8668D7 | sha512: 0E167FBE4D03C45763E1010E7ADE62CB7E18569E1877C13199F716772560A821A0B7433A9A517C918E1E53D0D5FDB53887D20B84EB2C0412DAA63D641131170F
md5: 5381E9E465A92D439DD97635ECA437B6 | sha1: 7BA3D054D55A7AA94A60690F63B3D45AE9317F71 | sha256: CD6E0A1D442211F7EFED553ACD594882E767FA1BDD486F276B23CD3607B8311D | sha512: 9EA9FD387543CB699E249E1258DF1579EF1C59AE07E7320A2309590CF23232EF470D229433B0D79BD8582F2FD9C7403B81A5BB517588D3CEB3C7785E587DE76F
md5: 33544C4C601ABAA5ECE9F28604B91DE2 | sha1: 61C5EDC17D109285219E3F422EE9F61B06C762FF | sha256: 6AE9970129D08DCD89065A30EDC9D020BCDA0C5BE2BB6036A7C5ACC87846E706 | sha512: 6E3013DD563EEBD3C50297465F7118272FB730F900A715BA61553A9347BB1BBA02800427C1117CF10354849A37D9FA6B58BF9241B9E1F5C3EA5A1AB9A8C92A65
md5: DA00B29BEC9F092583A6CAD120FD9E00 | sha1: 764AC7A75B0DE0945148F0F24F15541691C5CC1D | sha256: 8986755310509CD454DB1331F9AD308C4A60AA8B8A3BF5170C8391E627B5C387 | sha512: 8F83884483B388F0BBEFD980D5772E3021D76D312A20DDC3CA923F2AAF74C2AAAADF46A4A4BA09B7C3512CC6B1790FED582AC9CFD96B15EF14F0FC222DC83250
md5: 21509C395C5119468D21B6E70CFEA93F | sha1: 4AC96728D6623C6BB8461754C6D73505135DCB28 | sha256: CC380FACCAA92B110DD398F610FE5C837886A9F922C52BC79B401311A741C273 | sha512: 1AB4383A604146598C21B4D6B53080C7DDC9FB4FB1EE9BF9243B9A684051A1C93D7553EAAFA48B00F427469BC1B7BC7997ABE07DCBEA79623F6D85EB8BE886D5
md5: BE75F1219837728992ED2985BF261937 | sha1: 23033545651AD04D9E34064FA96969BBED8223E6 | sha256: 934370E358A490226824F3BA3836152DD1B2336E11F10E7D21A3DAB381615425 | sha512: 137E8CBFFFEC27D0C1E818F9CD0DA50DC08E73E01BA7BA43300DBB9FB1B29D7DC33F5080B3422E34ED3ADC8E5398B65F9358AAB3997A1981E357F8B9C2CFFF5F
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 3F8E23AD2865388663F97AC302CD0C38 | sha1: CEA45D0876F92D59C901AD1BCA454665EA3D022E | sha256: 05E7758CC3C8E0746DA60BECBDB6D4BF647118FEE3643279D63E3443A0843C14 | sha512: 4E9B5C15E0E4B9661E3A3972CEDA4D6BA6C6AF24AC4CBE2466462B0576829DA85269EA8C6B7B91E764A4397A06CE76EFAA0E350BBA2346C08D85E61096330E01
md5: 349DFA82596C8140AB1B49F7C1E1EDF3 | sha1: F424EC00D085E468D33431D5498A4F3D3401495B | sha256: 6F1C5E90734653D8BA16B0E297B035FA684AB2E1960182C69C7B167E73DD8EAF | sha512: F7D39F566CB3C1B9FB31D0373F1AF97BC7929180FB21B23120FF9414027E24CB86DE7584F0BEC22A98A43DB0559D3F4E50A554C69DEACAEA2E622D11DF78BFBA
md5: 58C531635CA0B9FD96787DF1514EA825 | sha1: 5E555CCD0AA083C4D7C5070FE23918013C186C68 | sha256: 78440814858456975D0090C4CAD7E82951C924DEA2510E32B256121E37A996F2 | sha512: 2BADA3E2DAF2B672C386648C7DA93DF7298212912340EF12BD284FE32C9C9DAB9EAC1381D7D5C32D9205630DD446E5C39C8EFFFB4A4D940629B99FEBC88F3FE9
md5: 9AB5D8697287EB2D3839413A234CAA0C | sha1: CB046ACF7A01491A1FBD8574EF97EEE1B20A0DDA | sha256: 1D46F002DD7AE88A0A40F26431392BC4B06F1E037EBC6384C7CBC6DB5916AE9B | sha512: 23A785AD77F3AA99EB7CB64CF12FE2B54CA5144D51DE8EA3CA90B3CC4F247E409FE0B4D8595C2C3B9ED7D80BBAA0A632306F7DD181547C596D6C8CF76CBF1070
md5: D5353435FCCA02E8B4CB10F57AA54322 | sha1: C8115C9B0F8DC142B65CFEEB80810A2C040F95F0 | sha256: 7F0E720E5A474F2BA2026538AAC83D6D745881C2C8C4874B9C927A26D60EF903 | sha512: 65F8746E5EC75E9A073F1BA12E6EE5E55A5E94EF82A0C42E2BB7E8BD64181BBB7D668712A81A34AB6AA2DE1D312500635FE3FD3E582076E538C48FD8C1A11890
md5: 33544C4C601ABAA5ECE9F28604B91DE2 | sha1: 61C5EDC17D109285219E3F422EE9F61B06C762FF | sha256: 6AE9970129D08DCD89065A30EDC9D020BCDA0C5BE2BB6036A7C5ACC87846E706 | sha512: 6E3013DD563EEBD3C50297465F7118272FB730F900A715BA61553A9347BB1BBA02800427C1117CF10354849A37D9FA6B58BF9241B9E1F5C3EA5A1AB9A8C92A65
md5: B168E2A9A8CDB4F2EDD6ED1C78F94999 | sha1: B13DBDF675C2A8E1E867D826174B2637EFB645A0 | sha256: 390CDB2E7AA806ABF8D69D649CBC51CB4A490901C1FA5243E157844196A58458 | sha512: 98CD1EA15FE1436744CC4D88C3387BEE8A787C933ABD233D070B3DB7C761A6AB531ED87A95E56990EAC87849568477E29212F454729693B216159C38BF147305
md5: 2BEEAC15518BCD1F7CBD31FDF69974D6 | sha1: 5F4B7425A53AA32B4E8886479EB5E8E10EE6A2B1 | sha256: 65B913D2362B68DFC2375D09E980F156C2D57C2E9B480644EFD8EA5108871CCF | sha512: 1549AE48BDDE49AE3719EE09049A7AAECF1666B8798C3315E2650B38BABB4ED6F9593DEA1D4380616F064DA321722E08C94A1573B0736AC3A5E1C162456BCC81
md5: F373180DB1C46731345995748D6C5D50 | sha1: F03A112FA0FE0255F995D152230C8ECDD798E14E | sha256: D7935EFD192CA73114E27DC89AA7CBCA267A23A9EE4BB669FC26546B69ED346E | sha512: 23680E40803B10C99A22FAEF7B4F864B74EAFF5AD76E72F04DE6A0504D357F48E4756E9E79E8F4785CBCA6490195680A9A7B398BE71101BD2EC41E694539685A
md5: A91C9F2CB7046C8FF17DE7B3F3F888D3 | sha1: BAC82B3A3927A927E07BD0194FC88B454407E750 | sha256: F168EDF9E705423F8389BC250CD471DB3AD83421DB16BA9E74E1F36C5B502AFB | sha512: 3733381896DDE74A3D4972B8FE404A25142656862611418D22024D6F9A1055EF099B56B053E89C2536966B5E7085A554CE6F39313F20F2569A0C911CBF01FE47
md5: 6E29A958A5CDCD649521A5B3967871E3 | sha1: 2B1A10883368D80F412115BF471B9C74A54E81A0 | sha256: 961BF3CF642FD0565600048506137D10FACD2CCEC9ACF6006B499A383DB2EFEB | sha512: D8E03A3EF4A2DE99536F865D371BC0C7583A3F73775FC327B30814823F26BE5A3724C0A3FE3E279E5F2381BAAB8D745E866FD0EA0C15EC081AD89EA75111CC54
md5: 8E412D1D1F592336A72C2B1D090D0675 | sha1: A2A3C11BA868CBAECBC2242EAFAE6222DF82E116 | sha256: 31DDFA447B0B203E2C4C4B762859C82D6D0AA4A7D6FDDD764BB95F7658A3F69C | sha512: 8F275876F3B55963A1ED4A0F62BD48AB286E69BE3F38E8C3FE8B042CDE0394A334712383BB0939867742A77D1068024C88F8836EF87DA3E30579647D587E1B89
md5: F1B71E2E1004D4CC3D9464559889DBA1 | sha1: EA04A4721C78096966D8157049ED69E09FD9DCEC | sha256: 05B63BF7DFBD74F60CC863E1DC919574324A701949C0E2C3F7883293DE8DBA1B | sha512: 84D953DEEC90E749993EDFE60C673CED861A9F0123DDE019A67A99C5DA38B097C7B5FC8C93A997CDE9AD6E5DCEFBF31335D42602815654B77F3E2B6A2EF16682
md5: 037ED85C52E7C986475B9C6A94090902 | sha1: B72EEE26E1D6B795ACC6EE170306AA4510EB500D | sha256: 956B82BEE068B06088FD62860CED971810E71FD198EFC9B54541825063CCE6E5 | sha512: A85E371462BE53E117781C7F97FBD3D2D7325A1619AF7E785C9946371807ECA7332A25952A64514E796DE36D0A947678D69C20084FA76B675FC463BEDFFE4FD6
md5: 886343DFEC9CEF3A80A4E2A41ADFD204 | sha1: AC7F2E8991F4246B43F9B9293120283446283A8C | sha256: 6F23AA2F4096A6D59D42420F0B66C54147060374AB09FBC45A54A84B7D9D6A8A | sha512: 873A2AC1C6FF3A26B26632E83E6BEFE21B97D7756CD84E33D52C073AF013A2CDA0DC3CC20694011C5AC14750CC90D1857271BAA80CCCF0A3ABC4CFB375C9FD6D
md5: 5B373D87B06833E114AEB9662FB16FE9 | sha1: 99A2070CB6DC4F73465C29DD638F9B83CDC0EB08 | sha256: 6E822C817C10EE96BFA0499DD000DFF34782EB63612022B670FE8E26E4B83767 | sha512: 8F0A4E590FE3C8C7EB69D113E46801C48D4C40FB944C0EC0E5AB17799D8DAE98E5AAC867F733D30D33462644C9D33D86710A6E224EA51E62AAA448F4447AC1C8
md5: 3732AB1D0BC82B97ABB4EB021F2B5DE2 | sha1: 79D4773AEDB9BFB3630F0A83D70DFC0259BC7D6E | sha256: 508FCA6E59AD75F4FA1DF5D83ABA0224C2AF8B6591E807D4EF46B3E22FC9F06A | sha512: BE66C57ADEB1636C0D4B6CE8ADAD7E1DB678E85AD28CFE7157E5E6DE8290519339AC1A1D5B81E315D81EFACDF534691FBAD5179F5357AF8150197511281A9223
md5: 7DD92363C5DEB09C3C0CEA55CB9139C1 | sha1: 7700B91D28744C440DED7F00D1AB72F8CA35A0A5 | sha256: A39BD7DFAC72106E67EEAAFF0B4C1712B6C33A733980D9F2AC2E0249BBC7DA19 | sha512: E6EC1F380245818F3256871A512382F73A949174598983F848AEEE2FC936C810A0406D30FFBB159620CC8B44D36E28A9876A95AAD21429133CA8EBEBD3C23637
md5: DC149CB5F100817B4D9B4E8347B1B521 | sha1: 303345EF75CC13CA27BB993531776B26828F32F2 | sha256: AF9BA8C0E0209677805CF9C7C5CE3DEB04AD8F362E330C46FF71E1912D6EC76E | sha512: 583E40194523ECD9E13AB11416D31F0431AB90DFBF09B94F389F852E5330772A6A46A21AE9429F8BCAFFD74354910B63BD899DEE5FBDC6609F53142235DB7F86
md5: F2236135878920064CBBD3CF8AAD46B9 | sha1: D3D2CE719637905DFFC617B6EE70C0A4A867D24C | sha256: 2813724E70A7366360D72133386615A72C40202981BE539C8AF49081847DFC3D | sha512: F196E8087B525BAD185DA688CE91EE07F32E7E430CB2AF17F1D733760795E405FDA604E3FB74C2EA3B86B62E3AC4BE96FD46ED23F391ABE2F869FDC079B33CBE
md5: A974C6A742B8D35638A71022451D2648 | sha1: 70C1AAC34275C893B2300954511D2B07CB1D3724 | sha256: 65823A5D0A0A115F4B2B15FF981B5977E98EB957D4B8AF1142532C5F2150E265 | sha512: 5D0721D737673EFAFBC442F9712BC79410477294B3A6BC9E4CBA8F21EB146FB430F249BE51F2022F81F17E65902E3CBF70B1425FF8EBBBB7001192DAEA8B6F4D
md5: 937109267036578D9887E1154A38AB86 | sha1: 183271349B4A936444602139FED3D222D5497182 | sha256: BDB34A9E439FAAE5AFBDAD1DC836EB4B668067FBDC23A3A9DCF9240FDCD05B27 | sha512: EE1BB46A017270A31B6AB06E1A0924DA63E2B137569079ED98D20C5286DC7C567A059671108DECE87BCAF2EDCD1B8EF07E88C3E72F28824B064AEDAB2F636232
md5: 91C2968517AA988197857476E2139EEF | sha1: 260B1713970A92982956619A6DBDFDE3C11B08A8 | sha256: DE5940F4E6DA61C01CB8576F5DAB28300D843C7FE96F5DB9AC25ADA3F3BB922F | sha512: 102584EEEAB8C5A50D4C91DC3D7DDB1F90F4B2571BB3A3F95CDBB7944DE422EA055477DE2630BE1B36561732B2C1F859B2FB42B1DB24A2AE69B8732CB01CD4EC
md5: 13F80FCDF402C82E033543988D70556D | sha1: DCC2284E454C8344DC94E1CA27D2123F4AB3B150 | sha256: 02D78A9DBFC2EAEB2A2133F53B5D1590D88E4B3D53AE9C685223231D3A1D97A0 | sha512: F118A1383C439831CDFC5B05AAD607ACEFE8645925E26B44626AA6C04A83EE53BE45BE1FDDBCFF66B5A3D42F44A9C4585458743002AE8CB354CD328D028EC289
md5: B2792F73E2AE56711D8A9609150B680B | sha1: F4E8ECCCCC92F11A5A46A1D603882397403B536E | sha256: CE336909941800B36C92EA665444E4FCD41CA84D2B270B2FD4025C96C13187B3 | sha512: A55A854311ED136D359631F7B1726101C84BD07B52FE3065410E4CEF1905276BF888BB810CDEFFCA13B4214F161C30B878646FBC990246CDA0DBF1F4A249C7A3
md5: 1802971F9FB4507028441F672FCD55B9 | sha1: EE8DA0C57D494350E55F2A0DB81A5C7C847406D7 | sha256: 0C014C4EA2883AC93696E5283F9BFC42C45A98F017E0AE48A081D604C4CC015C | sha512: 2385EF5867FF1A4696A677A0DB9A0E38F35D80E5E37DCEBDAFB7E9EB5C9A4F22ABFCAC5977D3BE7C0C26168B746CB5D43D57A64219CA0D2CC6906B5479727F3D
md5: BF5E1F009062C62776B9C1BFA1AAFE96 | sha1: 911E8119087C6E97DDCF28D0D906659C41FA01D8 | sha256: 4359A7B69ADB1AEE50BFD983C5B51CA7E7E381D4D643C7FCCF315C7F5AC25C0D | sha512: 35DDC5DBB508D650A9BE3C010D75A84B1BE1A9989D5B427246148551E4AA513453DA83CF4F548627110AD1280DE460F7B98431C76A8022943D043072B423FFAE
md5: 5387C0F4F7EEC5FBEF60E840D868F372 | sha1: ED15EF6CBBB09E554EB3DD13079E42AFE9582F6D | sha256: 24E1EA4B1CCCDB7ACAAC456A4DA6D4D635614B994EFBB73557F3DA7363C6A46A | sha512: ADBAE4F8FEFDEAF11ED0AB00FC9532F8F68EB5B89C617174FAC0D0E70C983867C62871BD330F6368F5B182056F0889B8CE8C578DE57C9C58C2C893D6F397611F
md5: 1D2658107506D702B74E9F5A537B96FB | sha1: 1A14A73F1D10A4A0ABE1A384D8F2155F89281DAE | sha256: 929C8444E898D50DA7A31507497EBE7A65FDFD171C50B8025402959D2799960C | sha512: E405FC42CE94BFED36BFAF47BD3A67D43349A22E3025AE57CEEC5C696A865D397FFA59876CDC62C8B577D49B85E08703790A61F1BD84FDC90DA7FD6B71C1F3D0
md5: 6F8D618FBAEF0190DBF76C2B621EB78A | sha1: 832F3724BF6003200C89D0A16A05898C93E5EDA4 | sha256: 06C59E107BA0A92EEC4AAF4A76B3B60BE1202D9591F3C0542C2C61A2B701BB42 | sha512: 906495339F0741027B15896258CF05F04BCEF0571E69735C66EF611C8D3CF99544BCD3E43F1457CEB419CBFFD04734491A6BFA8E494CE22E0A01BEAD4B26D938
md5: 4F405ECFCDB49051DD083F55AFEC23D9 | sha1: 6950C0092A8CC52A98E2F2A5B566CFE1B600A69F | sha256: 4C48C6C03C62207996E77F6FA6D384E97BF0F3189EB7A668A3ACB9AF220DB23C | sha512: F2B8A1327F6C0B522D885EC1AFF3A8E3E5619640412D35CA858C9A0F7D2593A56B3D8319803447A506D328AC42C38DF9F1A276EC9442A43322D5EE7C0D6E21F2
md5: 67E66BB824593742FA9DEADDFE1AD3AC | sha1: 54C7ABB4B57B09C49ACC010AA504351060E7348B | sha256: 7C271C09DB5DE90E03F7B47B125B5051D87AEAD61E076E9D0D55625B560CB555 | sha512: FFE7EB5927B25A23A3A91A32DA2CF0CE16BA65991CC28EFABC8E13A3EA2DBE1B12C5D2276DB8E90D609AE670167F85DB2FECBF54C64780B019A57B7FB797A0D0
md5: DDFA4C76360310DCE7C8E8684B621AEF | sha1: F3448925C7C137C81F3EF0A2F111A795E3C54A6B | sha256: 51E09E5457EEEE10758A4D079421D7A47D654075C4D11AC2865C1FB0E1A1C99A | sha512: D2880F3FA41BAD4AB047A4C4F282E83D652A4DE5E3759C70E14D3F248A3AA3CAEDFED62E63D945044F66E38D496B2D77273AFDD2639258377248AF5FD9A2EC3D
md5: 2C5974319705F5737C5878AE0E34C6D7 | sha1: E4A2FC40CC24F67260171A1A179540EFAFB7B7E0 | sha256: 3D06617FD13670BE267019988ACCECC939290C974A3670094A207DBF60F95C27 | sha512: 1C650D1C863C8591FC3978960FB2B18982DE9C188DB416BA480E31D8139184CDC2DDA8927C8605E3C297DDBE086801910DE6D383710C7CEC22A46B5409F7806F
md5: 9FB475CD790B62B1AE6C7ACF98EF13CD | sha1: 3F2794B2D5AECA4382A0EFBB669EF38A4B732D29 | sha256: FC285202C18EDDB1C9B52EEA8DAA79A9AFDA91010370192D55B1AA373CB503E8 | sha512: 0D73A06E6D1C2CA5961B18091EA391700128C4B28B8EE7D331DD49C5A07D577F352026F6AF70A6BF153D9DEB12EC47E9E4FD0CBC39A8966E532DB9CCED7BBEDE
md5: 980E82EF80AB48E872E72C102E151DA8 | sha1: CC2DF2EAD9F2303655CA8B66389E251D9FD81DDE | sha256: 6B0BB0C365521816E8E8BEB1B21AFD30C5161168BA4C4C6EB97818694A2D63B1 | sha512: 7B93837D4D0A61C63A021A379009476906D98BC46C543DED5F7FF623AC139912974472BE85F4AFAEFD4555391ACF333F296C47EF6B922F86EA6DF02DF286CDE0
md5: 23D50738ECF0F35072A4CC9D56DAF1CA | sha1: 61F41CCCF09CA0523CDBF88C5DE54F866A4BF1E2 | sha256: 4B398EA6E30B5BF7415C8F6F14A03F7FE0D66CD3B4EBD8813B0DBB1B39EB8CE3 | sha512: 10A0E7A3B79A54E730D6ADC13FDF26778DECF018D133DD9C6AA8B88F93B79983A9E100060E02D993D8A56B4EA6E8CA87CF0FBABC8E05D1C7B72FA61824C04772
md5: 9665E45C6FA8972B2F9B10978B60690F | sha1: 16E7A5699DE9C925EBED641D5A2D22EE76AE18F9 | sha256: E31A2C57A22728AD027B18A2B3D31195A9BDB1A0319593A37DD9083E97DEB6F7 | sha512: 398FCEB501A89F5D4472B4EFF3070EEBE9CE1E0028C7B3306EFF1A57C70BB9F0F6710FFF051472A5E4421D7309F3BDFC70936057A2A3F45D86D4844C53E0F19B
md5: 948B92FE6DBFFEABF7387C293531034D | sha1: 1753A8A973FCA3068FCF51DA65CC7235674EB6E1 | sha256: 6A7EEC568B22F72AACC0FC39A8E9C4ABEA25608FA5EFE517765FB517281036CD | sha512: A7C717D0F6BD978314C951BA1DE0CAD9F6DC2377D65C68ED95EB928A255EEB9A50A26D4C11086A884B3E0544AA35987B8A3318C1D84739C8682BEDF1BD74CF3A
md5: 72951BEA9A8A21B3CB2648DFD4C3321E | sha1: D2ACB98A80A4291AB33F05A488948D631070CA68 | sha256: 5B9CB133983AC652CEF17A6A3D01AA71379D16801D46483B28CC22C59927948B | sha512: 548DC6DDE84B0E377B7C1A6DE73CBE493C9BE553D23170CAA9819E70E86F90925F76BD6ADE62E4300E9497D3C9C7613A0ED37AABA8BC285EC40A162DB2ED3541
md5: AC7102EF997BFA8518731C513A097E20 | sha1: E380C066E6608442F0E9A912A56B6CD23AB330DB | sha256: 67A91613554B1021B8295C2FE22863786A1127CDE6F7BBB263EACB9B106AAA25 | sha512: A2B4EFF62F36B20C079AF6D8B0FDA7AC6C3EED4701A3DDB411A2787C725A101E33383A6BF1543F96CE2A776699761B82732D8A4FEFE0CA27EB1B330D5503A0D6
md5: DEBDD6D3316078C7DFA4847797030A2D | sha1: AD4C7D15C695BF6EF15D6E5173CFA2D5B17B96A0 | sha256: 04692E109AD1F26AC8227CB110C6AD11697104B1B74B1E66F7230473034BC5E3 | sha512: EE1433D6C2B3C160BDC09DDA2CE00A2C034EF8C91815FF73831A6BBF9DA7F1B7154BE2CB59750A835A9F52C839C6D5B521EF30ECC420D2C0357DFAD7C3044C04
md5: 411307CB017D8FDBA40E5B40CF5E872A | sha1: FCD7981808BCF8DEED636829B27E53AEB8816D88 | sha256: 77A419FB740D2C65239957DF1F85041B13A24B5FE5D6FD71AB379E88979A58DC | sha512: 5C6AD12E2B2E8DE46ACD54FAF28AD1382216266634DB954BC134449866B1EEF9344AF8F233E52F03602C6A16DF36894A0D280BD8B69776A1F58088C0ED0AA9C3
md5: 87F6469AA94C993D51805A8551DA058F | sha1: A65717FA29AEE272D7BC39287665C583C90BFF3B | sha256: 413B6CF1A6A5B2188F67EBA5024D638FD0266DDC9E5931B85BD36AF06C227811 | sha512: 7674294FF64C8A17F24DF00145073A2F330ABD6EB1D73381BD802BF8150B563AD735A980F68AE50D54582F9E32B48031370E8551C00228116324260FB3443F7B
md5: AF1FCD291F64BBB4105BD1A7EA463730 | sha1: AAC1962DCFA24F6544D03E6AA60BE20DA08F937A | sha256: 8370307DECC248C4B96BC06B4E7379E542AC954434E876EE04BE6BB461E74DBC | sha512: C949D710EDFEBB79B9B7934C8C70A03BB791640F30DF7DB732E7C29AE9FBC0E3B4F35B7CB272C83D4AF0C39804E56A693C3B18AC921474DE3E724BFAF70995D4
md5: 68D510054E4BAE62D924535EA1F50B10 | sha1: 965901A896876A5999A470B121E613F893117024 | sha256: 90C97D817F0F409D44DFACD7C5AF5FF787BBF3038713B1E3D41DED8C383E42EB | sha512: C2A444C06542EEAE791D36550E494A62577C13E0F80F8240BCC072B66988A34B56636F8B0F833A7D60621801652950FF9716D88A5D225B4E93ACE21B1486D565
md5: C7AF267406FE127230247A42390BD660 | sha1: E1B27D7511B67A649C44097DC3D012A050FD297B | sha256: C0A22F070079CE8A4C3DFFF9215C2227D345D4545AD14D6EC353BE74ACC0907F | sha512: 60360B7284E302BAC9B35B92064808E9D2B558FCBD7AEB2A7E03D7F95C90FD3A46934A5EFA21ACF31D12DFBC97F304862C56A2215153A9ECFB238EF8AB6C256B
md5: E0D142B1301D8AFEC3D64FAE587B1383 | sha1: 59C72AF9D50F784874B92E6AC3ED567B875EA62D | sha256: CE9B347A4CF35C4ED96E1343F3CE84CE6514BE680347E59DE0F5A29F6EE6FBA1 | sha512: D50B803CDF4A400FEDAD355EF6B09352F8642B11104EA24A5F47F708DC2FA758A5165980EF8F10F50CD3C3EA6E1D97BBBB822C26AEE3ECDA5220A654A89E3560
md5: 460F08FEF98BD3773E9C120B5AA4CFD9 | sha1: E12ED86B70E45AE302F1A16C1A4D43F25A2AB47F | sha256: 7E6005D07E2C8CD5B62BB26B6720869E230704612B644A1F2D5B1F9A3FD745DB | sha512: D9586563F785FC0828F1493F1DCA62C49CC89D3D6C98E140F75EF7B9A66B732C18D9FB3B06C0DB0AF0DB5B6FF560E2CF525B64753711F4495F3BC4F1166B4BC7
md5: F33CBE589B769956284868104686CC2D | sha1: 2FB0BE100DE03680FC4309C9FA5A29E69397A980 | sha256: 973FD70CE48E5AC433A101B42871680C51E2FEBA2AEEC3D400DEA4115AF3A278 | sha512: FFD65F6487BC71C967ABCF90A666080C67B8DB010D5282D2060C9D87A9828519A14F5D3A6FE76D81E1D3251C2104A2E9E6186AF0EFFD5F331B1342682811EBF4
{
"PowerShell": {
"JsonOutput": false
},
"Logger": {
"ConsoleOutput": true,
"DebuggerOutput": false
},
"Debug": {
"BreakOnStart": true
}
}
md5: 23D9B96A3E99F35CFF6D55CCB8459E5F | sha1: 78E170FB6C385AF2790B1A3ADA83377431062E93 | sha256: 1AC8ADC74474C513FF030FB07EB7E75A5386CE1F269484CC712E0AC545235FDE | sha512: C2E0667FB6B23113A6F825A00C9FA62BECA6A8C6B56783BFA40C9322E623D97929C9CE11825B0EC2CA9715928C14E25C4F499177B327701EB03810871A9670C2
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.AppContext" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Thread" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel.TypeConverter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem.Watcher" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Security.SecureString" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
md5: 534597BC0CD827FF034891718B18D8F1 | sha1: E4ADD2B61F349A2A145C9BFE61ED2B0F910C7F93 | sha256: A3CAEE3FB396A3BDF6D6D8DF9828257360137579E0F81B319974AE6CABB07EF7 | sha512: 6CE51245F21E1F4625E2904D1E38C46E45404EE6A17D5032BD5E0F9193B7273E2CDA9ABCEF406D549463FADDCE059F95B3E6BA2F8ADF9940FB3E1E55D286B8F9
md5: 127D14E6D4BA5AFDEEED21D0D95EC27B | sha1: 246176168A4ACCDB90CDE87CA802CA72B3D575C1 | sha256: 3B1280D5402A11A4A240A23988BCCD3CDD692467013338D18119F3A1EC00A6BB | sha512: 8BC470D43B2B3A67E82419AE480283E642E1E3A233FEDA243C417C35A317A7B47D5D9C5C9DC46699A77C638387F510EAD6A40CD618826D5E81AE4677ECB74369
md5: 288F8732C1124B8D10875E52E3E42531 | sha1: B046E994F4747EF884ABF869DCA5403425582C96 | sha256: 04641B94F51524EB335790CBB6C891AD924398E6B716C5A366903269B86EC91C | sha512: 662D92D52D7AABBCCB1822F8E637110EC22CCB08AA6C03F61FDC1ABF9835D078A6A4AAD2C83CEB754D08F388FDB9B022AFE375A14C24B7ECDF55413FFAA3F290
md5: 959180760E01CDBB888A2F0736693DE2 | sha1: 3E7E8CA913D982081A049D2EAB4D5DF56995B331 | sha256: A4646A6BF1CD7BF25BADE29E6355D524C3A61D010ED1E5E7705EC7C6C4CF510A | sha512: 9D8F4C82FCBA205498500DAAF435A6C03105E15096F9CA985F2B2F59B419BE9A544517A93041CE3CCC95489D1A4C98E63041B2FEA8F0A9BE0EC2610D24605C93
md5: 45D6CBE776F633C4D012861DFDB7C212 | sha1: 7D65D05CCABC4A50D169F7DC3C0E5684A5AA9F35 | sha256: AD59C1E6A7BE4F76367E91C543CE55D71F71597EB1A6DFBEF58688295FDF4350 | sha512: 465BED168984030479591142953123A42167C7B3617BA289290D9D4AFB3457BB5B82C9500D108231C7A294BC27646E62252578BE905BC198E7F131F0C361EAD2
md5: 02EC12AD31EF6ACA6E09303A15950B31 | sha1: 66FFD398385A1AF78EBDBDF988BC5D39A61A92F6 | sha256: 000CB2E85132E5D6E209E92933A67D14DA718CBF9CBCB50D72A89D194C75E4A7 | sha512: 3957B1E338659329F7D4D011DFBF2772D7B83AEF9558E03A1E211C1982A2A492BA7601BB7F0681CB7B111E9A6345CD7245CFF5BD63AC57C1EFBF3D98DC303085
md5: 751C9B8164796B5D0FE4F05B52B5E7F6 | sha1: 20B37AB7808970DE2853D245213C3F51B096C018 | sha256: 8D7A8CF4CBA77C858843CB94DD49801244A861B9B6BE9C3DF2F11FC173A8E4A8 | sha512: AB8AA6A055C741576162310012525351874BF319C63BF63505C0F084D153845C6016089226B4E832425724ED0F257050BD0275CDC07F82B0833A1E9F2CE813CB
md5: A06DF42A0BB358F8F3AF43B6831F3E70 | sha1: 148EF67987B0A33AB2F8D41CB6199E5E1EDC54AE | sha256: BF2CED8B51EFBA148E67C156062FF51CA873B51DD8A3A6098A99D1C357E884DD | sha512: 9C22DE5B6222AC6FDAC8FB7F2E93CA4D498BA8F512B139510E5F1E241F41CB2FD5A60B52B7167A05D2479975A195E4B2B2499DC05D52480070AC14297404F987
md5: B9A517E377E83171A4FBF5B2C49AFD08 | sha1: 3326981977C4C68D16376B736CA1953A7F4108CF | sha256: B0EB865799B1C072088D1BE00284CC8DB9253ADA13AFD62A3F0A78EBEB0BBAC5 | sha512: CE514B5EC60902A083B33D21F75629B97A03C2CA7DDA6EBC03A57F08870E9B5755F4E27E743C0FF661E4DA6ADB44BC316FA58FD282EAB64ED41C3CE2B9ECE60E
md5: 4F720018B8034C4F484D88194CE85C5A | sha1: 50D5115101F3E2BC53AE7A26C545B12F192A3CDC | sha256: 16D9A5474AD4CF586C8FA190650174B91B2F01139D15B5EFE59272BD013EF1D7 | sha512: 1A302537B87AF6162B5ACB9328A9DC6F249AE484A9ABDE401652879EE8142A6E6A1F83E6546DADADF15585F6E0C515831D22686930C93D2DF54A01111C16CF95
md5: FF635B228A4A7462F0513004A841AD59 | sha1: 173ECEA10D04D26E87234EDEF8446C668FA415FB | sha256: 671B4F883876743BE73B4ED9BC5A32B40BF7458589869A4FB5B84DEDBDEA8B46 | sha512: 0D93DF99147A90574C20D76C7807D03ACCCDA8684CCF07A5BD0E2AE8B964045890D217077601484E38F5B730A348152EF43BB689C77865792BAEECD10B677C4C
md5: 6D739BDEAE13DB7635A0498671591D58 | sha1: 4B4ABE351A981C1B1E30DEC5C2503D6C7A62A5CC | sha256: 9A048A736B2CB044DFEEA0130C3BF4F9165E4157E009C8AF3388190C776403A4 | sha512: 4F882A21207521C6412EBE2D98276A0C514935EB44E582467E5328B60D42A545D33FDEE5F49D2537D9D3976E41EE3914CFA4067876746795A89A2046D0260334
md5: 56E201260A98937C197A7EB03E97E8F6 | sha1: A11794F8ED8536AAB0F46D6018E8DE434831A7B2 | sha256: EBFAC6D49B1D308CD74B86423E3B80B872FC12A613721313857F3995C60C8995 | sha512: A24AD9625D25B605E3EB523DF6C82B5C6A0A82E088F8ED13D6BCF5407FDDA95041F5FF68866A01C44CD27F61BD81C974858B5B24433FB70298FCA10D9E4E3900
md5: 386F1E9237B7689BBD4FAF5B68FB3D8A | sha1: 2B32C19885D8596B015681BD2983E6B85FD8FFFF | sha256: 916403E1811E9ECFEFD0D717DBDC4A2C20DA3C2831C3822391FBBFB84D8F9346 | sha512: A6AD1AE7C127FA77F1085F2BB4000B89496B64FFAC7E41AFD44B4D7FA4864E2009265FF4DB9BB4754CDAA20FE6EA7B16B9CDCA22F411EDBAFE7007C80B214ED9
md5: A26EC067F5F612697D67F37FCF51FC45 | sha1: 58575BD3398B211DB40575956C43A01CD15CE7D3 | sha256: 75C42CA79B7424AC3E5683A6DB10EA80706EE50FEE7DC1F710B65F8CFCE8A8CD | sha512: B71763025EB454D9386C0C2AE82110F28BAE46C01813115CF9A3EDB0B6F37906647194F0CFA044AE8C1120675ED7C6B47E6409A0A12FDD54CFF89E1CD1B71280
md5: 5D20B783FC9D4EA419B6F90C56DD55D2 | sha1: 3C97CE27614C937C7AD14091334D94DBA8117C88 | sha256: 44C9C3FF07593148FEFBEA47D56A0F472FF4CD28EAFD672DD59F7910981201AD | sha512: 9377D4C7237E1E6FA2DD64BF74F1F7376503D29F6D9D816A5BAAD165B5BD6109747C5838C86D3E931DE4AD69C276388228FF3C1EC48D3128F1D895084FCA6C01
md5: 0B4D6E670A7A81EE68D2FE8964D26066 | sha1: 4FE7F181EC4E201A5BC491E35D30AE2CA715C83E | sha256: 0789C34B84DB8FD6DDD22FF7395AC24DF47D2B3BFF51FE822DEB4532D380D6B9 | sha512: A1993A3BDC8B4785FB987906006175C4F71224BCBC719D749DE1CD9AD65103F9E8D2AB2EC0E543685F217D2859810B5AA41C0EFEB68BDE417CBCDA96A38A1E93
md5: 7962C6E5B1F58AE3106CD18483722F47 | sha1: 5E393821F504040A04C2DE9EDA121BA2CCC98EDD | sha256: 50E498080E4E533D5CE18B89AC17339E723D75D17D073403D26931FB9EF7962B | sha512: CAC264E270C01223C79B71135C6AA69F96BEB1D2A0F74CC4B8125BC65D7641171106723FE63FE20FD8A2805D959ED26A1CE36DC61C21EF672AF64626E9A3D910
md5: 90EB70E14D31E6B506794FC76744B0D8 | sha1: 455F9B71A006762F0078719F568CB20F75F3C066 | sha256: 437E84542508CB200C9B2B1E1CE734E4B57B70E0B1D6609D65DEA71473CA58B0 | sha512: FDD815B8785B99D37EBE78ADAEEE8BE99072965DDB7013CC76E898DFBBA3D1A6473C052573820B9D4B3DC47815E75DD6463BC93F4E31CFF6AEAB2B88363A81F3
md5: 8F6B9952C4B93F82437D47FD1219F1C8 | sha1: 87D45BBB3C2B1CC9ED72C5004A52E8232C979EA8 | sha256: BAEC85E4793E0B168A757105004411DD78D7F43FD0AFBAD14FB06D66F40A0214 | sha512: BBCF681FAC6ABE62AD6EE9C62F9C7B1FCED8DDEFEB51358A24F36DAFFDF44496E99F5F8FD6FC7887A1A93CF22E8D5509D10AEE000C355350E0647AFCDBF830EE
md5: EF1CB9BE0394CE7AE328DEC798F72F50 | sha1: E6EFDCDC41D244DEC715E76C8A9726C09C15FC27 | sha256: 200EB4FE44ABD9570D0DCBE8CDBEEF8265A1DFBF17F1F871327CAF3620B7F911 | sha512: 2558D2375BD7D07F48B63EBDC07519A0C2D3649132231689763F44443C1354AE5568CB6633F268F7909B2CF0AC38D08D629A06B5FAF70AA87990CFC45C923200
md5: A4D019C65B22F51909B24083E162D9F5 | sha1: 8A2C3ABCB375E079A32577A9FD86AA81CE8D20D8 | sha256: FF19133C907FE638822FF7B8554C82B2130C4B3E150803A7BE08F32B42E54DFD | sha512: 01DD91B86C867BFC9FB9E8D9FF3F366FAC595650E6085A2872508AE66EC4D196ED7B747CFA06D6600688823A1CBF1FA0F56B29AED7B3290E4B436D7BBC2C51F5
md5: 1FCD17EE5CB9B5361B5FB92C08488F1C | sha1: B60338AC99A30EB9A0A3CC943F207D5A71E28EBB | sha256: E2C9F4105901CF4B863E0564B5F0321B4BE505672E6F58D7A506A0F6CD8BC524 | sha512: 1C2E824EBD11FE4E2608D1EC5EA74A895CDBDE51BD6F394B60A0727E6E661E1F9CF3D222A77524758F44ADF57EBD6C52AE30A64C50EC573D347D0A0FE263060B
md5: E8996AF7326536A346BAF665912A7241 | sha1: EFBAEADFC5F9B78ED1132C9B798E52C317589304 | sha256: 6E74661464ADC1ADADF87A24F9834CC3FE866CC97ED9E6E9A2EF7ABE3D9B69DE | sha512: 888518975985DB70D9EF57E286465A6BE60EE57FFB94EE34B6EAF316DDD0421DF79802F6F1EA444AE8D77CB602B56C64B6D710A1A1E0C8F4EEE2C487FF15CD45
md5: F5E98B087EDDDBC6CDA693E605B291CF | sha1: D329000CA24E368CD89C20207D4D87EEB48BA1B0 | sha256: 4BD61824698936D305F4E357CA16682C9807EE639A93C195E58FC2CF706939A8 | sha512: 6D9D53FE6C43DCFC8FDA70FC7F7C59653D0507D129386390B9AA854F9BE59BA79F892BA775F6C289498DECE79DCDF005F25E413EF2232AA2C868070D4EF9C654
md5: 30BBBBE0353E3C7096C70370C7404A47 | sha1: 020EFBE26DACF4DB6002A44712DFD26DA2435A92 | sha256: 579BD6D3F5183A61522771E837372257AE62CE7BF89191FFEDC0A1EFB1B1A0C6 | sha512: 2EEFAF11B2D46071AA45E87B200A9F69D304A03C6C00A7238B341170B121F99BF913CC0B178BBC3D09A89B7148A2240C66900B4F1F98C732FFDFAA806BEC2DDB
md5: B57DF8B3A761477B3A3DEB8432C7EF6F | sha1: 0519664FBCA6F9CE12946466566156E84966ED3A | sha256: A1B70B4D231171EA6599570BFF8728A514AC18BBEE9C863C95CB3449317FCF0C | sha512: 1A5B7150C5552D98A93B4BF0FE34C6933B0A145D280C91C981F4C37A811E1E73BF03787477274829CB6AEE80DD1C16F1DFDEC5C57F1E3EA0A611A0533CCAA8EE
md5: 256200447F1B02FC94AC37902D32C724 | sha1: 7B0DFCF07C76AF79C6D62F9B3D97248D7D7EC427 | sha256: 763DEC8A767CB0789EF1C1E7B5C6CE875D2C7F4B45C1A84104DB1FD4C2EF921C | sha512: 2650D8726C85A27DE1E747D130F3299E5E6124B99FAF2E6ADEB1420A770045D800DB37F82E57539B9A4E2B395C9EF83F24D0DA85BE0B536A891099028C2D3834
md5: 70833A43F2D0FA0980D1BCE641B7076C | sha1: 014596990E20CE3C5802739FF83A81396BAEE020 | sha256: 86C4549FD34719884E0D17DFF1177CE552000ADFFAC8AB9DE4E90D1FC6956D1E | sha512: 4F64BF378B9A002692A68DF5A2808963E3E719188A8BA8828236E89ECB0D1A167EE501BF7733989B920F30311A85BECB0FC9BC0A4192B8ACB8070835DF2EFC5E
md5: 8A6E47A757C16642107E6E7D745D85BB | sha1: F23A9691C0F1119E02A9E6F13E0232C38A0E4474 | sha256: 5A682129F9A3823D5DCF2D2B95D05BEA140284B646739E9C483E81B4F15384CD | sha512: 387E5BCAF434366060CA991C67D11D820AB9646403870AAD7BC38AFA1CB3DE64630AECE80907AE9E0174FF74F567B9B249BA12565DB713F775AC17B854A5877B
md5: 946774F10998F6A5AEE2B99A2B79CAF4 | sha1: BD7E3C33CE214C73EA1332B5A91BD4A98F3CEF61 | sha256: 8F2401A147FCBDD257D4C357889887EEF43ABC99D87FCDEE1DC5B2638F6C506C | sha512: 507AED6DCA3308C6C09D27721ED5D1632C7769FAE849C1164B09FCB78CB2119389B3AF52FB76129054CA78A2279AADA38A89091F8FB86CB60DE25B66D169C7C5
md5: 32676AE6058F28DB16EAD78929B575FD | sha1: DC982FDA20A5AADCBA9020C81207465CF331A7DC | sha256: 69AC2DEF4168333AFFD9C42DA54B4EF27400BC205FE44F64DBDBD57B6E6FD634 | sha512: 633543D2AE31ED0B29FAD139659C8811C151A41AFE91B88C300495CB7C44B19F961AFAB7B905146EACC6E6472FC462BB9ECAF1442A913F822B6F992F5AFAB402
md5: CB9AA35AC631D6A3682E581B53FC68D2 | sha1: 7A0F46AB1953FF5B5C99582B5477523B9C040C6B | sha256: 6B1604550D0497FC6143D11322F28E481C7BB938A8A0F1F9ADC7A4FAD37B3489 | sha512: A28AC20F638FD4FABBD263B00E0293AE8CD7FADDD9B9FA22DE6F70CD4E6E8203A292D6C2D9DFA0C7FED95CD8BEB27258D23BAB31305B0A5F904605F536B45A2E
md5: E1623A6DF588756FD111E2BA95976EF4 | sha1: 805A8FFCF45926658624FE805CFEADF5CC5CD970 | sha256: BA5F9925A4F26F987246E3BBA9CEB64F72B1B12CE38A422292C8BCF93FE72A4E | sha512: B149CA2F767B2EB124494ACA4B968C2A445C1588F2FAC3A9CD5F0F928A6C6ECADE95165827648004DFF1BB15AA80AAC7F0DA925FBA772F452AAD0920DBC5E978
md5: 17157D34818C60D3D330413E49BB8B46 | sha1: 248555A027D4E82F2D3457AD2E12E6A0D8785A84 | sha256: 50C1A3FF3FA6B80A8C43313C12BF6CC6FC41F09F62467EE43F402F94DE2A27FC | sha512: 16A1A2FC5B8332CA7BF70E59643B60BDEFCB43514C767DD83A37080F5816C4F3E82EC70E390E20112D56297C99C0CE56D7332CAE91BA473C7094A67CA9760CF6
md5: 246F66F060B3AFD9895F7F10F6E5C334 | sha1: 5288B1A449640DF69D0E0ED9256987782BAF7658 | sha256: A831C523A4C7252BCDC54A0A66B5FE7B9B7517BFC98C1DD5CA1B31D784722E60 | sha512: 98831400B1371A3C1AB32B5DABCC8E5A1BE99738BA3786A9C12EE93776018C03F7AB5F9FA0A48A4FB93430F15043D7B5266F7FB8ED2E1A6C3EC4A63330AEE87A
md5: 66EAE90856CE4AAA67B8AE83EFA5DB21 | sha1: 89B7E9449AB2F4599549487B6C07792CD7421CF6 | sha256: 788975A8404D403EFC502926A9E369F29BDBB0A6E905F86D6643FC5C894003D5 | sha512: 97CE049C802D4492BF711D66FF57BF237A6EA0319C30E3FE923389F2F81BB52E99E0C8F3A76AC8915CEEBFBFB9C5131083A4489C86F606AB35A290BE45D147E1
md5: 14AEEFBFED8FEC769EACDC36BC40F22F | sha1: D848C24070070FED93B29110C5EA6714A466F19D | sha256: 800066ED8DAFA6580A0AED289E2518C356CF6A335C34A785171A94FB29C69063 | sha512: 56F29320AD0D9C44A46137A1AB1B347E924E3DD1E9E968FB29BDDA2B52454A9477925F14B83D11BDC84903E35C0196D69A1E3897BE382054C97E02C1530E6D9B
md5: 655BF6B98B953084D6D0F81D2A67FDDB | sha1: 23DFE5AC39B484A356019F69B829136C43EDCF33 | sha256: 99BB6AB6A53D0B2D7961ED072E1EB87873BF3AFE69912AA87D47B385DA9BE8F1 | sha512: 7DD123550E96260DE849A5D8630BD837E2ADE0593DBFB0F11A08C52970B01D95564E1B1FBF02FBA6792600D68EA2840E5CE3E00AFC7E6CA4A779305639A16595
md5: E5771091E673A423EC4658ECA417C547 | sha1: 28B6B149E7BADE2BF10636A4F2038789D9BF9BC6 | sha256: 656A5912F83B5C0835AB6E9AF2C912B9FEF936E99064A01257F6CA1E747AA3F5 | sha512: 8ABCBF89BD832C00FEC945E7E916553D05807B3BF196470661E336F09C11A48DA843E6C6BA76ECCF9799BCE359F0A3720500E00D6E0EE95A3EC482D98CE349BC
md5: 58F4C15FDE3C0E339B02F1BF85DB82A4 | sha1: B7839D97FA82FBDEEA1BCC31EDEBB88963D48AF5 | sha256: D4176DC3718220F6F3BA5BBE0DB0D52664AFF3F669E53A6DB87DD2F43CC3D37B | sha512: 61FE90A178BDB8D4142306D0E701080BB83CA4EE9D5ACE58E1BA0D9A2998F9FDD233BB4E6E075256B7F842414FB097D26327A185F1892933FCB8A0AC8779E808
md5: 7F6F82729374597A696A8FB11CB6C715 | sha1: 06B4C706C9DF152FD446D6AEF3A9FF0326925EEF | sha256: F01956F72881CD7AFA8B0D59D19372CAA41DEB2B2774208C96BDCD95CDEE9FBF | sha512: B506BC3FCD3BD6F8079294D5C73EF6EBD9B707D98B513CF1A849FD0505EE37BECD85B9ECDD9CF65937553E80DD3F7901C09A931531C2C4E1491764D32E319D08
md5: 5D556F564510C51D8F477F54A6EAC6B2 | sha1: 95B60DE14C1E9D25B3FEA17FF37D27B45EA8C202 | sha256: B163DE794002CC72ACFA68E6FFF34137613006533889A384FA6FD4684DA120B4 | sha512: 3254BFD2714929FDD20C879C562710F49AD9D029EA82DD8661434C30E9703F6E3EA6351D7660698D7D9FD89E065A18CA539D4219963B51192B8F0D54F7BF67A8
md5: 8C5D8232BA77687708BFB544681AB104 | sha1: 78A7A61787AA8D562D35644CC379A032774F9BAD | sha256: 8BFE63325E6F01B6DE7350FCA075EF267D97F5136C9E2CFCA32D93CD2DC66015 | sha512: B61E391223255B4AC22FE7E9BA4BC9C4C18D5E9E953B3179667FB7C4DA05B2C8E1562C61813D1AEA690BCD2C1DCA848423F47A8A2519CDB0B5C6BB9233F8D153
md5: 0A1800361DF0F00CAE2796BB541F5683 | sha1: 89EF3747D7326090353F809D15928A924A4230D3 | sha256: AF14AE4724A7F4645F425AAEA4040CC9398BD568BE81A5A7F23B13585CB0EB7C | sha512: 16A7202A2B114AEE86CD7E3DAB174869D9336E95F0361760320472C8611BA358C1E0D5EE42E55F300272EF54E8535B6A33283F4F1CF20C8C24A352E2DE5BA90E
md5: 4C36C96D8FCCED637A20DCCD82DA5807 | sha1: E12FD272E78513A56B5EB92C7391982367ADFF57 | sha256: 9714E6CB25BFE8531ECE2A86A719BC9E6065A533DADEC7A25CFC3D5F5670C2DF | sha512: 249D63301C7DE6181E2C88724395BE9469EC4878B8414A5E58CD95EE0AC01D27A2CD52C81942995FDF9DD729703EA92F07752EB86E30B25BB1458D7FBE0E5415
md5: F6556505BAB41FFAB8B839B6B73FA886 | sha1: CC1F49BEFA2C453723AB91697E472728DFEEDA18 | sha256: 706013AB235867BBC6E50F97C36C54C34170B8C9F1B60A4787F068E716C52221 | sha512: FB809257C4A2EC80929B8EE3892C9A505C5E2098EA08A2E929BFF73A47FE7DE9764876923DE827997C7EB39CA8D74554CB46D01E3EE7648A3544C06D772737EB
md5: 9592032F1A541EAA773BF9D817439A06 | sha1: 29D37FCD4CE23D7209BA23BAE63FFABE137E96B2 | sha256: 64D97619C4FB84ED853BCAA36D3F1109A0B0282695A3409E9F278F900872C409 | sha512: B6354F207B139C741FF3D1268C13C376DB2D6C05B937855E0E1923C8ACCB7ACD2F768033ABF614348744F1C1D97439BA59E9D63CC2244F973DEC1C4FE244BC43
md5: 0165C05E522C6538D0304E16D106988F | sha1: 4482A8A9581C2F27DE8CE6F31B8E44095FE7DABF | sha256: FFC3FF67EC8AF57854585EF48FDA4DD62DDD566D2BCA418AB7E3079E5EF86274 | sha512: FE60969A0AD97807823D5A9ED73F8793E0F20D5E71227A1704D84A058156EA2ACDE0749B274CBA124D9441385020D4460C2860C690CBE69BC9F957299D58A1D1
md5: 34AA799908AC00EC06E5C21516EF43B6 | sha1: 71E75DBFD0BDCF0D8B8993DBCFA3A4664D173075 | sha256: 2002ED680872F2026AFD410F06E9A4EEB95317BD0C0C2B0DE8DB97040496A858 | sha512: 71099692C4B0AD29BD17529A0F146BBD0C192BD0CD93D85C05F7040079E41EC044E2C7C38E5D23EAD3929C5A0B2219B69695A6125967AED24E07BE98E1C4687A
md5: 96E117A26BDF0F8EDE86A6442A1FDF64 | sha1: A8468EE995DD7C457377167A801E9B7435B35C81 | sha256: 9C00D8B3910D02452CCBE761E06EEE169D45122ECD88FDCDCCF466F3BB03F505 | sha512: 5AFA49D6D1D06E10098F9A2B71BBC37DFBDE9B8CEB0C2172C01D531B5985FE1392E8D1BF041777EC76F8D56C11880F3A3B4CD48D32BAB30F3B707A69B1E89E0E
md5: 76367E10873363F5D506B421355C0E35 | sha1: EA49DB2EF12106FDA16BBA5A15FA2E1C9B0C40FF | sha256: 97D7D33F20052E829E2FFE81DD66975702466E625F526EAD272A40F34D2D3857 | sha512: 020BAE3BE06044F5D7A87C6941F9DBD7256356A3384A002C90D2D289CE542BF1F604C636539A2EA28283D5FFEE2C9656055CE3D1B9E47A1251E3507165875019
md5: F8DEB29C79B850912A04C4D40C209A56 | sha1: 4A96A6F308C61B512E3D64340AD074A3EEBAE073 | sha256: 349DDDD545182DA02ACCF70CB010BE533C86ABDE1C9BB34BCF589242F6470DC2 | sha512: D4672005F9C7FD44FCA55E999F9E00A4B02F6E46C481F5F150D4EF3B7E75BD1880A67A8B4B5CF0DA158728BFB8697D7EF956C2F30D541E0A9EC90A80397B58E4
md5: C13B61C620392A63A1B909C227567118 | sha1: 8243875F30F5F0EE84734108E30F783419FA9CB9 | sha256: 57D555DD541DDF58B37B4C905062F3A10A76F5D2CA45A9D68B880B5BFCAE3F08 | sha512: F128F9BFCA492938441374A1183C90FC3809F6318AA961AD8B125D4C1C6F3399938C85C10F6D17445F81F65539C2E75B84716CB458B79FEC8433F1C84F121DC5
md5: 43F6CAAB33F78FBA3752341DA505E2B3 | sha1: 99539BFAC635EA2D8AD72DC22D46AA3E2807F006 | sha256: 23CC15CC438B582ED7754CC0BFF8BDCCF9557F91346A7ADCE4D92CE21823077D | sha512: 59C8AC3D2DBCD0B42656E553EE3C48708AA024A47C91E1337972835B5004679889A48F4D4EAE506F9937B82732C8B21D643806D1387EFFF9553CD223FB01DE2C
md5: C3B147631901EB23B2B74C5DA6184DBB | sha1: D8343758B38F5AD8D720F1E232CDEB6FC4F84783 | sha256: 150A26A88D1FADEDA9DDA83C43249C71285190DF7DDC7A8A878E30A75CF20909 | sha512: 23D6F7080062483020CE6583731B08CAED0580562F41CAA802DEE20FF3680FEF6DD8156F2A5D90C221C1935F7E4C4769F33121AE70AAAF31E322B3BC178D1148
md5: FE88E74567880796C9EB5C4492F5EC6D | sha1: 50BCC69CB927BFF50EC17B41CE5BCA38E2BBD36A | sha256: 68E883C4BF023381735546D7A261987F23CBD20EC04AC1AC9CA4B5D275C7C8DE | sha512: 010CC47D7D2D596F9E746598ED71DCA735229A73F8BC6DA035AA18F8370992A39007EC429F17F1ACD75BC18B744ADC38B788109727B606468D4194E38DED31A2
md5: D217590D81F3A79899CD1D09878CA983 | sha1: EBEC44036678CC1E4338DE2D76DF965E51CC7142 | sha256: 4D3B79D1FEF0231B6431674319BEB6358179C16B4A9FCCEB3FBEB42649727B66 | sha512: CF10F7FD1DE265E214EF29313FC4D4F9AADB853D298331293A8331897249B1229FAF297ACD8BFBD4B431D31C73EBCEE00086847E76C4242FD379B3D79C8F4F82
md5: 707118546D22C40EA697EF66DFDB7A3D | sha1: D35B81CD739BD0804E9656AA1B5A4878F91D180A | sha256: 3AB5DC3C798A580BE8F06030B73475710C43DE62E5DAD25DE9F7CF2ECBEF39EC | sha512: CDE22A2F165A95A1A4977BCFE46179951B0DD93BD0F533827B106B07E10BAF351AE89B2E4C82D7E019A84879163C4A3619284B79FEEF5A59946DE392CCAD11F1
md5: 037ED85C52E7C986475B9C6A94090902 | sha1: B72EEE26E1D6B795ACC6EE170306AA4510EB500D | sha256: 956B82BEE068B06088FD62860CED971810E71FD198EFC9B54541825063CCE6E5 | sha512: A85E371462BE53E117781C7F97FBD3D2D7325A1619AF7E785C9946371807ECA7332A25952A64514E796DE36D0A947678D69C20084FA76B675FC463BEDFFE4FD6
md5: 6E93BA9ECADA31FD7F0F9C55632435BD | sha1: 24CBDA06979F65E7D66F40471CEBD187F4242966 | sha256: 8902A79C2F03DA29EA18948526D3F890C710F779C505C3D18816E1FA888F2E01 | sha512: 0DD2B7BF746E6C7CD188188BEC20DBB48883EE3F064FE8552066BB4C80BE62420EE0D186598750B2960C239F9654267C009350A592F71FCE7B42A4FA115B4F61
md5: 9D4C9F84BA505C4FEB023FC6F80E612B | sha1: 2E8DC63323C79957FA2BF7168B8B3EB64DD1C6B8 | sha256: 388BAAF1100259C67174F4369787E872DBA8017067A0DC65D3F1F90255042283 | sha512: DFE782582CC3125D7D9D7EB78E64E71D64542EFBAC8064E11555E5DCDA61F5C33461CA990F18E8435D7105C44BE44CF06037A89B3C0328908206F0B75D868247
md5: 8FDC5726CAA3648DB73E8B6D5B16BF37 | sha1: AC07A9EB3B027CB65E05B5A1AA6B5EDA84CBDC4F | sha256: 370A9FD84ADDBA1FE46499DA76B34422E2698F3CD8B0EAF128BC5A4F221227F3 | sha512: C9E196628081A24703A7030A9C93C9B7641D6D0465787EF73458B6DF49A4BB3404BBE878C34DEFC4B92204B619B1E5BC5BF037955B2C74D8AB10C0FC2286DD80
md5: CB97CEE5ED55BC4A97542FA616730D5A | sha1: 886FD32F03BA450AF92B4DD7A98CC94B565DCEEB | sha256: 50ECCA7994A37C9BDFB60A4C0A3FC4E893B3A314EDC322CA8CA69B1EA80DBE32 | sha512: 1889071E088FA43DE5B855F24D482D14D92824228C6625069CB6E133A97BB1076C7DB62E2008D2A06F9C9F9986981CC4D7BA5254FD50EB321FAA2BA9B05F983E
md5: 5273791AA2C4B83E23348364041BF0A8 | sha1: A00E3C125B6E369B99DC5845E111E715B2F44349 | sha256: 0EBAC56333168C1D9B20D7DC3BE10349F30DF66F26B009D2E4827B1325C0B2B9 | sha512: 8458EA122D46D8EF0395101EAF0722245E6A2D2A56779C3D4D9C61474E88DF760BEF85839475BA47217808FBA259C5212C3B10FD610159113AA754512F0CB763
md5: A332AC662C137FDB6DF727A17A9DB619 | sha1: E9BBE95148F3360B89109708BEC52C944BD5DF5B | sha256: 7B0135C611077570983A891F1C6AA1C6EAB6419A3185D84BA4E59129277C18DD | sha512: C55A45416B962D12D8F3720F7EC4F05EBA5289CE689C742CFCE33DC9508B02B4865CABCD03B0858CA9A3D49563571410193160F53F8F0A13105F8B3B74B36666
md5: 2FFD066515CD5159A9346E520535D535 | sha1: E73C60EEF0D90783AD112A3E49BCE2BB13381072 | sha256: AECAAA892502398C3C170BB1B8372FA09A37F672F7AEC8D7D8FE8DA30335EDD1 | sha512: 2923D6264424A9A8429462C95E9D050E459D3E07B17221FB830E1A50ABE815910A7E9528CDF0EE26883E3B99D43180D147A71DD8040BC012D826C1083A540D10
md5: 2E0BF7DD2694BC83A119F5791E47FE11 | sha1: 927A12FED04887829B82ACD537DBECB5D7119AD9 | sha256: 09EF0476BBA5C60BA06D9658B559495A42DE36C7A9D6406292D28E24528E48BA | sha512: AC55125BA252147B621EE074CA3A709DD6A52B6CEB191FC302C72B698E23B0D4B91125B7DE080F9A1A36D982E77280F9C3FFD843EC5889EB217D6DC7766280A0
md5: AEDAE3846D8E96D3DA62B3D3F203C200 | sha1: 4E94E9AE78BDC45152B3EBF6EF9F6BBE0D292562 | sha256: F3A954B1827232B0D779CE638C6E046098F7548098F831A8C008438E3FCB2B2F | sha512: B1F31C420DD0C2EF3FDA1B1F547C95A309D7844452A80F4AAAE82523966B842A216F2307FD8ABE5116074F641AA5B7D05DFF57D3B5E27A6D5B28C7A251449DB9
md5: A614A653A1A55D3519A6AE4F69D475A0 | sha1: F80A007D57AB20042D54E9A78557B870F312090C | sha256: E570A6939387423649D7C961DFEA7DBA23E3871BE2581821DD658E201CE3FC73 | sha512: EDF9AA9D6896403E2AEEF986BAF7BE763F81E08AF0CFCC2F7FA7B8216F5D6783D2A956EDDEFE3633F28E18602709ED393FB9B2B3D94AFDA0095F087092C89D73
md5: 5B0633C64FDFB472513B2489E05FEBE3 | sha1: 48734A4AA58CFAD3A042C0D2342A594A93F04CF7 | sha256: DAEB96991CB78E4B769DD074E6EC5117F81339A7AE6DAD12612733A3A8A04AAE | sha512: 4A2ABB519B34929A026E45EA93981F569271DE822F38C2405BD917D629482E813FBEE5295FC3851E9E02B6D733C96D2155015304AE3F817924E4A5195E21CB93
md5: 677317BA5D1B55916A8C495568FBC8A4 | sha1: 6A7BAD874D196669F29EF15E88EDE55510111406 | sha256: 4EAFAFF07E323396CD366872583B3B13FB0BBDB6AF692F0DD77D468B7C97E5BD | sha512: 2DD85333C207848F30766A69D6CD63E79EA3A57114CE68FD75128BE833E7FEA16869340FAFFAC476D709BE6F32A1B21A1CBC8779C62580F0C055EB22E6C6E4CF
md5: 70B307DEC7AD9A13DD8A17478645EF9D | sha1: 7246774F4F96F4AA75FA84DC9ABE6A6EC5F0FAFE | sha256: 2E4A70F399DBD1356F596CC24BFD29348ECA271A5D6A1E4FD34235E027677718 | sha512: 836FFACC6A479797D03DFA30DC07DE0E6B642CFECBD796054907864705324947D853F12FEE46B02F9AC926BD1C9DD1CB81072C1391BD9C7B6CBFE1B0C477299E
md5: F1BE0E5A4E3CB6CF8C422C40EECF5923 | sha1: A8DA06748C55B6BA8F72CB3C96ADC61331A8E746 | sha256: 7804A951C01DE3532F35B7506FD1631F8C86882F1C0D28D96416174887A2DA93 | sha512: 2752F6D84FB60091C2C286302FB6A8FEC250E590E3581CB7D1AEA37EBC9A6F012F6E859E7590383D07D40DEAD6FE2A26E5FECD9C45A57B56875AF11898E6344C
md5: 9C482F030193668E50D0BE77182F4FF9 | sha1: 94FCB3FF13E8AEBD6EB8BA7DCDDFCBF2E1DED555 | sha256: 93F35428299B4F31526586AEBE67D0EE3B4E266862009B8F225B299C14B7122B | sha512: 7EFC55303492BA91A05DD28FA304FC1DEC2583DE04BC1F970B8033E8763D84601D7B2F31E8C519E748A95A16995FADA5B510ADA89496AA73736CF9AE8490632E
md5: DA0A86E40C36CCF603ED4687D5040039 | sha1: 309CCB66CAA7FBB0C1E0F6C5DE403D069C4B1B9D | sha256: 71B9848672B1220C69AF742ECF968B9EFC6235F9048719C1B2FF28B960919697 | sha512: CD0B07455A177AD3EA8C90352BCE70F2C71F33413ADFEFFB79F7A0097F7A3B5386AFBF1793D8957BB7908CA7E6D7FCA1EAC50F2609E2A175D035BBFF38E0BC25
md5: 15FD1B632E41B083610DECCB375C17D6 | sha1: 0280D224036ED5DB39112AC466A5215DE0C47F69 | sha256: 966DF2ECA344E14E77DEB9C3AAC1F8D3865EB3CA9396F99ADD1FAA0045A47DB6 | sha512: AA129C1F9AC9344F1FA1B4453BABA71F34769606A8DAC4491D569663EB53745CAA3E438FE4AA02FF3F739E842144D151BB336ABEA9F7C1804CAB441B2A52B57E
md5: D563B9DDDE719A7B1291E3AAE099FDEF | sha1: 9E048B2516DB9282F59C311DCB4A30E708CB9100 | sha256: 63F6B6F1C47E2E80E2D072991EE33A7BC9D38CE3CAEEC2F0102ECDB2D52FC63A | sha512: E2BDD500862E56E0EE64E2C8208AE8CE65C76103995308722FDCF2673FD13F7E19E4966C7A40DF2CE6D0D70D212E60C03F077EFFC4277BE6C4FB3154003DD007
md5: 43FE1BD9C9C29E57161981A044295351 | sha1: CF552F86AABD9B0B5A683E297A1300B786A0ECE0 | sha256: 55D2C049C38A4A3DE8DBF814B87E6733C7A9ABAF40D1E1416D7D6770DE3E69CD | sha512: CD46D0E65CE137686C4E0235F5EDA75B15BA08C2B341116D0C8B0202B92C2531ED7200DCA942365B8AB19DA7BC1A6575B24249EF43B5658B591478DC901C87DC
md5: 625AD9EAEE79461CBB7419155C9F5CF4 | sha1: 3DE4DC674741D9E22E60D40C3628ECE9A6303F3A | sha256: B8EF06708C52AD302A479B876B57EAC1EC986DBB768A90699715721C66708762 | sha512: B377118E4FD51B40164F1F11AB7DB19365F938550D8032E05F62EE916091295A9532C4FC53C9F9A1D088BE4F3B0C768C3602C63E5A948AE4E2595663F1C36C70
md5: 5E78D7E556522A6AB738907606B32DB4 | sha1: 8B79ECA66CFAEAABFD4E88AAA05A952A162B6225 | sha256: 4B3036DDEC7DF39408F008E84001345CD0E078AF90F93C240AF38B80BA0B7EA9 | sha512: 45967C63C358F4CC8EF8101676354A4C1A2C6DBC39A19F2DD224A67E310DD3B8682B92D4438732681CFEA234620E73154B7A173F8AABA60C100C190081D18AAC
md5: A657A99D4004122B4A1785A161A43267 | sha1: 55B57D501443C4FD5BBFB96CD00A83C4B39866F8 | sha256: B1EA22B75D41E9794719C1B5E51A127B27FB8062EADE45FF84C1A693DFCC33DE | sha512: 55ED6A57E30D7DE037222438CCE27A947F886B9913CF6D341D638C7697E5F36AEF54C3175EB9B591C0C41027A12203AD81FF46A13957354DBD613B1D7BB39BBC
md5: EA23656CB617AD2E9ABEADEA8B080717 | sha1: E2E00AF650F637F4EB5DB0984D9AAAE4858EF92A | sha256: ED2D33D484864E0839B19624FB2679C0EDD4A1D2A8EFDD0EFEF43F5F34FA6524 | sha512: 4605503E2D4F892DB653EA3BA8DDBF2A444032046EB96FEE01C3FEFDF9D2FA74E864F455B9EB8DB3F6247163DF7E36F3336D21F0B08B45C17901E6B9ED24439F
md5: 5653FC9E7B921F62C03E5EB9D9824C36 | sha1: 2D2B9E21799DF0F8BBFF56DCC1DECA99D4B49E5E | sha256: 638DD2C26ECA698BB0FE20AB080FA820BB118A7D9854A2516235C4BA6D13A2D6 | sha512: 77E6374CC087B29F9D4E0B25E48171FC8FBB58F22041912EE9BD2BED2B5B77E10BBCDED6DF34A7D703CC6D6F21D4178807E022285C347D08B8A2D296C9E9E905
md5: AD3787D5FBDF34D2C1D77BA0AC72C474 | sha1: 2309CA26A2DE1274F4DBBD9B380572B9AF5508CC | sha256: 772BEAF09565C6456B5C8F986769ACAC1FB9F567CAB5B8FA2B74069CEBC27332 | sha512: 39FF5B4F189218A0AB433C132D09A3B0479F389424C1DD9CCF66F3CB0E3829AA5770EDAF0AF8DB9DBAE20856A262FE383F394EFFE3E9649495AD34F5C7326D86
md5: 75393FEDD75BFA78CDF91A85BD0FA151 | sha1: EB6EB7FD905B9E2C51FD8E1CE2F87F44EF67A9AD | sha256: 7EC31BA4C97472FA862A884AD657454750BE4F8666EB2C4882D45B58F9AA9CED | sha512: 6B99D7DAD9EC8C09AD2419534B2BAAC80C1EC8C319DC669B5F44432BD1CDAE384A906D6F66C18F336E89E4B168A065913F57D2A0A213F45E5C63DD37091677D8
md5: 142AAEE4446EF0B90B861A5DC72541C9 | sha1: 758DAAB70ACFE321C659F0FD955CDBB8E999A88E | sha256: D6B0E3BC1203AC4C0D00407907D4DAEA16F54C33B95D1CF1997C15D6D8824F03 | sha512: A25C3FE9F267A2E6152E1BF8FFDFC39E474148B5D7AC42B3AC73D65BC1B1623EB0749A163E51F661B7FFE9F19C0E76FC7E51F566F4C1F8FC8A96043BD35AEC5B
md5: 44B96460988CCFBB2D8899793C8A42B6 | sha1: 6DB08CBA4C95676EF280A88D5381C02CA385D583 | sha256: 51E79A36CE48F467D4740577C2F155A87FCAC6BB45696DAB2B0611E0B2C4F6A0 | sha512: 060092874D777483B95CA63398D6CD4AD017F51AF0869277A592884C79A13B8A67D6F80B9CD10951F44AF8C653E654AE8DE926A989027B0E04F21B535A5F1841
md5: D52BF679C68A7E4FDA56926BAF323499 | sha1: 52BF82B8E6022A44CDB1A40081A03AED882010A7 | sha256: 0764040DB47655FA21197A3C8BA474963B24875C8C1B30E1A3004E20C5760B47 | sha512: B85C14526EABF8665E8EEFE5AAB066AF1CB04DBCF722132419513C48DE1B994372978263416F324D14C4E56AD04795C6DD2724158D3329DECEE2C7A5BCA13723
md5: AAC4DBBB6E2CB4415B4ABEC075F3E0B1 | sha1: FEC2EE8C3FBB8981570361C8F37E93C44C548D44 | sha256: AD841B1042A8CC240C388D9FAC77DE54EFBCD5246EA7CB2A4A1DD41CD86789A3 | sha512: 3E84F6E1DB917F16EBFE306497E36A9E06C2C3896BE6438ACD7FC1F4FE76FD9B17D66E8F448C934B881D4BCB24F0692A01A429EE7EB9D7F6420D5131D48A8119
md5: 5C2F813AAD58EA895D00B2FB5B9EF734 | sha1: 86FF44191EF92886C22380B869A167F27C7AC8A2 | sha256: F2143DB156404B6F21EDCF4E42D5AB301A85828052C8CBEBEA736D7D9CD3049A | sha512: A47DA2D4BB4D85408CAC7B6CCD41308C90E5FD0C38B7AD4660E45613E5A8B16E710DC24C7C8F8575DBF57CC580451A6C8997B6CBB6597DC8E27A15F45D689FC8
md5: 4301858C7CB0660BA21432D7A460646F | sha1: 2B5D280C10FED4804F88A8E7B9339B7E47EB2620 | sha256: 3ADAB7B2564EDE5A3FBF2A81CF4BDFB44B798F1B3F32639B9A5EE6F394F2264F | sha512: 4D46C5EFCE1891E6888001CF54CFF0A59CA4BF61A283F2037D2BCBBFB71551E5E789CB73A9DF92E73B85404B352F5A2216794649D506DBE7AEFD60A87B867DE9
md5: 71927C2045427EA9EF57C05B50BF3ABC | sha1: CBAF5043BE3A48A8509C12DC19C314681DC4FB06 | sha256: C528EF15C0F298F0D06E2C6796A2DE71ABC92BD6B5BEFBA524557B69E03B71B6 | sha512: 1427FB3F60832A3EC3FA7F6355FCFFDD0359D75BA8655EC340D8A70A02BA75C9C880F3DE0493EE00D692A6D302BA11172D49ACA6ACBFDF5D7691F61B4869292B
md5: 7F78AB947323DD17D5F4C01D182C1E4A | sha1: 8B24BB125E2857AD4DCCF1AEF7B511D5691EF6C1 | sha256: D90E950355835CE5DA34C4302D2E83B092A2B619AD416874BBA3FDF86CAA5232 | sha512: B600E70499643BEC81452D1FDF6AAC4BFCF36E60543E13E101B45E6A2BE0615A1119C9D7F0A4C5447642F953DFA32AF9B61D7A1D5B3976D562F500AD4D73A982
md5: 18A13B8D9E7EA0BDD9393ABA98D5CF02 | sha1: E64C9C418B717714D10CE427A2EEBFD00AF1299A | sha256: D8987DA46B75677C1F27D45364E91F008BE759B80A51C639032265AB3908E9EB | sha512: EEC4908242E23467BAED135822924EE7474C4CF345B746CBE5C6A2C1842F2F79DE1B649EA2DD9064ABC43CEE5349E6F27CBD53D2974C153ABF2971871D58A240
md5: ED3E4D52FCABEF224C1059BCB75FB4F2 | sha1: 19EA38DB9C4B20524233E8172354CF203D3DFB42 | sha256: CABEB4FA72C3C874A5C79F6FB701B7C76882ACA712142DC113D70536A9F9A5D6 | sha512: E0BBAF51B4638EBCF25DE8D90CD27DBE6727560549CE5AB520562B037D46331787975D59BCBDC463311B2B31AD633649ABE2A3F088CF57B7B89BD0CFC9D1968E
# This runs in 0.9.10+ before upgrade and uninstall.
# Use this file to do things like stop services prior to upgrade or uninstall.
# NOTE: It is an anti-pattern to call chocolateyUninstall.ps1 from here. If you
# need to uninstall an MSI prior to upgrade, put the functionality in this
# file without calling the uninstall script. Make it idempotent in the
# uninstall script so that it doesn't fail when it is already uninstalled.
# NOTE: For upgrades - like the uninstall script, this script always runs from
# the currently installed version, not from the new upgraded package version.
[CmdletBinding()]
param(
# The path to put our kernel.json folders in
$KernelFolder,
# The path where the kernel executables are (should contain the 'net461' and 'netcoreapp2.0' folders)
$InstallPath = $(Split-Path $PSScriptRoot)
)
Write-Warning "The current preview of Jupyter-PowerShell requires a preview release of dotnet $dotnetCLIRequiredVersion"
# Use the .NET Core APIs to determine the current platform; if a runtime
# exception is thrown, we are on FullCLR, not .NET Core.
try {
$Runtime = [System.Runtime.InteropServices.RuntimeInformation]
$OSPlatform = [System.Runtime.InteropServices.OSPlatform]
$IsCoreCLR = $true
$IsLinux = $Runtime::IsOSPlatform($OSPlatform::Linux)
$IsOSX = $Runtime::IsOSPlatform($OSPlatform::OSX)
$IsWindows = $Runtime::IsOSPlatform($OSPlatform::Windows)
} catch {
# If these are already set read-only, we're on core, and done here
try {
$IsCoreCLR = $false
$IsLinux = $false
$IsOSX = $false
$IsWindows = $true
} catch {
}
}
$dotnetCLIChannel = "preview"
$dotnetCLIRequiredVersion = "2.0.0-preview2-006502"
function script:Test-Command([string]$command, [string]$NotFoundMessage) {
if (Get-Command $command -ErrorAction SilentlyContinue) {
return $true
} else {
if ($NotFoundMessage -ne $null) {
Write-Warning $NotFoundMessage
}
return $false
}
}
# Try to fix the Path until we can find dotnet.exe
$dotnetPath = if ($IsWindows) {
"$env:ProgramFiles\dotnet" + ';' + "$env:LocalAppData\Microsoft\dotnet"
} else {
"$env:HOME/.dotnet"
}
$Targets = @()
if ($IsWindows) {
$Targets += "PowerShell-Full"
if(!$KernelFolder) {
$KernelFolder = Join-Path $Env:AppData "jupyter\kernels\"
}
} else {
if(!$KernelFolder) {
if($IsLinux) {
$KernelFolder = "~/.local/share/jupyter/kernels"
} else {
$KernelFolder = "~/Library/Jupyter/kernels"
}
}
}
if (-not (Test-Command 'dotnet')) {
$originalPath = $env:PATH
$env:PATH += [IO.Path]::PathSeparator + $dotnetPath
if (-not (Test-Command 'dotnet')) {
$env:PATH = $originalPath
}
}
if(Test-Command 'dotnet' "'dotnet' not found. In order to use the 'PowerShell (Core)' Jupyter kernel, you need to install dotnet core.") {
if (($dotnetCLIIntalledVersion = dotnet --version) -eq $dotnetCLIRequiredVersion) {
$Targets += "PowerShell-Core"
} else {
Write-Warning "
The currently installed 'dotnet' (.NET Command Line Tools) is not the expected version.
Installed version: $dotnetCLIIntalledVersion
Expected version: $dotnetCLIRequiredVersion
You can get the latest version from https://microsoft.com/net/core/preview or by downloading and running:
https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.$( if($IsWindows){ "ps1" } else { "sh" } )
`n
"
if(!$IsWindows) {
Write-Error "No PowerShell kernel installed. Install dotnet $dotnetCLIRequiredVersion to your Path and run '$PSCommandPath' again."
}
}
}
foreach($target in $Targets) {
$kernelFile = Join-Path $kernelFolder "$target\kernel.json"
Remove-Item (Join-Path $InstallPath "$target\*.pdb")
$kernelPath = Resolve-Path (Join-Path $InstallPath "$target\PowerShell-Kernel.???")
if (!(Test-Path $kernelPath)) {
Write-Warning "
Can't find the PowerShell kernel file in $kernelPath
Expected the $target kernel to be in the same folder with this script.
If you're running this script from the source code rather than a build:
- Build the project by running: dotnet restore; dotnet build;
- Copy this file to the 'Debug' or 'Release' output folder
- Re-run this file
`n
"
}
# Necessary for windows only:
$kernelPath = $kernelPath -replace "\\", "\\"
$null = New-Item -Path (Split-Path $kernelFile) -Force -ItemType Directory
$kernelData = @(
"{"
" ""argv"": ["
" ""dotnet"","
" ""$kernelPath"","
" ""{connection_file}"""
" ],"
" ""display_name"": ""$($target -replace '-(.*)',' ($1)')"","
" ""language"": ""PowerShell"""
"}"
)
if($target -match "Full") { $kernelData = $kernelData -notmatch "dotnet" }
Set-Content -Path $kernelFile -Value ($kernelData -join "`n")
}
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
To verify the files, from the root of the package output:
# Remove the nuget-generated folders and files:
Remove-Item _rels, package, *.* -recurse
# Check the catalog against all the remaining files:
Test-FileCatalog .\tools\Jupyter-PowerShell.cat . -Detailed
Log in or click on link to see number of positives.
- AsyncIO.dll (ce3369099418) - ## / 61
- System.ComponentModel.Primitives.dll (bf2ced8b51ef) - ## / 67
- NetMQ.dll (ce9b347a4cf3) - ## / 61
- System.Threading.Thread.dll (d6b0e3bc1203) - ## / 68
- Microsoft.CodeAnalysis.CSharp.dll (70ded44bcf96) - ## / 62
- Microsoft.CodeAnalysis.dll (ddf0e2b96b3f) - ## / 62
- Newtonsoft.Json.dll (973fd70ce48e) - ## / 65
- jupyter-powershell.1.0.0-beta-5.nupkg (e6df784356c7) - ## / 61
- AsyncIO.dll (088d1de315e8) - ## / 62
- Jupyter.dll (a26400a41747) - ## / 64
- Microsoft.ApplicationInsights.dll (ca72a20cf8ef) - ## / 61
- Microsoft.Extensions.Configuration.Abstractions.dll (24e1ea4b1ccc) - ## / 63
- Microsoft.Extensions.Configuration.Binder.dll (929c8444e898) - ## / 63
- Microsoft.Extensions.Configuration.dll (06c59e107ba0) - ## / 64
- Microsoft.Extensions.Configuration.FileExtensions.dll (4c48c6c03c62) - ## / 63
- Microsoft.Extensions.Configuration.Json.dll (7c271c09db5d) - ## / 63
- Microsoft.Extensions.DependencyInjection.Abstractions.dll (51e09e5457ee) - ## / 62
- Microsoft.Extensions.FileProviders.Abstractions.dll (3d06617fd136) - ## / 63
- Microsoft.Extensions.FileProviders.Physical.dll (fc285202c18e) - ## / 63
- Microsoft.Extensions.FileSystemGlobbing.dll (ff3c25b0f8ec) - ## / 63
- Microsoft.Extensions.Logging.Abstractions.dll (4b398ea6e30b) - ## / 63
- Microsoft.Extensions.Logging.Console.dll (e31a2c57a227) - ## / 63
- Microsoft.Extensions.Logging.Debug.dll (6a7eec568b22) - ## / 62
- Microsoft.Extensions.Logging.dll (5b9cb133983a) - ## / 63
- Microsoft.Extensions.Options.dll (67a91613554b) - ## / 63
- Microsoft.Extensions.Primitives.dll (04692e109ad1) - ## / 63
- Microsoft.PowerShell.Commands.Diagnostics.dll (956eff950101) - ## / 64
- Microsoft.PowerShell.Commands.Management.dll (e0d24ec45fde) - ## / 64
- Microsoft.PowerShell.Commands.Utility.dll (040c8fe328e8) - ## / 64
- Microsoft.PowerShell.ConsoleHost.dll (478043b95362) - ## / 64
- Microsoft.PowerShell.CoreCLR.AssemblyLoadContext.dll (ab98afd68e61) - ## / 63
- Microsoft.PowerShell.CoreCLR.Eventing.dll (e3798271c535) - ## / 64
- Microsoft.PowerShell.Security.dll (37b9526cd23b) - ## / 64
- Microsoft.Win32.Registry.AccessControl.dll (0724bf4e2934) - ## / 64
- Microsoft.WSMan.Management.dll (162d7ce00ddd) - ## / 63
- Microsoft.WSMan.Runtime.dll (6306c7834f21) - ## / 64
- NetMQ.dll (8147b8bf4728) - ## / 62
- Newtonsoft.Json.dll (0268d8851603) - ## / 68
- PowerShell-Kernel.dll (c4110370fee0) - ## / 58
- System.Data.SqlClient.dll (f168edf9e705) - ## / 64
- System.IO.Packaging.dll (961bf3cf642f) - ## / 62
- System.Management.Automation.dll (31ddfa447b0b) - ## / 63
- System.Net.Http.WinHttpHandler.dll (05b63bf7dfbd) - ## / 63
- System.Runtime.CompilerServices.Unsafe.dll (956b82bee068) - ## / 63
- System.Security.Cryptography.Pkcs.dll (6f23aa2f4096) - ## / 63
- System.ServiceModel.Duplex.dll (6e822c817c10) - ## / 64
- System.ServiceModel.Http.dll (508fca6e59ad) - ## / 64
- System.ServiceModel.NetTcp.dll (a39bd7dfac72) - ## / 64
- System.ServiceModel.Primitives.dll (af9ba8c0e020) - ## / 64
- System.ServiceModel.Security.dll (2813724e70a7) - ## / 64
- System.ServiceProcess.ServiceController.dll (65823a5d0a0a) - ## / 64
- System.Text.Encoding.CodePages.dll (bdb34a9e439f) - ## / 64
- System.Text.Encodings.Web.dll (de5940f4e6da) - ## / 63
- System.Threading.AccessControl.dll (02d78a9dbfc2) - ## / 64
- System.Private.ServiceModel.dll (bd51e4feec59) - ## / 61
- Microsoft.Management.Infrastructure.dll (70de95deae3f) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (72f548c63fbb) - ## / 66
- System.Data.SqlClient.dll (f268590cbf0b) - ## / 64
- System.Private.ServiceModel.dll (263b6d76a613) - ## / 64
- System.Text.Encoding.CodePages.dll (aed2970b88f3) - ## / 64
- Microsoft.Win32.Registry.AccessControl.dll (42e1847fc023) - ## / 63
- System.Data.SqlClient.dll (cb2f364769cc) - ## / 64
- System.Net.Http.WinHttpHandler.dll (485fcb4ddf07) - ## / 64
- System.Security.Cryptography.Pkcs.dll (7ae90f192dc5) - ## / 64
- System.ServiceProcess.ServiceController.dll (3c68ac0da763) - ## / 62
- System.Threading.AccessControl.dll (abdc4d9d5f12) - ## / 63
- sni.dll (0e90104f6d30) - ## / 63
- sni.dll (dcc27b0c570a) - ## / 62
- sni.dll (38959d773598) - ## / 63
- Microsoft.Management.Infrastructure.dll (7f0e720e5a47) - ## / 57
- Microsoft.Management.Infrastructure.Native.dll (05e7758cc3c8) - ## / 57
- mi.dll (03bd3eda42cf) - ## / 57
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (89eb73d8fc04) - ## / 57
- miutils.dll (14e61c9b4ed3) - ## / 56
- Microsoft.Management.Infrastructure.Native.dll (6ae9970129d0) - ## / 57
- mi.dll (8e3957736a5a) - ## / 63
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (edad3fd958ab) - ## / 64
- miutils.dll (7124a56f420e) - ## / 64
- System.Private.ServiceModel.dll (f04c71225466) - ## / 67
- System.Private.ServiceModel.dll (553e18262f7c) - ## / 64
- mi.dll (6f1c5e907346) - ## / 58
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (784408148584) - ## / 58
- miutils.dll (1d46f002dd7a) - ## / 57
- mi.dll (4359a7b69adb) - ## / 67
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (8370307decc2) - ## / 65
- miutils.dll (c0a22f070079) - ## / 65
- Microsoft.Management.Infrastructure.dll (119a91f90c82) - ## / 63
- Microsoft.Management.Infrastructure.Native.dll (6d4fc205aae2) - ## / 63
- mi.dll (9d53daf0a0d5) - ## / 58
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (a1cfb745de88) - ## / 58
- miutils.dll (5ae1314a4e16) - ## / 64
- Microsoft.Management.Infrastructure.dll (cd6e0a1d4422) - ## / 64
- mi.dll (898675531050) - ## / 57
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (cc380faccaa9) - ## / 57
- miutils.dll (934370e358a4) - ## / 57
- mi.dll (390cdb2e7aa8) - ## / 64
- Microsoft.Management.Infrastructure.Native.Unmanaged.dll (65b913d2362b) - ## / 64
- miutils.dll (d7935efd192c) - ## / 64
- Jupyter.dll (0c014c4ea288) - ## / 64
- Microsoft.Extensions.FileSystemGlobbing.dll (6b0bb0c36552) - ## / 63
- Microsoft.Management.Infrastructure.dll (77a419fb740d) - ## / 67
- Microsoft.Management.Infrastructure.Native.dll (413b6cf1a6a5) - ## / 67
- Microsoft.Win32.Primitives.dll (90c97d817f0f) - ## / 64
- netstandard.dll (7e6005d07e2c) - ## / 64
- PowerShell-Kernel.exe (1ac8adc74474) - ## / 64
- System.AppContext.dll (a3caee3fb396) - ## / 64
- System.Collections.Concurrent.dll (3b1280d5402a) - ## / 64
- System.Collections.dll (04641b94f515) - ## / 64
- System.Collections.NonGeneric.dll (a4646a6bf1cd) - ## / 57
- System.Collections.Specialized.dll (ad59c1e6a7be) - ## / 64
- System.ComponentModel.dll (000cb2e85132) - ## / 64
- System.ComponentModel.EventBasedAsync.dll (8d7a8cf4cba7) - ## / 64
- System.ComponentModel.TypeConverter.dll (b0eb865799b1) - ## / 56
- System.Console.dll (16d9a5474ad4) - ## / 64
- System.Data.Common.dll (671b4f883876) - ## / 64
- System.Diagnostics.Contracts.dll (9a048a736b2c) - ## / 64
- System.Diagnostics.Debug.dll (ebfac6d49b1d) - ## / 64
- System.Diagnostics.FileVersionInfo.dll (916403e1811e) - ## / 64
- System.Diagnostics.Process.dll (75c42ca79b74) - ## / 62
- System.Diagnostics.StackTrace.dll (44c9c3ff0759) - ## / 63
- System.Diagnostics.TextWriterTraceListener.dll (0789c34b84db) - ## / 64
- System.Diagnostics.Tools.dll (50e498080e4e) - ## / 64
- System.Diagnostics.TraceSource.dll (437e84542508) - ## / 64
- System.Diagnostics.Tracing.dll (baec85e4793e) - ## / 64
- System.Drawing.Primitives.dll (200eb4fe44ab) - ## / 64
- System.Dynamic.Runtime.dll (ff19133c907f) - ## / 64
- System.Globalization.Calendars.dll (e2c9f4105901) - ## / 64
- System.Globalization.dll (6e74661464ad) - ## / 64
- System.Globalization.Extensions.dll (4bd618246989) - ## / 64
- System.IO.Compression.dll (579bd6d3f518) - ## / 64
- System.IO.Compression.ZipFile.dll (a1b70b4d2311) - ## / 64
- System.IO.dll (763dec8a767c) - ## / 64
- System.IO.FileSystem.dll (86c4549fd347) - ## / 63
- System.IO.FileSystem.DriveInfo.dll (5a682129f9a3) - ## / 63
- System.IO.FileSystem.Primitives.dll (8f2401a147fc) - ## / 64
- System.IO.FileSystem.Watcher.dll (69ac2def4168) - ## / 57
- System.IO.IsolatedStorage.dll (6b1604550d04) - ## / 64
- System.IO.MemoryMappedFiles.dll (ba5f9925a4f2) - ## / 64
- System.IO.Pipes.dll (50c1a3ff3fa6) - ## / 64
- System.IO.UnmanagedMemoryStream.dll (a831c523a4c7) - ## / 58
- System.Linq.dll (788975a8404d) - ## / 58
- System.Linq.Expressions.dll (800066ed8daf) - ## / 64
- System.Linq.Parallel.dll (99bb6ab6a53d) - ## / 64
- System.Linq.Queryable.dll (656a5912f83b) - ## / 64
- System.Management.Automation.dll (d4176dc37182) - ## / 62
- System.Net.Http.dll (f01956f72881) - ## / 63
- System.Net.NameResolution.dll (b163de794002) - ## / 63
- System.Net.NetworkInformation.dll (8bfe63325e6f) - ## / 64
- System.Net.Ping.dll (af14ae4724a7) - ## / 64
- System.Net.Primitives.dll (9714e6cb25bf) - ## / 64
- System.Net.Requests.dll (706013ab2358) - ## / 64
- System.Net.Security.dll (64d97619c4fb) - ## / 64
- System.Net.Sockets.dll (ffc3ff67ec8a) - ## / 64
- System.Net.WebHeaderCollection.dll (2002ed680872) - ## / 64
- System.Net.WebSockets.Client.dll (9c00d8b3910d) - ## / 64
- System.Net.WebSockets.dll (97d7d33f2005) - ## / 64
- System.ObjectModel.dll (349dddd54518) - ## / 64
- System.Reflection.dll (57d555dd541d) - ## / 64
- System.Reflection.Extensions.dll (23cc15cc438b) - ## / 64
- System.Reflection.Primitives.dll (150a26a88d1f) - ## / 63
- System.Resources.Reader.dll (68e883c4bf02) - ## / 64
- System.Resources.ResourceManager.dll (4d3b79d1fef0) - ## / 64
- System.Resources.Writer.dll (3ab5dc3c798a) - ## / 63
- System.Runtime.CompilerServices.VisualC.dll (8902a79c2f03) - ## / 64
- System.Runtime.dll (388baaf11002) - ## / 64
- System.Runtime.Extensions.dll (370a9fd84add) - ## / 64
- System.Runtime.Handles.dll (50ecca7994a3) - ## / 64
- System.Runtime.InteropServices.dll (0ebac5633316) - ## / 64
- System.Runtime.InteropServices.RuntimeInformation.dll (7b0135c61107) - ## / 64
- System.Runtime.Numerics.dll (aecaaa892502) - ## / 64
- System.Runtime.Serialization.Formatters.dll (09ef0476bba5) - ## / 63
- System.Runtime.Serialization.Json.dll (f3a954b18272) - ## / 64
- System.Runtime.Serialization.Primitives.dll (e570a6939387) - ## / 63
- System.Runtime.Serialization.Xml.dll (daeb96991cb7) - ## / 63
- System.Security.Claims.dll (4eafaff07e32) - ## / 58
- System.Security.Cryptography.Algorithms.dll (2e4a70f399db) - ## / 58
- System.Security.Cryptography.Csp.dll (7804a951c01d) - ## / 64
- System.Security.Cryptography.Encoding.dll (93f35428299b) - ## / 64
- System.Security.Cryptography.Primitives.dll (71b9848672b1) - ## / 58
- System.Security.Cryptography.X509Certificates.dll (966df2eca344) - ## / 58
- System.Security.Principal.dll (63f6b6f1c47e) - ## / 64
- System.Security.SecureString.dll (55d2c049c38a) - ## / 64
- System.Text.Encoding.dll (b8ef06708c52) - ## / 64
- System.Text.Encoding.Extensions.dll (4b3036ddec7d) - ## / 64
- System.Text.RegularExpressions.dll (b1ea22b75d41) - ## / 64
- System.Threading.dll (ed2d33d48486) - ## / 64
- System.Threading.Overlapped.dll (638dd2c26eca) - ## / 64
- System.Threading.Tasks.dll (772beaf09565) - ## / 64
- System.Threading.Tasks.Parallel.dll (7ec31ba4c974) - ## / 64
- System.Threading.ThreadPool.dll (51e79a36ce48) - ## / 64
- System.Threading.Timer.dll (0764040db476) - ## / 64
- System.ValueTuple.dll (ad841b1042a8) - ## / 64
- System.Xml.ReaderWriter.dll (f2143db15640) - ## / 64
- System.Xml.XDocument.dll (3adab7b2564e) - ## / 64
- System.Xml.XmlDocument.dll (c528ef15c0f2) - ## / 64
- System.Xml.XmlSerializer.dll (d90e95035583) - ## / 64
- System.Xml.XPath.dll (d8987da46b75) - ## / 64
- System.Xml.XPath.XDocument.dll (cabeb4fa72c3) - ## / 64
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 |
---|---|---|---|---|
Jupyter-PowerShell 1.0.0-beta-7 | 504 | Monday, January 15, 2018 | Exempted | |
Jupyter-PowerShell 1.0.0-beta-6 | 231 | Monday, January 15, 2018 | Exempted | |
Jupyter-PowerShell 1.0.0-beta-5 | 291 | Tuesday, July 18, 2017 | Exempted |
Copyright (c) 2017 Joel Bennett
This package has no dependencies.
Ground Rules:
- This discussion is only about Jupyter-PowerShell and the Jupyter-PowerShell 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 Jupyter-PowerShell, 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.