Unpacking Software Livestream

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

Learn More

Chocolatey Product Spotlight

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

Learn More

Chocolatey Coding Livestream

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

Learn More

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

Webinar from
Wednesday, 17 January 2024

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

Watch On-Demand
Chocolatey Community Coffee Break

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

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

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

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

Livestream from
Thursday, 9 June 2022

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

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

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

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

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

Watch On-Demand

Downloads:

440

Downloads of v 1.0.0:

121

Last Update:

19 Sep 2020

Package Maintainer(s):

Software Author(s):

  • Integration Playbook

Tags:

logicapps integration

IntegrationPlaybook Data Transformation Modeller

This is not the latest version of IntegrationPlaybook Data Transformation Modeller available.

  • 1
  • 2
  • 3

1.0.0 | Updated: 19 Sep 2020

Downloads:

440

Downloads of v 1.0.0:

121

Maintainer(s):

Software Author(s):

  • Integration Playbook

IntegrationPlaybook Data Transformation Modeller 1.0.0

This is not the latest version of IntegrationPlaybook Data Transformation Modeller available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install IntegrationPlaybook Data Transformation Modeller, run the following command from the command line or from PowerShell:

>

To upgrade IntegrationPlaybook Data Transformation Modeller, run the following command from the command line or from PowerShell:

>

To uninstall IntegrationPlaybook Data Transformation Modeller, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

1. Enter Your Internal Repository Url

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


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

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

3. Copy Your Script

choco upgrade integrationplaybook-datatransformation-modeller -y --source="'INTERNAL REPO URL'" --version="'1.0.0'" [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 integrationplaybook-datatransformation-modeller -y --source="'INTERNAL REPO URL'" --version="'1.0.0'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install integrationplaybook-datatransformation-modeller
  win_chocolatey:
    name: integrationplaybook-datatransformation-modeller
    version: '1.0.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'integrationplaybook-datatransformation-modeller' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.0'
end

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


cChocoPackageInstaller integrationplaybook-datatransformation-modeller
{
    Name     = "integrationplaybook-datatransformation-modeller"
    Version  = "1.0.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'integrationplaybook-datatransformation-modeller':
  ensure   => '1.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator flcdrg on 21 Sep 2020.

Description

A tool which will help business analysts and developers understand and document complex data mappings between systems


tools\appsettings.json
{
  "Serilog": {
    "Using": [ "Serilog.Sinks.File" ],
    "MinimumLevel": "Debug",
    "WriteTo": [
      {
        "Name": "File",
        "Args": {
          "path": "%APPDATA%/IntegrationPlaybook/DataTransformationModeller/Logs/log.txt",
          "rollingInterval": "Day",
          "retainedFileCountLimit": 5
        }
      }
    ],
    "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
    "Destructure": [
      
      {
        "Name": "ToMaximumDepth",
        "Args": { "maximumDestructuringDepth": 4 }
      },
      {
        "Name": "ToMaximumStringLength",
        "Args": { "maximumStringLength": 100 }
      },
      {
        "Name": "ToMaximumCollectionCount",
        "Args": { "maximumCollectionCount": 10 }
      }
    ],
    "Properties": {
      "Application": "Integration Playbook - Business Data Modeller",
      "Version": "__PackageVersionNumber__"
    }
  }
}
tools\DocumentFormat.OpenXml.dll
md5: 08C5A9A192BA53237E3CAF17235A5D8A | sha1: E2ABFD1F939F5E11B59F8A4D5D8E3044430012C8 | sha256: 6B3C8640D5599CB41BAD4211DCA617C9AE4B0B97FF0037A7A4916BCF7BC5B06A | sha512: CBD76C358B0B399F92BE2D743BD2CE7DC0BF95EA1311CF5D229E97857639AC780089BD785D7D5E93BF505EE2432AB4653D59833256B2EEDDF8AF927894D3488D
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "IntegrationPlaybook.Analysis.DataTransformation.Modeller/1.0.43.0": {
        "dependencies": {
          "DocumentFormat.OpenXml": "2.11.0",
          "Microsoft.Extensions.Configuration.Json": "3.1.5",
          "Microsoft.Extensions.DependencyInjection": "3.1.5",
          "Microsoft.Extensions.Hosting": "3.1.5",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging.Configuration": "3.1.5",
          "Microsoft.Extensions.Logging.Debug": "3.1.5",
          "Newtonsoft.Json": "12.0.3",
          "Serilog.Extensions.Hosting": "3.1.0",
          "Serilog.Extensions.Logging.File": "2.0.0",
          "Serilog.Settings.Configuration": "3.1.0"
        },
        "runtime": {
          "IntegrationPlaybook.Analysis.DataTransformation.Modeller.dll": {}
        }
      },
      "DocumentFormat.OpenXml/2.11.0": {
        "dependencies": {
          "System.IO.Packaging": "4.7.0"
        },
        "runtime": {
          "lib/netstandard2.0/DocumentFormat.OpenXml.dll": {
            "assemblyVersion": "2.11.0.0",
            "fileVersion": "2.11.0.0"
          }
        }
      },
      "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
        "dependencies": {
          "System.AppContext": "4.1.0",
          "System.Collections": "4.0.11",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.0.1",
          "System.Reflection.TypeExtensions": "4.1.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.1.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
            "assemblyVersion": "2.0.4.0",
            "fileVersion": "2.0.4.0"
          }
        }
      },
      "Microsoft.Extensions.Configuration/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Abstractions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Primitives": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Binder/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.CommandLine/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.CommandLine.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.FileExtensions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5",
          "Microsoft.Extensions.FileProviders.Physical": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Json/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5",
          "Microsoft.Extensions.Configuration.FileExtensions": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Configuration.UserSecrets/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Json": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.UserSecrets.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.DependencyInjection/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.5": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.DependencyModel/2.0.4": {
        "dependencies": {
          "Microsoft.DotNet.PlatformAbstractions": "2.0.4",
          "Newtonsoft.Json": "12.0.3",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Dynamic.Runtime": "4.0.11",
          "System.Linq": "4.1.0"
        },
        "runtime": {
          "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
            "assemblyVersion": "2.0.4.0",
            "fileVersion": "2.0.4.0"
          }
        }
      },
      "Microsoft.Extensions.FileProviders.Abstractions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Primitives": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.FileProviders.Physical/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.FileProviders.Abstractions": "3.1.5",
          "Microsoft.Extensions.FileSystemGlobbing": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.FileSystemGlobbing/3.1.5": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Hosting/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "3.1.5",
          "Microsoft.Extensions.Configuration.CommandLine": "3.1.5",
          "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.5",
          "Microsoft.Extensions.Configuration.UserSecrets": "3.1.5",
          "Microsoft.Extensions.DependencyInjection": "3.1.5",
          "Microsoft.Extensions.FileProviders.Physical": "3.1.5",
          "Microsoft.Extensions.Hosting.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging": "3.1.5",
          "Microsoft.Extensions.Logging.Console": "3.1.5",
          "Microsoft.Extensions.Logging.Debug": "3.1.5",
          "Microsoft.Extensions.Logging.EventLog": "3.1.5",
          "Microsoft.Extensions.Logging.EventSource": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Hosting.Abstractions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.5",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.5",
          "Microsoft.Extensions.FileProviders.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Binder": "3.1.5",
          "Microsoft.Extensions.DependencyInjection": "3.1.5",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.5",
          "Microsoft.Extensions.Options": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.Abstractions/3.1.5": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.Configuration/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.5",
          "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Configuration.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.Console/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging": "3.1.5",
          "Microsoft.Extensions.Logging.Configuration": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Console.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.Debug/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.Debug.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.EventLog/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.5",
          "System.Diagnostics.EventLog": "4.7.0"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventLog.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Logging.EventSource/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Logging.EventSource.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Options/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.5",
          "Microsoft.Extensions.Primitives": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.5": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.5",
          "Microsoft.Extensions.Configuration.Binder": "3.1.5",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.5",
          "Microsoft.Extensions.Options": "3.1.5"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.Extensions.Primitives/3.1.5": {
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
            "assemblyVersion": "3.1.5.0",
            "fileVersion": "3.100.520.27009"
          }
        }
      },
      "Microsoft.NETCore.Platforms/3.1.0": {},
      "Microsoft.NETCore.Targets/1.1.0": {},
      "Microsoft.Win32.Registry/4.7.0": {
        "dependencies": {
          "System.Security.AccessControl": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "runtime.native.System/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "Serilog/2.8.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.8.0.0"
          }
        }
      },
      "Serilog.Extensions.Hosting/3.1.0": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.5",
          "Microsoft.Extensions.Hosting.Abstractions": "3.1.5",
          "Microsoft.Extensions.Logging.Abstractions": "3.1.5",
          "Serilog": "2.8.0",
          "Serilog.Extensions.Logging": "3.0.1"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Extensions.Hosting.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.1.0.0"
          }
        }
      },
      "Serilog.Extensions.Logging/3.0.1": {
        "dependencies": {
          "Microsoft.Extensions.Logging": "3.1.5",
          "Serilog": "2.8.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.0.1.0"
          }
        }
      },
      "Serilog.Extensions.Logging.File/2.0.0": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "3.1.5",
          "Microsoft.Extensions.Configuration.Binder": "3.1.5",
          "Serilog": "2.8.0",
          "Serilog.Extensions.Logging": "3.0.1",
          "Serilog.Formatting.Compact": "1.0.0",
          "Serilog.Sinks.Async": "1.1.0",
          "Serilog.Sinks.RollingFile": "3.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Extensions.Logging.File.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "2.0.0.0"
          }
        }
      },
      "Serilog.Formatting.Compact/1.0.0": {
        "dependencies": {
          "Serilog": "2.8.0"
        },
        "runtime": {
          "lib/netstandard1.1/Serilog.Formatting.Compact.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.0.0"
          }
        }
      },
      "Serilog.Settings.Configuration/3.1.0": {
        "dependencies": {
          "Microsoft.Extensions.DependencyModel": "2.0.4",
          "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.5",
          "Serilog": "2.8.0"
        },
        "runtime": {
          "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
            "assemblyVersion": "3.1.0.0",
            "fileVersion": "3.1.0.0"
          }
        }
      },
      "Serilog.Sinks.Async/1.1.0": {
        "dependencies": {
          "Serilog": "2.8.0",
          "System.Collections.Concurrent": "4.0.12"
        },
        "runtime": {
          "lib/netstandard1.1/Serilog.Sinks.Async.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.1.0.0"
          }
        }
      },
      "Serilog.Sinks.File/3.2.0": {
        "dependencies": {
          "Serilog": "2.8.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.0.1",
          "System.IO.FileSystem.Primitives": "4.0.1",
          "System.Text.Encoding.Extensions": "4.0.11",
          "System.Threading": "4.3.0",
          "System.Threading.Timer": "4.0.1"
        },
        "runtime": {
          "lib/netstandard1.3/Serilog.Sinks.File.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.2.0.0"
          }
        }
      },
      "Serilog.Sinks.RollingFile/3.3.0": {
        "dependencies": {
          "Serilog.Sinks.File": "3.2.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.0.1",
          "System.Runtime.InteropServices": "4.1.0",
          "System.Text.Encoding.Extensions": "4.0.11"
        },
        "runtime": {
          "lib/netstandard1.3/Serilog.Sinks.RollingFile.dll": {
            "assemblyVersion": "2.0.0.0",
            "fileVersion": "3.3.0.0"
          }
        }
      },
      "System.AppContext/4.1.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.0.12": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "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.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.EventLog/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.Win32.Registry": "4.7.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Diagnostics.Tracing/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.0.11": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.1.0",
          "System.Linq.Expressions": "4.1.0",
          "System.ObjectModel": "4.0.12",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.0.1",
          "System.Reflection.Emit.ILGeneration": "4.0.1",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.0.1",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.0.1",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.0.1": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.IO.Packaging/4.7.0": {},
      "System.Linq/4.1.0": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "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.1.0": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.1.0",
          "System.ObjectModel": "4.0.12",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.0.1",
          "System.Reflection.Emit.ILGeneration": "4.0.1",
          "System.Reflection.Emit.Lightweight": "4.0.1",
          "System.Reflection.Extensions": "4.0.1",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.1.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.ObjectModel/4.0.12": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.0.1": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.0.1",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.0.1": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.0.1": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.0.1",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "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.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.1.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.0.1"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.1.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.0.0"
        }
      },
      "System.Security.AccessControl/4.7.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "System.Security.Principal.Windows": "4.7.0"
        }
      },
      "System.Security.Principal.Windows/4.7.0": {},
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.Extensions/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Timer/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "3.1.0",
          "Microsoft.NETCore.Targets": "1.1.0",
          "System.Runtime": "4.3.0"
        }
      }
    }
  },
  "libraries": {
    "IntegrationPlaybook.Analysis.DataTransformation.Modeller/1.0.43.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "DocumentFormat.OpenXml/2.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-q+BkHWQ8ZlZxpVcfY5IMnXPzD3jrIxUsgf+qwjUpDqyNPR4YvkEKf/o1CTQ0I+ivifuJnG1MJhoFVWEoGLfXtA==",
      "path": "documentformat.openxml/2.11.0",
      "hashPath": "documentformat.openxml.2.11.0.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2HjSGp63VCLQaeGadrLYR868g25mJHr+TFF81yWCaClzjUbU2vNDx6km7SUgPnoLVksE/1e7in88eh+oPtc4aQ==",
      "path": "microsoft.dotnet.platformabstractions/2.0.4",
      "hashPath": "microsoft.dotnet.platformabstractions.2.0.4.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LZfdAP8flK4hkaniUv6TlstDX9FXLmJMX1A4mpLghAsZxTaJIgf+nzBNiPRdy/B5Vrs74gRONX3JrIUJQrebmA==",
      "path": "microsoft.extensions.configuration/3.1.5",
      "hashPath": "microsoft.extensions.configuration.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VBcAk6s9izZr04WCzNqOh1Sxz2RbVSh0G79MfpHSDv16cUJtSEYEHody9ZnF71LBEktzdu6cvDFBOFMh43q0iA==",
      "path": "microsoft.extensions.configuration.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.configuration.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Binder/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZR/zjBxkvdnnWhRoBHDT95uz1ZgJFhv1QazmKCIcDqy/RXqi+6dJ/PfxDhEnzPvk9HbkcGfFsPEu1vSIyxDqBQ==",
      "path": "microsoft.extensions.configuration.binder/3.1.5",
      "hashPath": "microsoft.extensions.configuration.binder.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.CommandLine/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-b/fT3Ed4wE4O3MltjLbbTiDrkzZEzxX0+DF6A0Ena0edoy+PJxD7Hia963p+lVFOt10XUIzuQghlyC/7aRA0cQ==",
      "path": "microsoft.extensions.configuration.commandline/3.1.5",
      "hashPath": "microsoft.extensions.configuration.commandline.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oIbBf9zATSJaZvrmsbrMkeenJc4+aQ0wnvTcOi/E9rDhw3LsjuT33+qiqchpeji7S7r4dfv2yFa29ZFdMJgEAQ==",
      "path": "microsoft.extensions.configuration.environmentvariables/3.1.5",
      "hashPath": "microsoft.extensions.configuration.environmentvariables.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.FileExtensions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zDXWDDaHMKX2ArwhrPprKgZfpCDuaqrcaGX5IG9EybQ6IGYZ7aMJftLan/bfxteI5bnga912y5nIYrTuXaxpug==",
      "path": "microsoft.extensions.configuration.fileextensions/3.1.5",
      "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Json/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Yk7+e+13JKN9rvoUrWCil3Jdbrbx5owGhl5z2u5kgpEIuAn+eqWq624/wvou0/zzPxC8QyID/cSi1oLf9ngNhQ==",
      "path": "microsoft.extensions.configuration.json/3.1.5",
      "hashPath": "microsoft.extensions.configuration.json.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.UserSecrets/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-y4jLBVPzQP5dOTuqA/wFnZDGi7s5NAbe5jvYe1V3DS6O7pt/jFwj4X8jbQXY3GNg/52TmUx/X6k3pDjoV5TLQg==",
      "path": "microsoft.extensions.configuration.usersecrets/3.1.5",
      "hashPath": "microsoft.extensions.configuration.usersecrets.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyInjection/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+RTJQi7TtenIHZqL2zr6523PYXfL88Ruu4UIVmspIxdw14GHd8zZ+2dGLSdwX7fn41Hth4d42S1e1iHWVOJyQ==",
      "path": "microsoft.extensions.dependencyinjection/3.1.5",
      "hashPath": "microsoft.extensions.dependencyinjection.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2VSCj2TZPMdeEi279Lawi6qJQu4+sEWizSOYrhY6hapyS1jxn1jVUZT1Ugv68bya+x8+3lD4+RqhUZql9PhISQ==",
      "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyModel/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jnHAeijsfJFQXdXmnYK/NhQIkgBUeth//RZZkf0ldIKC+jARbf7YxbA9uTrs/EPhuQxHXaDxVuMyscgmL+UqfA==",
      "path": "microsoft.extensions.dependencymodel/2.0.4",
      "hashPath": "microsoft.extensions.dependencymodel.2.0.4.nupkg.sha512"
    },
    "Microsoft.Extensions.FileProviders.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LrEQ97jhSWw84Y1m+CJfvh9qTUUswt27au54QYn2x5PCMPPgR+yAv/4VTJKMGSSI9T4scSLBXZ/fVhT4fPTCtA==",
      "path": "microsoft.extensions.fileproviders.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.FileProviders.Physical/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JemaaSSQosZ59flEfNzqvQRHDt1u4aEwV/pR4eFQEXpaX7lHI13gSbQbQ7TMGDdmY9F2t2+6RPp44Mmf9O1DsQ==",
      "path": "microsoft.extensions.fileproviders.physical/3.1.5",
      "hashPath": "microsoft.extensions.fileproviders.physical.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.FileSystemGlobbing/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ObdbZ/L3X89KOHI0K/zlwufnlHESYSp2L/Z1XgYp3Odekmzevl06iffrtIBP9Qgw2RxBVAyTEVNrIouCuik6yg==",
      "path": "microsoft.extensions.filesystemglobbing/3.1.5",
      "hashPath": "microsoft.extensions.filesystemglobbing.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Hosting/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PRp2lU0hKHIih67CIOlx21imEKfB5ICcSyB8vGtLtCmrSBNeAOsObdqxaAosdodCqo2n8gNZD8wVf/DLOWRfug==",
      "path": "microsoft.extensions.hosting/3.1.5",
      "hashPath": "microsoft.extensions.hosting.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Hosting.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-e57iK9spITqHE7qNgC3IowzK+PK5NC2rmVY4Sz+ZoDNO24nIsgllIRbanSbt2wQz7Iy/N8Jm3C1sXqKc8zEOMQ==",
      "path": "microsoft.extensions.hosting.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.hosting.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C85NYDym6xy03o70vxX+VQ4ZEjj5Eg5t5QoGW0t100vG5MmPL6+G3XXcQjIIn1WRQrjzGWzQwuKf38fxXEWIWA==",
      "path": "microsoft.extensions.logging/3.1.5",
      "hashPath": "microsoft.extensions.logging.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Abstractions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZvwowjRSWXewdPI+whPFXgwF4Qme6Q9KV9SCPEITSGiqHLArct7q5hTBtTzj3GPsVLjTqehvTg6Bd/EQk9JS0A==",
      "path": "microsoft.extensions.logging.abstractions/3.1.5",
      "hashPath": "microsoft.extensions.logging.abstractions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Configuration/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+9jx/A9cLdkTmynKMa2oR4rYAfe3n2F/wNVvKxwIk2J33paEU13Se08Q5xvQisqfbumaRUNF7BWHr63JzuuRw==",
      "path": "microsoft.extensions.logging.configuration/3.1.5",
      "hashPath": "microsoft.extensions.logging.configuration.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Console/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/W7d9sjgyU0/3txj/i6pC+8f25Jbua7zKhHVHidC5hHL4OX8fAxSGPBWYOsRN4tXqpd5VphNmIFUWyT12fMoA==",
      "path": "microsoft.extensions.logging.console/3.1.5",
      "hashPath": "microsoft.extensions.logging.console.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Debug/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oDs0vlr6tNm0Z4U81eiCvnX+9zSP1CBAIGNAnpKidLb1KzbX26UGI627TfuIEtvW9wYiQWqZtmwMMK9WHE8Dqg==",
      "path": "microsoft.extensions.logging.debug/3.1.5",
      "hashPath": "microsoft.extensions.logging.debug.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.EventLog/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-x+EA/oW3rLjYHO06ymgUI6SkmvcSF0auUztlsoy/JgJwjvKKRyEt4GeQ1lSOy8FRiNKSF+cjnYUjZa49NvQlSw==",
      "path": "microsoft.extensions.logging.eventlog/3.1.5",
      "hashPath": "microsoft.extensions.logging.eventlog.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.EventSource/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zi3v9m9Vf6g82hQUl/p5tvIp4iBU5IdjwIR9WNPOM+K2rMUYraWRYfzWh4fSQZYAMfUItyZaivdlaHXJYOYcfw==",
      "path": "microsoft.extensions.logging.eventsource/3.1.5",
      "hashPath": "microsoft.extensions.logging.eventsource.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Options/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-f+JT/7lkKBMp/Ak2tVjO+TD7o+UoCfjnExkZNn0PZIso8kIXrqNy6x42Lrxf4Q0pW3JMf9ExmL2EQlvk2XnFAg==",
      "path": "microsoft.extensions.options/3.1.5",
      "hashPath": "microsoft.extensions.options.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mgM+JHFeRg3zSRjScVADU/mohY8s0czKRTNT9oszWgX1mlw419yqP6ITCXovPopMXiqzRdkZ7AEuErX9K+ROww==",
      "path": "microsoft.extensions.options.configurationextensions/3.1.5",
      "hashPath": "microsoft.extensions.options.configurationextensions.3.1.5.nupkg.sha512"
    },
    "Microsoft.Extensions.Primitives/3.1.5": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6bLdjSAQix82oP2tsuX9MM2yjgUFFOkSZYyRSKoUULilw2cg0Y0H+dnugwYlfj8Jd7yjd/+QSdNBqEyYhTYv0w==",
      "path": "microsoft.extensions.primitives/3.1.5",
      "hashPath": "microsoft.extensions.primitives.3.1.5.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
      "path": "microsoft.netcore.platforms/3.1.0",
      "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
    },
    "Microsoft.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.Registry/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
      "path": "microsoft.win32.registry/4.7.0",
      "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "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"
    },
    "Serilog/2.8.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zjuKXW5IQws43IHX7VY9nURsaCiBYh2kyJCWLJRSWrTsx/syBKHV8MibWe2A+QH3Er0AiwA+OJmO3DhFJDY1+A==",
      "path": "serilog/2.8.0",
      "hashPath": "serilog.2.8.0.nupkg.sha512"
    },
    "Serilog.Extensions.Hosting/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+NnmORRm9Tzzb9ZY9mgLEr9TRdayaOUdiegq9/4Bv8MSDpBeydxF+X3ea5riui1EzGUId+hpwy7j1hqcXs5Cdw==",
      "path": "serilog.extensions.hosting/3.1.0",
      "hashPath": "serilog.extensions.hosting.3.1.0.nupkg.sha512"
    },
    "Serilog.Extensions.Logging/3.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U0xbGoZuxJRjE3C5vlCfrf9a4xHTmbrCXKmaA14cHAqiT1Qir0rkV7Xss9GpPJR3MRYH19DFUUqZ9hvWeJrzdQ==",
      "path": "serilog.extensions.logging/3.0.1",
      "hashPath": "serilog.extensions.logging.3.0.1.nupkg.sha512"
    },
    "Serilog.Extensions.Logging.File/2.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-usO0qr4v9VCMBWiTJ1nQmAbPNCt40FrkDol6CpfCXbsxGZS/hH+YCueF7vvPQ32ATI0GWcMWiKRdjXEE7/HxTQ==",
      "path": "serilog.extensions.logging.file/2.0.0",
      "hashPath": "serilog.extensions.logging.file.2.0.0.nupkg.sha512"
    },
    "Serilog.Formatting.Compact/1.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-r3QYz02y7+B7Ng30hyJM929OJhem7SsJ4XDUE0Zfptj2MRiQfpPUb5f58juAFjp/TnNeSX2QNzZEnHwLeoJfHQ==",
      "path": "serilog.formatting.compact/1.0.0",
      "hashPath": "serilog.formatting.compact.1.0.0.nupkg.sha512"
    },
    "Serilog.Settings.Configuration/3.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BS+G1dhThTHBOYm8R21JNlR+Nh7ETAOlJuL1P6te1rOG98eV1vos5EyWRTGr0AbHgySxsGu1Q/evfFxS9+Gk1Q==",
      "path": "serilog.settings.configuration/3.1.0",
      "hashPath": "serilog.settings.configuration.3.1.0.nupkg.sha512"
    },
    "Serilog.Sinks.Async/1.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xll0Kanz2BkCxuv+F3p1WXr47jdsVM0GU1n1LZvK+18QiRZ/WGFNxSNw9EMKFV5ED5gr7MUpAe6PCMNL1HGUMA==",
      "path": "serilog.sinks.async/1.1.0",
      "hashPath": "serilog.sinks.async.1.1.0.nupkg.sha512"
    },
    "Serilog.Sinks.File/3.2.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VHbo68pMg5hwSWrzLEdZv5b/rYmIgHIRhd4d5rl8GnC5/a8Fr+RShT5kWyeJOXax1el6mNJ+dmHDOVgnNUQxaw==",
      "path": "serilog.sinks.file/3.2.0",
      "hashPath": "serilog.sinks.file.3.2.0.nupkg.sha512"
    },
    "Serilog.Sinks.RollingFile/3.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-2lT5X1r3GH4P0bRWJfhA7etGl8Q2Ipw9AACvtAHWRUSpYZ42NGVyHoVs2ALBZ/cAkkS+tA4jl80Zie144eLQPg==",
      "path": "serilog.sinks.rollingfile/3.3.0",
      "hashPath": "serilog.sinks.rollingfile.3.3.0.nupkg.sha512"
    },
    "System.AppContext/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
      "path": "system.appcontext/4.1.0",
      "hashPath": "system.appcontext.4.1.0.nupkg.sha512"
    },
    "System.Collections/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
      "path": "system.collections/4.0.11",
      "hashPath": "system.collections.4.0.11.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.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.EventLog/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iDoKGQcRwX0qwY+eAEkaJGae0d/lHlxtslO+t8pJWAUxlvY3tqLtVOPnW2UU4cFjP0Y/L1QBqhkZfSyGqVMR2w==",
      "path": "system.diagnostics.eventlog/4.7.0",
      "hashPath": "system.diagnostics.eventlog.4.7.0.nupkg.sha512"
    },
    "System.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.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
      "path": "system.dynamic.runtime/4.0.11",
      "hashPath": "system.dynamic.runtime.4.0.11.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.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.FileSystem/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
      "path": "system.io.filesystem/4.0.1",
      "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
    },
    "System.IO.FileSystem.Primitives/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
      "path": "system.io.filesystem.primitives/4.0.1",
      "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
    },
    "System.IO.Packaging/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9VV4KAbgRQZ79iEoG40KIeZy38O30oWwewScAST879+oki8g/Wa2HXZQgrhDDxQM4GkP1PnRJll05NMiVPbYAw==",
      "path": "system.io.packaging/4.7.0",
      "hashPath": "system.io.packaging.4.7.0.nupkg.sha512"
    },
    "System.Linq/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
      "path": "system.linq/4.1.0",
      "hashPath": "system.linq.4.1.0.nupkg.sha512"
    },
    "System.Linq.Expressions/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
      "path": "system.linq.expressions/4.1.0",
      "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512"
    },
    "System.ObjectModel/4.0.12": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
      "path": "system.objectmodel/4.0.12",
      "hashPath": "system.objectmodel.4.0.12.nupkg.sha512"
    },
    "System.Reflection/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
      "path": "system.reflection/4.3.0",
      "hashPath": "system.reflection.4.3.0.nupkg.sha512"
    },
    "System.Reflection.Emit/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
      "path": "system.reflection.emit/4.0.1",
      "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
    },
    "System.Reflection.Emit.ILGeneration/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
      "path": "system.reflection.emit.ilgeneration/4.0.1",
      "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
    },
    "System.Reflection.Emit.Lightweight/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
      "path": "system.reflection.emit.lightweight/4.0.1",
      "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
    },
    "System.Reflection.Extensions/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
      "path": "system.reflection.extensions/4.0.1",
      "hashPath": "system.reflection.extensions.4.0.1.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.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
      "path": "system.reflection.typeextensions/4.1.0",
      "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
      "path": "system.resources.resourcemanager/4.3.0",
      "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
    },
    "System.Runtime/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
      "path": "system.runtime/4.3.0",
      "hashPath": "system.runtime.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
      "path": "system.runtime.extensions/4.3.0",
      "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
    },
    "System.Runtime.Handles/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
      "path": "system.runtime.handles/4.0.1",
      "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
    },
    "System.Runtime.InteropServices/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
      "path": "system.runtime.interopservices/4.1.0",
      "hashPath": "system.runtime.interopservices.4.1.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.Security.AccessControl/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
      "path": "system.security.accesscontrol/4.7.0",
      "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
      "path": "system.security.principal.windows/4.7.0",
      "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
    },
    "System.Text.Encoding/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.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
      "path": "system.text.encoding.extensions/4.0.11",
      "hashPath": "system.text.encoding.extensions.4.0.11.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.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.Timer/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
      "path": "system.threading.timer/4.0.1",
      "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
    }
  }
}
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.dll
md5: 7932B35B3A2DCBC136295A20A24ED7E2 | sha1: 2B86D7FF080CC1D0069AC76A8C5FE36B1C215912 | sha256: 852EB37BFCF9A31A53D29D83273D29782CFA72971442FE5CF2C7E8B34BFD45A6 | sha512: EC04DD5D285AB18C488AF5A3D93910DBE7A4BD590947FA0D12A0E181109F32A596554C2CAF4092E0ED9082C620013CE483E540A4EA0A7DBA2F35C2EFF48A4D56
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.exe
md5: 03F9B7DEFE9F93FEE905AF2ECE2EF9D8 | sha1: BAEC179F368082A7525ACB0479242D795727AAED | sha256: F471E9376A268F2D60C94980D997AA8E3E3580E2C7D285FEB3EFC36E322631D3 | sha512: D7D44E4FBB9A0E01F529424FA176A89F6B1A5A94F651F425AFB9088884023C756218DCFF9CC5DD51A4833707F442B871711BDA39412EA68FCD8F41E97F79B996
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.pdb
 
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.runtimeconfig.dev.json
{
  "runtimeOptions": {
    "additionalProbingPaths": [
      "C:\\Users\\VssAdministrator\\.dotnet\\store\\|arch|\\|tfm|",
      "C:\\Users\\VssAdministrator\\.nuget\\packages",
      "C:\\Microsoft\\Xamarin\\NuGet",
      "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
    ]
  }
}
tools\IntegrationPlaybook.Analysis.DataTransformation.Modeller.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "netcoreapp3.1",
    "framework": {
      "name": "Microsoft.WindowsDesktop.App",
      "version": "3.1.0"
    }
  }
}
tools\LICENSE.txt
Copyright (c) 2020 Integration Playbook

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

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

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
tools\Microsoft.DotNet.PlatformAbstractions.dll
md5: 2C71DC88237C2DA73672F773C9F4C5E7 | sha1: F63837AF2A98D408F59ECC640D46AD7286FC5620 | sha256: 1E31F8793861C7CB10621A38F3FDA6B787D15BAC348B70E38E80E3544A086E86 | sha512: 0E9332CCB1A40A16CF6A4C4EE68C2961E956C1B6AE2F2327B5B67989538E153935BEBE6CA0533EED968FC778398A46BB7B6B2C82EBB7777C49B7713C3F943590
tools\Microsoft.Extensions.Configuration.Abstractions.dll
md5: A3F9C060A390953ABC2A8F223B689E2A | sha1: 82C4A9349344DDC47A33FCE371DA7A191DCD2B41 | sha256: 7B1E88D65D4B234CD298F8AD83401DB8E020F3B0D5FBC18C673E1D386BABA49F | sha512: DF35155A79049BCAC47CCD764419CAE58FC228407BA0DB81656C47D1B810B2105FF34795FAA6E1ABC6890F82AF2F100451F9338F891C8FAC19B84121C74401B0
tools\Microsoft.Extensions.Configuration.Binder.dll
md5: BB6B893D098332C11F3D63B7B44631E0 | sha1: 84C963734BD0C04624C150341FFA4AD507E98C7F | sha256: FAA0D5C1BCC43CE8BA1F0CF87AD95C5757366055F67395E8232694F22CE815DA | sha512: 5404565FB7DE2E714FDDD7314DA79EC39B67F8E4D8AC7558BB6FCD248A8E528C2142EF04CD92FB02850E6094FA4BD33E1512EA143E1982DBCFECEBBD0C5428C9
tools\Microsoft.Extensions.Configuration.CommandLine.dll
md5: 3BD207C0F112FE7EB9F94E63E3DC3104 | sha1: 5A6F3FB901249B20C3BFAD2ECEE31F761974FDCB | sha256: F290E90052DFC12A5E29C24D2C2BF3B2135FE9F4842CA8B7BC8A96AA68E094D8 | sha512: DEC2A2AFDA9A915A1568C72036A8DA086246AC48655A5CF83D4225265B9A438BA77B1365789D660D44F8ED99291182DAD7202CE5BC4B6B45A597EAA10FB48A75
tools\Microsoft.Extensions.Configuration.dll
md5: 77E3B750F14FBB2C9AE8504AC48F0CBD | sha1: AF7F9A38F4D1BADA5AB05B1291A492BD983EA88D | sha256: 3BEA5CB582F441A0706836F7C49A97171678331D6ACF067AFFD2A59A2CA2AF9A | sha512: 3768AD8BF3E72679E3E2128B0378F391810C7260C7BAE7CD95519A37D63E908A19FB7B9C2043632F00A3B8A81137E77730493C5ADA8C1FBC79DCA26C10281A3E
tools\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
md5: D5855599EABF3B274CA1FA6A8802D8A4 | sha1: 368B09CD9D7B154E848EA68EA5A4DBB426F5522E | sha256: 602B5D5E24602773ED9D8D05578321818BACB03EC260C889F78052E54C8899AE | sha512: A6D8E19227840715938ECDCF0779985EBB5BD2C172ACB508A9640BC8238550C2ACA3EB04DCA8BBBD3F58565A47263F41EF34C0C99617672E27AEDD6DF306E4B4
tools\Microsoft.Extensions.Configuration.FileExtensions.dll
md5: 0AE00A4642E5E436682DB5A300A75C74 | sha1: 8A70A964619E90BACC725BF73B97515E6256F89A | sha256: C632EE9A6672764ABC231904F9C6695471BAA7BC2E59C27C97F67E1A8AD24316 | sha512: C6B2191C63766EAC9741A602165A3CE144712E2B5A2F185193758284C395028241691B3CB8523F667904AE080A7D98286FBD8C334448A6FB8874073167EF5D10
tools\Microsoft.Extensions.Configuration.Json.dll
md5: 269A98329C780C7980206A52E70E25E5 | sha1: 8B0E6F4A5E93D42EFE2DEAE9B38772DE5BB42777 | sha256: E979171EA589A4BEF888ECCBD2860C77CDE78FA8F65F90EA9E037DE274058DEF | sha512: 1D01603F03165B88C3E5FCE6933580D9B63EB6F266636FD943C0DEAFBBB5F99123AF16114C1EC91574653FFDDC34401D1FC96E9FAEF613B7C6BB1F6723256269
tools\Microsoft.Extensions.Configuration.UserSecrets.dll
md5: 391B20AD890A5DA2B05EF785B0552F8C | sha1: 7151E04F43B9B328FC14340E79D823622980805C | sha256: DF28EB4D5CDC7FD7979A39248B195636A8984C0DE2874ED28363A2171DDE530B | sha512: 130BD3A36F7DB8AA5999136AE3327A68BCE68DA4D0F643CE73C54235227D649CA60FBD7F18BEBE68FD435A137A3D1B3CA0F3FE8B35F051D49F13BF7464B5860D
tools\Microsoft.Extensions.DependencyInjection.Abstractions.dll
md5: 3B1BD37D0968557FA0376F7B02835275 | sha1: D6DAF0C722381E2359B0C6A62387F11412F8A3BD | sha256: 488AD7D2052E489ADDBB86F3EAC6802D4A627FA0495580D1B43E8B786C89C466 | sha512: 919CA1F62FEADEB18726A82033F13FFE3EF52BC025707966C8ADCA2819FAFD4F8EEE8EE67B870DE11993921604E7CCC27EDE0BC6D2821F41A6F26B6949BD41BC
tools\Microsoft.Extensions.DependencyInjection.dll
md5: 27113406DD41E359ABBB4E51708168E5 | sha1: 5D358A17B6E086A3AA031EC541C4523A454FADA4 | sha256: B183BA49F409E99CF7F491EFD649501AC695AA09A38FDA0BF38C1BF4D97F4CCA | sha512: 871E5590C96B4664363729DB5D72A19BA163CDA79014737CF017C394B78D21ED67110114877BD341C5E883FB3C18978074687252C04A8768B86C60040F26CD6A
tools\Microsoft.Extensions.DependencyModel.dll
md5: 7F021B8C770F53228DCA093C8EBF7280 | sha1: BAB048A105F2AA17181E165EEF5022DB8AB1285C | sha256: C370577A84D8D984442AA9A269AC3D718C1D5B056EFA24B3575B76FF9D69DA64 | sha512: 8BC88A24C0AD7FE9CAE88625FDF58CCA553B91B354421963FEB4614F864420F46443A369E837D51AC8314AD45199968BEF3C4F782B09D67C99898D9F0F292D02
tools\Microsoft.Extensions.FileProviders.Abstractions.dll
md5: 2DAB1ED1125810FDFA15E26E646308B7 | sha1: C6952767D3677222C00B97ECD4B63F59F59672D9 | sha256: 38C92FD7D487A526E89F6369CE60F542E9D6B93CFFCDC462A4432C83527260CD | sha512: 810851CBB11911FE41450259A5F302E8126B9FAD918877A0F026B5B5B73FA1D23C9F427AB5E64A02A1DB9CB73F4D971E252EC8A09B5D168E1896529AA124BAA0
tools\Microsoft.Extensions.FileProviders.Physical.dll
md5: B8D4CB0E0A7F06822565872C00ECE1B0 | sha1: EF6060252043F75B5F77F3CD89297C2AC84B37F5 | sha256: 6D90F0BF8CF70998718434FFC8C922C907BFC8B4CBADBC44A1000ECBA6E2F05D | sha512: 24459F6FA31D341E36178264CEA265250432BB029B960D7D1525A0D32C13D154938E014941B2C8D6F7B284DC8B5CA0A301E9FDC5E0AC94C3CE66DB742B32AD6D
tools\Microsoft.Extensions.FileSystemGlobbing.dll
md5: 12B07CC1C6B36CACC96A1A3DD9AD520C | sha1: 9204BAFE07DD3FDFEDE3F55F1AAA703F060A646B | sha256: 8AC5705F494FA3442BE76AF08902CD3BB927438BA485C6CADC7BC4AB0650E345 | sha512: 2690F82458CB50A2C567CF0470354FA4AC5601E0AA0976256331A668600195151F98851B60F181F2207215E9F2C32AFCC9FBCB7E2B64FC4C99A4284D2412B2A8
tools\Microsoft.Extensions.Hosting.Abstractions.dll
md5: 5C61B7E93FCE53ADABDB476003DE3AED | sha1: 457B8C61BDCDC313A43C750DA4A6FACCC394E772 | sha256: DD1C777236ACADE7C6C730F253BD79674573259856658BFCD8AB6BF82CFD2C51 | sha512: C3710CD386F9C43A2BB489CD29EA31924911906235A8BC7E25A53116D46336B12EC7A1CEB74A1F5215D1DEADC3A2055A0B67BCB92EE429C41872C347F9C888D8
tools\Microsoft.Extensions.Hosting.dll
md5: 1876FD6DBB35FD1967A5F49AD0148DDB | sha1: C3712446EAC2EC3E8B207959BD52592BA93124DD | sha256: 5C73AFE690538BEBF08112A6BBB8900574ABD99EF8C90DE32841E423781A8C8C | sha512: B5F3693A2A06C27F74EBAC5BC0EB900910824B5D5515D08589368868DE9A990F780604D92428E1A78053E1EC3E5756F846F0A70666D2CDE4379AF27456E8F4D5
tools\Microsoft.Extensions.Logging.Abstractions.dll
md5: 763F494E94C0C1AEC51E853EC8734FA3 | sha1: E8E8A92DDCD0316339E133CC95F8288311243252 | sha256: 64567BB043BD75EC4191F3FB897F331322D15C60037E29B0C0A5D53576A4D0D2 | sha512: 50954B498808024D43A062082EDA12AC07E809B463AA78694C14062551FD5084F8E657478BC9043FE535CAF46C4871B46FAF94B21185D2887FEF463203552B0B
tools\Microsoft.Extensions.Logging.Configuration.dll
md5: 83A04344AB234DB08D5CD939CC3BFAA1 | sha1: 101462341ED7B4CCCC4F2EF879234D662F9EED7C | sha256: 208DF616C4BDA773157E9C0030EA44A3A4C61F9F79DA19774A995D694B81F17F | sha512: 27BE961EF29A4B8DF51094EC474A5BAD34EB158F3A875ED9DA6DD7EA85B559DD19A623A51D8A2A3A061E4F97CA5D3FFF8540C20091F628C65E08CA37D5F01AA6
tools\Microsoft.Extensions.Logging.Console.dll
md5: 00F77426FA592D0C7E4079335DE92120 | sha1: 1CB90E996C16816EFE6310A4DD375760B82439BE | sha256: 57A7D06E30A0A92823785EAA96BF80670EF7B8B2088650FE6B38FB254B15FB83 | sha512: 8C33A92B12133C34409720FDDE1E3994B2AE0DA4C2FB42DFF12D248754997FCE4934449070A6F94CEEE4685CE1ECD31D7985186F53FD41A0C718C40E8407B5F6
tools\Microsoft.Extensions.Logging.Debug.dll
md5: B96AF8E85C7A98F03BC81DDFF9B7CDF2 | sha1: DF21285206CD847B58E9EF4C36F5EB8938B20FDC | sha256: B2115CDF6BA7CF3C1A62BE7E1005CE83D4D83A4D0335194F56D830438CAE496F | sha512: A19C554658DC9B3C9A9D9321CD5107D9CB36C85260A64048ED6B629838C4D3FF3AE8632E7160F580E6218CAADB23BCA98DBD4EC6CDF1E80E2FC3F7CE4B25643D
tools\Microsoft.Extensions.Logging.dll
md5: 07EC138389B7F52F25D89672F6155963 | sha1: 9813CCD59D6C0994BD42153DE1733F1E10341660 | sha256: F104BB88A0A86D220A3A22CCA298484684C72B9AE6ADB60959255D2EA43C8CD4 | sha512: F70E683BA68E92262B263F2F55D26748D3F55D2B8F42B58F62ABC6A27AE54F0DE5C2FE716DB01ADDC27C26BD4FAF79740946295899C7B2DCC74ECEE526B2EB88
tools\Microsoft.Extensions.Logging.EventLog.dll
md5: D8459A5815D569C5D12A48BF179C9E6D | sha1: 3C2B6FCF9C7ADA678747FC11DDE9266688E216D6 | sha256: 5E4272209FCFF0AD90A7A243200EB359C0ED2476C4A13CC8E52C5F730B867AC1 | sha512: 0822177A851432E087501F7FD20D11DDEBB331F98618705C79EDF196B9939B9F9A744FC6E062602B33183385ACFAF0B7F931A7992AE526A3FAE35A4E0FEB196D
tools\Microsoft.Extensions.Logging.EventSource.dll
md5: 74D1AD21B8B96FB02B271BC22A48B84E | sha1: 58EFBE4D72C61D37EC2A9330D44B07799679BC05 | sha256: 4FE830A7851F9135918FD766FF907983A5F1962C39BF031FB2625F1ED422CA92 | sha512: B594EF10C95BF27F714A28F1956E3ED64808DD9BEFB35090D883A01C36BADCEE5EE5CB5B40151A1C5E2171BD4E8A2C5AE67B2FFBDB446B1D4D94D6109099C410
tools\Microsoft.Extensions.Options.ConfigurationExtensions.dll
md5: D8450FA7EF78F7378E0B003FD2BCB01B | sha1: 9957806AA42E38795E4D8551C35BC67BA61FCABE | sha256: DC23844972DEA07119311D870A36DDE7E56FDB112EB4C6F12F0CC54AF8470942 | sha512: A554AA39CE277DE55BA4A7BB3245E7402EF27E762E7294B067B6B27B18C5D3335C6BECE7EB8DD0EDCE8C1A3EFFB1D0AAB2CBC789AB9595EF79B797273B21292D
tools\Microsoft.Extensions.Options.dll
md5: 2139AB65CFDE48DE80630059E8D7D495 | sha1: 7EF6D25EC1B80E983A3762564E90000EAE0222B5 | sha256: 28F1C9E874FC23F70D749BB7D59A87C3F4E0904F7D52134112CD1BC2713FE737 | sha512: 426C6DC663F161A7D2EE8B74DDC1301E7640DD5A8C0162E0B327B5AEE9BAD1B946C75B3B05DDA5A1BCF2F3C8A19BE3E8F8841925DD39082D1E120F0397F63D2F
tools\Microsoft.Extensions.Primitives.dll
md5: 00671C84461E96C331B02200E2321931 | sha1: DC91A5E7789E6C52A17750A0790D625369BC0484 | sha256: 87E5B801987D37318843E986D6DEEAA892D5E6D352F329754B756D2224B2AC7B | sha512: 8F032EDABA6CC4B455CAECB38EDE06CC2F6EC7EBFCF64D8B2C53D7CD0741E4F2DAF27D45AB102FA48FBB827B19861ABC8213DD662D48EF0F67BC92C53ACE15F6
tools\Newtonsoft.Json.dll
md5: 9454AE6EB0C6AD77E93A95074BA29266 | sha1: DF83FCB3639596AD42D5BE8314EF9D672079198B | sha256: 99177A4CBE03625768D64A3D73392310372888F74C3EB271CF775E93057A38E6 | sha512: 8D1D2BEDDE2D5F33179560E1A4F72206EE1984B3F5EB96E93F94329C4C4A8044DD74D62F9E708293132DE8C8F351F0E7FED74A450A251A8ADE205702B29D9DE1
tools\Serilog.dll
md5: 95F13B163588B690DFD7E98891F761B2 | sha1: DE33FFF016F6DEE69B859C4D5F3A24EE3F254272 | sha256: 122FEFF8B159AA3DB9B97A4FF0366417D243E40C95F9A75221B47D757209516A | sha512: 3B367FBFABF13AD3DACA21C99E0AC8E4FE7D3B449C898CCC03C1EED9E00D39FFF76C124ACE593369FAB1E4067CF7B457A249920CBAF60F95A4567293E1D49083
tools\Serilog.Extensions.Hosting.dll
md5: 3DDB63DD62AA7D89A6BE56BFC5C56F45 | sha1: 5C09977AEA708C2C3D56969F13CEE6B5DA4F23BB | sha256: DCE8259C7A912FB4ABA83DF6012703D693B9E000ACE713BF3CBED729B447B451 | sha512: 831EFF84192F58E9D37A49F4FD02AD5ABF5482A7665A384844A31FE9DAE6BDC4EE32669ADF8496BC27856F4185BB57C4C203F58365A34AEF86B3CDE16C8A5754
tools\Serilog.Extensions.Logging.dll
md5: 08C12F84DADDD3FB3C6B3D8DD5C8B6AD | sha1: EEFDA68E0B699B827D62BCA049258F41FE663198 | sha256: F85465D3415981718D8BBEADAE859E24F8507214498445DCDD7A8C9F80AEEDD2 | sha512: 2C6027E3CD6F9AAAB24FF1FB6ACAFEDA2C58FE3F51BD940303E284A013CF15DA7E67263B2F9C8534A7E8DA0A876273D16B329B92BF14A39F04C1B5B2F606E0B0
tools\Serilog.Extensions.Logging.File.dll
md5: D0383100D1802BE6BBE2ACBFB3753181 | sha1: F17256345208247BD17D86A614F06204262F081F | sha256: BA551E7ACDEC0EE191DD2738AD352405C9086EE1B2BB333C7CAF35D7DD84C8E3 | sha512: 129B8FE44235E92F16FEE6DCFEAA260860D2C1341A3404F592C9454FDC2BF4B9AF695727CD14C4EBF8F1A6BF3E08CAFE6BD0B2C444EAF9F0CADCBF8739DB55D4
tools\Serilog.Formatting.Compact.dll
md5: CE4F92C529F93200D43091FEDA1E76AB | sha1: 77F1A915C89F0CB14BB687CFE2E082B9ED574331 | sha256: CEC4917D7F52B3C7375FC901D00A5EDE71C1873C15B8DE639062C6DE7407D188 | sha512: 69775ED082EC9A9CDD0F151E3D8001149D26479DEBA3292D53DB0DC1B9ABC6B8BFD1F9A2209159BA3330144F41A7892C371CBAD3CC1A63A2F502785A8D8089A6
tools\Serilog.Settings.Configuration.dll
md5: 91CA5621B878178F80732DF239780CEC | sha1: B6CBB87C89D1676DFAB3DC5A47471C11BF3982DD | sha256: AD7E784B118878FBB9F4EDC51F0798B05DADBF5F940DFD8BBDCA756B00E08838 | sha512: 8811ED55666E82FAF94E50F7A69EB6729D76CD256523B5A0BB7CB56C99F35C8D21DD92346024F94D6DD5198AC1679F88FFBABCA749AABE41DFCED7E2C05330ED
tools\Serilog.Sinks.Async.dll
md5: D02857502C65B397BBB1EFD1FDB59252 | sha1: 4BFBC00510BA35DA5B344AFB081E1F05F53173C1 | sha256: E18F0248CD65691CE0884790AA6E5BC0B51503F8C2680BA336DDAAD4953BA148 | sha512: AD7B353E06CDC87621D98E19B7CD7C00A3967E17FF452E16FAF96D9FC6612234624D4F361E4346550F0E577D9E2BAB8738CA6A28AF7EB767654B4D00551D901A
tools\Serilog.Sinks.File.dll
md5: B1BE48F8FFA529ECDE14E749EFFC431F | sha1: 464C077E4B58DB742C84D83CCA3FB97E15EE1ACA | sha256: 916E9C5B59E0C4D8B56A0D00C15817F76D77A26135FD1C59A0AEB6A5DC24260D | sha512: 52E96EFE455539603596E56B5E3A52AF1F8D848232B28F3AF34563351E60CDFFA968E15B9289853893FFCB196D05D6EB84B45F5F71C945D7EABF66C631D55223
tools\Serilog.Sinks.RollingFile.dll
md5: DB7179D1A79EE386C6828FBA68162415 | sha1: F719836E54FEC8E4BA4530C1332A17A873D7683B | sha256: 7FACBA54A4C3C0EA9C349D6D0CC29EC2C25B390C9C42056CC1C1ABA691CFF67E | sha512: 55B57860672EFED52948729301919F71C7E63F252B208FE4A0CFDE61F9A6EC693E4B560A304BB320FFCDB8439B8B475404462212AB51073831EDD1DD8187274A
tools\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

This package is published by the Integration Playbook itself. Any binaries will be 
identical to other package types published by the project.
tools\WordExportTemplate.docx
 

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

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

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
IntegrationPlaybook Data Transformation Modeller 1.0.0 121 Saturday, September 19, 2020 Approved

Initial Release


This package has no dependencies.

Discussion for the IntegrationPlaybook Data Transformation Modeller Package

Ground Rules:

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