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:

2,366

Downloads of v 0.8.0:

73

Last Update:

24 Nov 2021

Package Maintainer(s):

Software Author(s):

  • Patrik Svensson
  • Mattias Karlsson
  • Gary Ewan Park
  • Alistair Chapman
  • Martin Björkström
  • Dave Glick
  • Pascal Berger and contributors

Tags:

cake script build bakery

Cake-Bakery.Portable

This is not the latest version of Cake-Bakery.Portable available.

  • 1
  • 2
  • 3

0.8.0 | Updated: 24 Nov 2021

Downloads:

2,366

Downloads of v 0.8.0:

73

Software Author(s):

  • Patrik Svensson
  • Mattias Karlsson
  • Gary Ewan Park
  • Alistair Chapman
  • Martin Björkström
  • Dave Glick
  • Pascal Berger and contributors

Cake-Bakery.Portable 0.8.0

This is not the latest version of Cake-Bakery.Portable available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Cake-Bakery.Portable, run the following command from the command line or from PowerShell:

>

To upgrade Cake-Bakery.Portable, run the following command from the command line or from PowerShell:

>

To uninstall Cake-Bakery.Portable, 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 cake-bakery.portable -y --source="'INTERNAL REPO URL'" --version="'0.8.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 cake-bakery.portable -y --source="'INTERNAL REPO URL'" --version="'0.8.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 cake-bakery.portable
  win_chocolatey:
    name: cake-bakery.portable
    version: '0.8.0'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'cake-bakery.portable' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.8.0'
end

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


cChocoPackageInstaller cake-bakery.portable
{
    Name     = "cake-bakery.portable"
    Version  = "0.8.0"
    Source   = "INTERNAL REPO URL"
}

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


package { 'cake-bakery.portable':
  ensure   => '0.8.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.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 24 Nov 2021.

Description

The Cake script analyzer and code generator.


tools\Basic.Reference.Assemblies.Net60.dll
md5: 76796D2D0215BDD97A3F4DDF5F077659 | sha1: 24F204914B6B7084053E14DEE76CDA2809B96400 | sha256: B6527155E50C45FBC9A5BEE4D9614E20B70604A7F57929384E71371CD51423BA | sha512: 7A4F4E06EA93CEDAF00F8139DCE34EA1900174F8601CD26BA4AA6391AC3C8EA9109DB1EF1F8CEA0457B7DFCCB84CBC380BF9B200E39EC90F48A698F3C3E5BF23
tools\Cake.Bakery.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "Cake.Bakery/0.8.0": {
        "dependencies": {
          "Cake.Core": "1.3.0",
          "Cake.NuGet": "1.3.0",
          "Cake.Scripting": "0.8.0",
          "Cake.Scripting.Abstractions": "0.8.0",
          "Cake.Scripting.Transport": "0.8.0",
          "Microsoft.Extensions.Logging": "2.1.1",
          "Microsoft.NETFramework.ReferenceAssemblies": "1.0.0",
          "StyleCop.Analyzers": "1.1.118"
        },
        "runtime": {
          "Cake.Bakery.dll": {}
        }
      },
      "Basic.Reference.Assemblies.Net60/1.2.4": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Common": "3.9.0"
        },
        "runtime": {
          "lib/netstandard2.0/Basic.Reference.Assemblies.Net60.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.0.0"
          }
        }
      },
      "Cake.Common/1.3.0": {
        "dependencies": {
          "Cake.Core": "1.3.0"
        },
        "runtime": {
          "lib/net6.0/Cake.Common.dll": {
            "assemblyVersion": "1.3.0.0",
            "fileVersion": "1.3.0.0"
          }
        }
      },
      "Cake.Core/1.3.0": {
        "dependencies": {
          "Microsoft.CSharp": "4.7.0",
          "Microsoft.Win32.Registry": "5.0.0"
        },
        "runtime": {
          "lib/net6.0/Cake.Core.dll": {
            "assemblyVersion": "1.3.0.0",
            "fileVersion": "1.3.0.0"
          }
        }
      },
      "Cake.NuGet/1.3.0": {
        "dependencies": {
          "Cake.Core": "1.3.0",
          "Microsoft.DotNet.PlatformAbstractions": "3.1.6",
          "Newtonsoft.Json": "13.0.1",
          "NuGet.Common": "5.11.0",
          "NuGet.Frameworks": "5.11.0",
          "NuGet.Packaging": "5.11.0",
          "NuGet.Protocol": "5.11.0",
          "NuGet.Resolver": "5.11.0",
          "NuGet.Versioning": "5.11.0"
        },
        "runtime": {
          "lib/net6.0/Cake.NuGet.dll": {
            "assemblyVersion": "1.3.0.0",
            "fileVersion": "1.3.0.0"
          }
        }
      },
      "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
      "Microsoft.CodeAnalysis.Common/3.9.0": {
        "dependencies": {
          "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
          "System.Collections.Immutable": "5.0.0",
          "System.Memory": "4.5.4",
          "System.Reflection.Metadata": "5.0.0",
          "System.Runtime.CompilerServices.Unsafe": "5.0.0",
          "System.Text.Encoding.CodePages": "4.5.1",
          "System.Threading.Tasks.Extensions": "4.5.4"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
            "assemblyVersion": "3.9.0.0",
            "fileVersion": "3.900.21.12420"
          }
        },
        "resources": {
          "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "cs"
          },
          "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "de"
          },
          "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "es"
          },
          "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "fr"
          },
          "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "it"
          },
          "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "ja"
          },
          "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "ko"
          },
          "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "pl"
          },
          "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "pt-BR"
          },
          "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "ru"
          },
          "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "tr"
          },
          "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "zh-Hans"
          },
          "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
            "locale": "zh-Hant"
          }
        }
      },
      "Microsoft.CSharp/4.7.0": {},
      "Microsoft.DotNet.PlatformAbstractions/3.1.6": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.DotNet.PlatformAbstractions.dll": {
            "assemblyVersion": "3.1.6.0",
            "fileVersion": "3.100.620.31604"
          }
        }
      },
      "Microsoft.Extensions.Configuration/2.1.1": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
        "dependencies": {
          "Microsoft.Extensions.Primitives": "2.1.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Configuration.Binder/2.1.1": {
        "dependencies": {
          "Microsoft.Extensions.Configuration": "2.1.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Logging/2.1.1": {
        "dependencies": {
          "Microsoft.Extensions.Configuration.Binder": "2.1.1",
          "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
          "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
          "Microsoft.Extensions.Options": "2.1.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Options/2.1.1": {
        "dependencies": {
          "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
          "Microsoft.Extensions.Primitives": "2.1.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.Extensions.Primitives/2.1.1": {
        "dependencies": {
          "System.Memory": "4.5.4",
          "System.Runtime.CompilerServices.Unsafe": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
            "assemblyVersion": "2.1.1.0",
            "fileVersion": "2.1.1.18157"
          }
        }
      },
      "Microsoft.NETCore.Platforms/5.0.0": {},
      "Microsoft.NETCore.Targets/1.0.1": {},
      "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {},
      "Microsoft.Win32.Registry/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "Mono.Cecil/0.10.1": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.IO.FileSystem": "4.0.1",
          "System.IO.FileSystem.Primitives": "4.0.1",
          "System.Reflection": "4.1.0",
          "System.Runtime.Extensions": "4.1.0",
          "System.Security.Cryptography.Algorithms": "4.2.0",
          "System.Security.Cryptography.Csp": "4.0.0",
          "System.Threading": "4.0.11"
        },
        "runtime": {
          "lib/netstandard1.3/Mono.Cecil.Mdb.dll": {
            "assemblyVersion": "0.10.1.0",
            "fileVersion": "0.10.1.0"
          },
          "lib/netstandard1.3/Mono.Cecil.Pdb.dll": {
            "assemblyVersion": "0.10.1.0",
            "fileVersion": "0.10.1.0"
          },
          "lib/netstandard1.3/Mono.Cecil.Rocks.dll": {
            "assemblyVersion": "0.10.1.0",
            "fileVersion": "0.10.1.0"
          },
          "lib/netstandard1.3/Mono.Cecil.dll": {
            "assemblyVersion": "0.10.1.0",
            "fileVersion": "0.10.1.0"
          }
        }
      },
      "Newtonsoft.Json/13.0.1": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "13.0.0.0",
            "fileVersion": "13.0.1.25517"
          }
        }
      },
      "NuGet.Common/5.11.0": {
        "dependencies": {
          "NuGet.Frameworks": "5.11.0"
        },
        "runtime": {
          "lib/netstandard2.0/NuGet.Common.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Configuration/5.11.0": {
        "dependencies": {
          "NuGet.Common": "5.11.0",
          "System.Security.Cryptography.ProtectedData": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/NuGet.Configuration.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Frameworks/5.11.0": {
        "runtime": {
          "lib/netstandard2.0/NuGet.Frameworks.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Packaging/5.11.0": {
        "dependencies": {
          "Newtonsoft.Json": "13.0.1",
          "NuGet.Configuration": "5.11.0",
          "NuGet.Versioning": "5.11.0",
          "System.Security.Cryptography.Cng": "5.0.0",
          "System.Security.Cryptography.Pkcs": "5.0.0"
        },
        "runtime": {
          "lib/net5.0/NuGet.Packaging.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Protocol/5.11.0": {
        "dependencies": {
          "NuGet.Packaging": "5.11.0"
        },
        "runtime": {
          "lib/net5.0/NuGet.Protocol.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Resolver/5.11.0": {
        "dependencies": {
          "NuGet.Protocol": "5.11.0"
        },
        "runtime": {
          "lib/net5.0/NuGet.Resolver.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "NuGet.Versioning/5.11.0": {
        "runtime": {
          "lib/netstandard2.0/NuGet.Versioning.dll": {
            "assemblyVersion": "5.11.0.10",
            "fileVersion": "5.11.0.10"
          }
        }
      },
      "runtime.native.System.Security.Cryptography/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1"
        }
      },
      "StyleCop.Analyzers/1.1.118": {},
      "System.Collections/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Collections.Concurrent/4.0.12": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.Diagnostics.Debug": "4.0.11",
          "System.Diagnostics.Tracing": "4.1.0",
          "System.Globalization": "4.0.11",
          "System.Reflection": "4.1.0",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0",
          "System.Threading": "4.0.11",
          "System.Threading.Tasks": "4.0.11"
        }
      },
      "System.Collections.Immutable/5.0.0": {},
      "System.Diagnostics.Debug/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Diagnostics.Tracing/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Formats.Asn1/5.0.0": {},
      "System.Globalization/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.IO/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0",
          "System.Text.Encoding": "4.0.11",
          "System.Threading.Tasks": "4.0.11"
        }
      },
      "System.IO.FileSystem/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.IO": "4.1.0",
          "System.IO.FileSystem.Primitives": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Handles": "4.0.1",
          "System.Text.Encoding": "4.0.11",
          "System.Threading.Tasks": "4.0.11"
        }
      },
      "System.IO.FileSystem.Primitives/4.0.1": {
        "dependencies": {
          "System.Runtime": "4.1.0"
        }
      },
      "System.Linq/4.1.0": {
        "dependencies": {
          "System.Collections": "4.0.11",
          "System.Diagnostics.Debug": "4.0.11",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0"
        }
      },
      "System.Memory/4.5.4": {},
      "System.Reflection/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.IO": "4.1.0",
          "System.Reflection.Primitives": "4.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Reflection.Metadata/5.0.0": {},
      "System.Reflection.Primitives/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Resources.ResourceManager/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Globalization": "4.0.11",
          "System.Reflection": "4.1.0",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Runtime/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1"
        }
      },
      "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
      "System.Runtime.Extensions/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Runtime.Handles/4.0.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Runtime.InteropServices/4.1.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Reflection": "4.1.0",
          "System.Reflection.Primitives": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Handles": "4.0.1"
        }
      },
      "System.Runtime.Numerics/4.0.1": {
        "dependencies": {
          "System.Globalization": "4.0.11",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0"
        }
      },
      "System.Security.AccessControl/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        }
      },
      "System.Security.Cryptography.Algorithms/4.2.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.0.11",
          "System.IO": "4.1.0",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0",
          "System.Runtime.Handles": "4.0.1",
          "System.Runtime.InteropServices": "4.1.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.0.11",
          "runtime.native.System.Security.Cryptography": "4.0.0"
        }
      },
      "System.Security.Cryptography.Cng/5.0.0": {
        "dependencies": {
          "System.Formats.Asn1": "5.0.0"
        }
      },
      "System.Security.Cryptography.Csp/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.IO": "4.1.0",
          "System.Reflection": "4.1.0",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0",
          "System.Runtime.Handles": "4.0.1",
          "System.Runtime.InteropServices": "4.1.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.0.11",
          "System.Threading": "4.0.11"
        }
      },
      "System.Security.Cryptography.Encoding/4.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.0.11",
          "System.Collections.Concurrent": "4.0.12",
          "System.Linq": "4.1.0",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Runtime.Extensions": "4.1.0",
          "System.Runtime.Handles": "4.0.1",
          "System.Runtime.InteropServices": "4.1.0",
          "System.Security.Cryptography.Primitives": "4.0.0",
          "System.Text.Encoding": "4.0.11",
          "runtime.native.System.Security.Cryptography": "4.0.0"
        }
      },
      "System.Security.Cryptography.Pkcs/5.0.0": {
        "dependencies": {
          "System.Formats.Asn1": "5.0.0",
          "System.Security.Cryptography.Cng": "5.0.0"
        },
        "runtime": {
          "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.Cryptography.Primitives/4.0.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.0.11",
          "System.Globalization": "4.0.11",
          "System.IO": "4.1.0",
          "System.Resources.ResourceManager": "4.0.1",
          "System.Runtime": "4.1.0",
          "System.Threading": "4.0.11",
          "System.Threading.Tasks": "4.0.11"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.4.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.25519.3"
          }
        }
      },
      "System.Security.Principal.Windows/5.0.0": {},
      "System.Text.Encoding/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Text.Encoding.CodePages/4.5.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Runtime.CompilerServices.Unsafe": "5.0.0"
        }
      },
      "System.Threading/4.0.11": {
        "dependencies": {
          "System.Runtime": "4.1.0",
          "System.Threading.Tasks": "4.0.11"
        }
      },
      "System.Threading.Tasks/4.0.11": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.0.1",
          "System.Runtime": "4.1.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.5.4": {},
      "Cake.Scripting/0.8.0": {
        "dependencies": {
          "Basic.Reference.Assemblies.Net60": "1.2.4",
          "Cake.Common": "1.3.0",
          "Cake.Core": "1.3.0",
          "Cake.Scripting.Abstractions": "0.8.0",
          "Mono.Cecil": "0.10.1"
        },
        "runtime": {
          "Cake.Scripting.dll": {}
        }
      },
      "Cake.Scripting.Abstractions/0.8.0": {
        "runtime": {
          "Cake.Scripting.Abstractions.dll": {}
        }
      },
      "Cake.Scripting.Transport/0.8.0": {
        "dependencies": {
          "Cake.Scripting.Abstractions": "0.8.0",
          "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
        },
        "runtime": {
          "Cake.Scripting.Transport.dll": {}
        }
      }
    }
  },
  "libraries": {
    "Cake.Bakery/0.8.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Basic.Reference.Assemblies.Net60/1.2.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-EbbGNgK3y4iL5mZTzTftyTY7qzNKIT2ZkR/BDiLU8KWFpFK0wpULWUf6OM1WgQelFKmtN3z7TfScnlTeO/y7aQ==",
      "path": "basic.reference.assemblies.net60/1.2.4",
      "hashPath": "basic.reference.assemblies.net60.1.2.4.nupkg.sha512"
    },
    "Cake.Common/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mosEo+fvp2BUuTRGgUWclhjwzY5lHdCETjdtw20M6mduQK+xeG22frZAkfHJBlksNyO3Oh/nDFtGr2ocqBwl/Q==",
      "path": "cake.common/1.3.0",
      "hashPath": "cake.common.1.3.0.nupkg.sha512"
    },
    "Cake.Core/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ifUAci1n/5WVykWwKXMUf+6QBmkRZI3UzIu3Dt+FWZ5iSxk503g1SU2l2/fcx9iXvwaXy2pYOlHv9oYTXrmm9w==",
      "path": "cake.core/1.3.0",
      "hashPath": "cake.core.1.3.0.nupkg.sha512"
    },
    "Cake.NuGet/1.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ou2DEsD/BIceg+s1YhKqbRjJufLdiTeAoGBsMGYoSnWUpg/89kKnmjjHTDMRfMu14NsfyZx6bFm93GIWBuSETA==",
      "path": "cake.nuget/1.3.0",
      "hashPath": "cake.nuget.1.3.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
      "path": "microsoft.codeanalysis.analyzers/3.0.0",
      "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
    },
    "Microsoft.CodeAnalysis.Common/3.9.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HiWjF7PNIEngmFg2Xk8cZ/83lRIRkk9v+5ibbY5B7VvjNGdClGAMuWtZER9F5rGRR41VbJLco9ah73jFTh4vPw==",
      "path": "microsoft.codeanalysis.common/3.9.0",
      "hashPath": "microsoft.codeanalysis.common.3.9.0.nupkg.sha512"
    },
    "Microsoft.CSharp/4.7.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
      "path": "microsoft.csharp/4.7.0",
      "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
    },
    "Microsoft.DotNet.PlatformAbstractions/3.1.6": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==",
      "path": "microsoft.dotnet.platformabstractions/3.1.6",
      "hashPath": "microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
      "path": "microsoft.extensions.configuration/2.1.1",
      "hashPath": "microsoft.extensions.configuration.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
      "path": "microsoft.extensions.configuration.abstractions/2.1.1",
      "hashPath": "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Configuration.Binder/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
      "path": "microsoft.extensions.configuration.binder/2.1.1",
      "hashPath": "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==",
      "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
      "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
      "path": "microsoft.extensions.logging/2.1.1",
      "hashPath": "microsoft.extensions.logging.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XRzK7ZF+O6FzdfWrlFTi1Rgj2080ZDsd46vzOjadHUB0Cz5kOvDG8vI7caa5YFrsHQpcfn0DxtjS4E46N4FZsA==",
      "path": "microsoft.extensions.logging.abstractions/2.1.1",
      "hashPath": "microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Options/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
      "path": "microsoft.extensions.options/2.1.1",
      "hashPath": "microsoft.extensions.options.2.1.1.nupkg.sha512"
    },
    "Microsoft.Extensions.Primitives/2.1.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
      "path": "microsoft.extensions.primitives/2.1.1",
      "hashPath": "microsoft.extensions.primitives.2.1.1.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
      "path": "microsoft.netcore.platforms/5.0.0",
      "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
      "path": "microsoft.netcore.targets/1.0.1",
      "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512"
    },
    "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==",
      "path": "microsoft.netframework.referenceassemblies/1.0.0",
      "hashPath": "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
      "path": "microsoft.win32.registry/5.0.0",
      "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
    },
    "Mono.Cecil/0.10.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ffMyCl/PZfD1v6JwWud7Y+Jg0C5cGOZ3jlx8G3b+hj7FUtmnrNHGcAM4EEnaKMyIcsqrfLX05u9XIAMYJSpPqQ==",
      "path": "mono.cecil/0.10.1",
      "hashPath": "mono.cecil.0.10.1.nupkg.sha512"
    },
    "Newtonsoft.Json/13.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
      "path": "newtonsoft.json/13.0.1",
      "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
    },
    "NuGet.Common/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WCHexQBfSqBDRqP3PSDSUw7YM+PwuvMHGAkT/sXI5UHze4T41yLE+VB/km2Fe0z9y3m2mudcr2djFZezivjMJw==",
      "path": "nuget.common/5.11.0",
      "hashPath": "nuget.common.5.11.0.nupkg.sha512"
    },
    "NuGet.Configuration/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-NqsQe198CTHoo7NMrKQL8utd6n9yVb9CPgJmpyF6kpEsLFo/9r0wqGL3ln8Mtcz8yuJpOPWFQEoOlzDzu3LfUg==",
      "path": "nuget.configuration/5.11.0",
      "hashPath": "nuget.configuration.5.11.0.nupkg.sha512"
    },
    "NuGet.Frameworks/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
      "path": "nuget.frameworks/5.11.0",
      "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
    },
    "NuGet.Packaging/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-knlpQuqTL8BEXUHTdZ9Wlz3pjck5nv0OYsCpSkaQAukl7fFcX4apAs8cwJgxHiEZjfWNG1npZOzpYdHG59v5xQ==",
      "path": "nuget.packaging/5.11.0",
      "hashPath": "nuget.packaging.5.11.0.nupkg.sha512"
    },
    "NuGet.Protocol/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-eS/sJLqMzPz6gonD1zaXIcpDME/1DuKqv0Hlag8RuJcboZJliA15qjfg7UvuQB8/ineOleaEvrTzMjpKE0FdbQ==",
      "path": "nuget.protocol/5.11.0",
      "hashPath": "nuget.protocol.5.11.0.nupkg.sha512"
    },
    "NuGet.Resolver/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TDfhS3X1Nl+VGhHOYdzuF03ebDEH4oEcxiWiSy64eQ77cEGmd2ONmvp/5vEI7B+vgyShUNj7oycUlb0lCo5O5w==",
      "path": "nuget.resolver/5.11.0",
      "hashPath": "nuget.resolver.5.11.0.nupkg.sha512"
    },
    "NuGet.Versioning/5.11.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-mCv/GzvMk5iatWoZY41PoIShEbwVxq9CDCc1fV/uqPFKZ4DD/1JuKZ5AL/FJJRsTanvMR3EOXKYCLdQ7PFYn8Q==",
      "path": "nuget.versioning/5.11.0",
      "hashPath": "nuget.versioning.5.11.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"
    },
    "StyleCop.Analyzers/1.1.118": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Onx6ovGSqXSK07n/0eM3ZusiNdB6cIlJdabQhWGgJp3Vooy9AaLS/tigeybOJAobqbtggTamoWndz72JscZBvw==",
      "path": "stylecop.analyzers/1.1.118",
      "hashPath": "stylecop.analyzers.1.1.118.nupkg.sha512"
    },
    "System.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.Immutable/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
      "path": "system.collections.immutable/5.0.0",
      "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
    },
    "System.Diagnostics.Debug/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
      "path": "system.diagnostics.debug/4.0.11",
      "hashPath": "system.diagnostics.debug.4.0.11.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.Formats.Asn1/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
      "path": "system.formats.asn1/5.0.0",
      "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
    },
    "System.Globalization/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
      "path": "system.globalization/4.0.11",
      "hashPath": "system.globalization.4.0.11.nupkg.sha512"
    },
    "System.IO/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
      "path": "system.io/4.1.0",
      "hashPath": "system.io.4.1.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.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.Memory/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
      "path": "system.memory/4.5.4",
      "hashPath": "system.memory.4.5.4.nupkg.sha512"
    },
    "System.Reflection/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
      "path": "system.reflection/4.1.0",
      "hashPath": "system.reflection.4.1.0.nupkg.sha512"
    },
    "System.Reflection.Metadata/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
      "path": "system.reflection.metadata/5.0.0",
      "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
    },
    "System.Reflection.Primitives/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
      "path": "system.reflection.primitives/4.0.1",
      "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512"
    },
    "System.Resources.ResourceManager/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
      "path": "system.resources.resourcemanager/4.0.1",
      "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
    },
    "System.Runtime/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
      "path": "system.runtime/4.1.0",
      "hashPath": "system.runtime.4.1.0.nupkg.sha512"
    },
    "System.Runtime.CompilerServices.Unsafe/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
      "path": "system.runtime.compilerservices.unsafe/5.0.0",
      "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
    },
    "System.Runtime.Extensions/4.1.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
      "path": "system.runtime.extensions/4.1.0",
      "hashPath": "system.runtime.extensions.4.1.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.Numerics/4.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
      "path": "system.runtime.numerics/4.0.1",
      "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
    },
    "System.Security.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
      "path": "system.security.accesscontrol/5.0.0",
      "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.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/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
      "path": "system.security.cryptography.cng/5.0.0",
      "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
      "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.Pkcs/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
      "path": "system.security.cryptography.pkcs/5.0.0",
      "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.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.ProtectedData/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
      "path": "system.security.cryptography.protecteddata/4.4.0",
      "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
      "path": "system.security.principal.windows/5.0.0",
      "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
      "path": "system.text.encoding/4.0.11",
      "hashPath": "system.text.encoding.4.0.11.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/4.5.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
      "path": "system.text.encoding.codepages/4.5.1",
      "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512"
    },
    "System.Threading/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
      "path": "system.threading/4.0.11",
      "hashPath": "system.threading.4.0.11.nupkg.sha512"
    },
    "System.Threading.Tasks/4.0.11": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
      "path": "system.threading.tasks/4.0.11",
      "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.5.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
      "path": "system.threading.tasks.extensions/4.5.4",
      "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
    },
    "Cake.Scripting/0.8.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Cake.Scripting.Abstractions/0.8.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "Cake.Scripting.Transport/0.8.0": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\Cake.Bakery.dll
md5: 9928982B42E50E0CF05A45DC81CEB2E6 | sha1: FD3545B28B705423AFDC24B56A849547F41DD0D1 | sha256: BA5898B5F98B7323136A267246117D5DC4ED36BF5CF6301522D0ECD34FAF1778 | sha512: 0A4C68FCAC90C5CD9AF744FD9D0FA04562FC0A3258597E60C0F3A788DA0A385CC1A28C78F93576E6F7CB8A72B7738341FC791DF7BAF6DA5B0A803DB3C6ADCA92
tools\Cake.Bakery.exe
md5: 91EC1AB74AC353A321F24BAFFC3A1EC7 | sha1: 590DBD437408CDF1B6497639C2704DE6D4D8132B | sha256: DD6122CC4ABD0FE00760A22502EA890C4208540F09A308EF09C4DA6603BB3984 | sha512: DD4E9ACD2F90C2D3A4591690DCE850F642FF46AC7EC13F9E0B0E32FFFA4F3448CA69F8043AF069BD8B2E6E37D1F0D429ABDAAAB91092FBF82294CE95289042DF
tools\Cake.Bakery.pdb
 
tools\Cake.Bakery.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net6.0",
    "framework": {
      "name": "Microsoft.NETCore.App",
      "version": "6.0.0"
    },
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\Cake.Common.dll
md5: 911CC3F86BBBA4DC3AE89DC508F0F8F0 | sha1: EE6A757894B961CD494E9598CE7700CD505D59D6 | sha256: 58A453317798ADC23F47DCCC5A347B8A983A01954E97A5C50A43AC2829641A09 | sha512: 87CE8294703CD3C1B017077D5BF64E7F4DF7F96261AA8280BADEC5388213583F9666C72022C75EFFA8B7C8E15E285CB9484A7271A3A2E065E83A673C00372EA0
tools\Cake.Core.dll
md5: 936CA1E340AB35FECCB9C0690FE0BD64 | sha1: 82F56CFB885276F96515D502A708B2503030A225 | sha256: 125110D7B0C2A71EDD95F50A2C0D73F2890264635046D2818A11D96684B33978 | sha512: AA8A650D76166DFECEDF74880B6110F8AA5C9BFD0A42B0136EABD2EB5A383E47B790762DF8FAA855885C6457ABB31F5104983331BA46F8257526C4438F1ADAFF
tools\Cake.NuGet.dll
md5: D3A4E33D8A7F59BB9D1002B0E4E4F484 | sha1: D5884C02AD638F5A76B32C588CE2F06AF717E72A | sha256: 79B04AA4CCA62A61ACE8C18CDCBEEC8A2D5F902AF63533667A143CCAC68FD8C8 | sha512: D25DAC2213EC179D8991269A960486F50E1F8F6D6FD247C6692258F7FCE30FA24CFF6E0DCFC72BDE7B8048256ED1D6C34A95DB6F7C423465759B9822D1E0DC80
tools\Cake.Scripting.Abstractions.dll
md5: F4AC4E9E006066566F1ABB059A8D7A1F | sha1: CDF9651899D418D253FCD7882754DB161128C646 | sha256: 6A2E3F7D3560B39976BE17BAEBBDBC81E1DB2A09777A7678E246C93F434B593D | sha512: 9B8EE5FD147B72EE2A6845C6AE6E5C75302749C88A0EB40A51DFB1408291A72262F9EBBCC6582ED1784740B0F40DDA93BDDA505077CDE193D64B34BC53A146D4
tools\Cake.Scripting.Abstractions.pdb
 
tools\Cake.Scripting.dll
md5: 6A607EC345A29A18785A2BEE0ED9983C | sha1: 01B682FBF6230960738EF351C886717F41EC5ECE | sha256: F9DD548907DAEB7625A2FDE2099902D6E3E9ED9DF059D79A95E8E3D2E4211A67 | sha512: 1B10919A695441A8F079FE53C26E54744B90B25A2D234540141E542D76573CD07610D836E7E5B1066B5A6CBFA67F2AA69AE437F7ECB2C5F0710190AFFDAD5849
tools\Cake.Scripting.pdb
 
tools\Cake.Scripting.Transport.dll
md5: D0FAA57E536FC8C8F914889E2023B7E5 | sha1: 20379564A8A15D2254A45A6D0FAA661CBA5B7A90 | sha256: 9DDEAB72F09F496B219357F08AA0B5DA259504C2A7798046815DB79DFFAFAE8C | sha512: D8AEC8B486AC36BF155AADF3AEE766D55D5CF0138A7EC3FDA7A1518D0BD160AA76910CED03F975AF82DD4C7329FF58353A54DF0BEA0C9815674DF057F1AD2E4F
tools\Cake.Scripting.Transport.pdb
 
tools\cs\Microsoft.CodeAnalysis.resources.dll
md5: BD2D2B1819DFB5CEE6C196E3DFE812B8 | sha1: A3B5572E2F961B39E65CC5A52A5F3395419B2023 | sha256: 491E8493BC9338C1D4843292E5344E975C3DE0780D51E1497F0C1D3F1D681D7F | sha512: 048CD7EE1FF0E6E269CBBF838891CB0247742F89404C072FACB8AFADCAB9DA0C420BDF0EF4A27C32DE95E9A9A3D78C97A14BB68B4C50704B982713F6E9E171EA
tools\de\Microsoft.CodeAnalysis.resources.dll
md5: 00AFB1A37E7A63A7CBEA25450F938135 | sha1: D9CA223396F5BFBCE803663B8B5AC3AEFAAC776C | sha256: A4E03DF29991AFF5C5D8C46E67EFCF10B1106F2399BD3874995FBA882E2A680D | sha512: 9A3974F605976DA6382DE2B2335CA3C03A8CCB746CC3DFB225B2ACDC7E58FAA73CF9318B9A8712073B990DCC684592095FEA99F965D1C802ED026B9BDFD43A48
tools\es\Microsoft.CodeAnalysis.resources.dll
md5: 05121F0EC7F37F9447761523BA9FE120 | sha1: 8949EE458B73B4726871EC47F36CA965F7138DEC | sha256: 784F2F17A8098B990CF9168380A1F68E5E8D1C3A55EA6AFADDCE508F497AD454 | sha512: 02CF02BF05B398E5FDA25CFF46BFABE8BE8740F5397C04010A43315FD8D9ACFEB6E30D80895B47B3FEF73DC99132E2A5DC06A377DAE932028E2BD4E4D0CC777D
tools\fr\Microsoft.CodeAnalysis.resources.dll
md5: AF03AF833BDD544BDF3DBDF5049BD7F4 | sha1: 5DFA3D2C0D1FEDCEAC499F1BD731A75C02841532 | sha256: 21AEBC6B5124A4C128992B84FE26635931F40323561BC9D3EFF4F2AE9C7DED97 | sha512: 3F63F5163DC3525F9920FA04B534908D87EE64FCAA0DAD72F89B66C3B72903F160F4D7FF428218F533A334B84147EDA4F0BE5C04D5464889DB7D08B362513D2E
tools\it\Microsoft.CodeAnalysis.resources.dll
md5: 337067355424D42F516CD3F2C1A96CFF | sha1: A268204FCE79F4CC9C27465A7B35E62D4938D71D | sha256: AE609DA7D2DCD03F0089DE1BFA71B61515EEFABC360EA3754BB228DFCA7C502F | sha512: 3436F499E9B1612BF2FBE893CAF33A542B91F9BC5B096D4C7AEB7FDAAEABA71E3BDCE607AE18F1E149C847E998B75778082D484051C9798E6760571A8CC484DD
tools\ja\Microsoft.CodeAnalysis.resources.dll
md5: E1F8F271E0CF9BB8701B2AF99C769773 | sha1: CD647A3DDC61D6565D0F745E1824FF3EF45696ED | sha256: 0B70F2E60EEB16BEE7B6AC7CA94A237A059F69878FB7221349BE05FB6B61667B | sha512: BA4316A61B540F895FD9581463E6951E240DF9CCAFB6394FC739D68F82B3124D14BC603C8CC5D829F2153C61D531B524EF8ECB78A24036BA3D13AB0BCD2DAFF6
tools\ko\Microsoft.CodeAnalysis.resources.dll
md5: 1D0F1229B9C1CD7C24A46E652ABDAA45 | sha1: B67493197C4492A2233DBDA7CAE527E7C54BFBDD | sha256: ADBDF9F561E95B541229C048FFDE938558121A202AE3999255065D0335A86F15 | sha512: 4A0B26422DE9B7FCF72E482150194D5FB41D25B5CFF4CA94657EB3D3DE76B053138DF4FA4C1026764387C4B4EBDB1DDBBD72EEED54505DE6CBC70A5F0697E836
tools\LICENSE
 
tools\Microsoft.CodeAnalysis.dll
md5: A184FE5B2D614400BECA3FD34A4D21F9 | sha1: A45BC7AA35D36425DD170C63E89821AEAB42327F | sha256: 11E97FF5FB88E1AA744F110559A3BA433829F00B5AA99F4947FC02EC8437305D | sha512: 59F232076335935F33E25ED3EA698EA830F3E10ECAE0DB57B52C79B58DDECC7B462C29906FA3E42050331D7202DCD00DA0317A95F3C01C75EC9DCAEEA44658B6
tools\Microsoft.DotNet.PlatformAbstractions.dll
md5: 00AB0F02B1114C57C758F5AD595224F1 | sha1: 8CA2D65EBAA52496C3D963869CC8EDEB0A62F654 | sha256: B1F4AD169FB192747F5D2D3111C01DB4257E3EC1F7F18F301F7FC4BE3B869FF3 | sha512: 0EC5E7FA1A48C7ABAC9E31E00DE7DE798A8F5B6C613BAB27AE559BB361D7D35BAF69684E1E3F48C3525E7F2563647E304842F243E6BDF82E44D7C5E3168D915E
tools\Microsoft.Extensions.Configuration.Abstractions.dll
md5: 2A09A26748FDA34CE32AD54C916BBCC2 | sha1: 0D9C96C865A95A2D5ADBC223E82191D0252C1D73 | sha256: 4CB5A4F1CEDFB8FDEE5DE6DE23B0D29AC86D9CE24DABFB9924146C7D70F3B78D | sha512: A02DE54BDDB33DDFE02E511BAD4D1749E023C8E6239423FEFC34C08C2DB3150987E0535275F5A2648D244BC67DBA09CB10C0F44F702AD5BC19A506B34322029B
tools\Microsoft.Extensions.Configuration.Binder.dll
md5: A384D13552220527A419E02FC4224EB5 | sha1: EDF41CE9CDC0315E782E01F011E9868A788D22A1 | sha256: 43CAE0256A8BC4FD190B8397862A852AB1016FDC0C0ED6AB61C999A1A7396FBF | sha512: D21858FF6C47C680BBA7B6FAB44D789B4B45FBA118B12D1D4C16E8851EC79EE1EC9C55302B880AD7E8DBD9103C3D5685CFEB896E5BDA30FA3DAB2161FDEAC6D5
tools\Microsoft.Extensions.Configuration.dll
md5: BC350F611503F4327B7A626E163F857D | sha1: E058E084AEE4F9F9EA730C7743EF5012F2A2C979 | sha256: 3D5D8FDDC11B27573942D1FEBA5D8AC91E2504C82AD489003ACF3E17FDB130EC | sha512: 5DCEF387C788C02CE06DC378524EE8674FB5DDC7796EAF1FEE1728D036968BE23CC73CF3C3298266D9997C50ACA155D04B990B809F07A22B06525DF50F3405DE
tools\Microsoft.Extensions.DependencyInjection.Abstractions.dll
md5: 04493404156B007522B2A8D623B565E1 | sha1: C15B9681C14D2984946DF6EDEA0E7A44DFC0DC4C | sha256: 901B7C5727F29FA4F55EB2CF9F1A44D15AFD02F1D14103EB08966DE31F5BB12F | sha512: E1CAD2C83621E987832E8C9CC24BE63881376300325EA7CD1730D1CFDB434683F378086A6372A7CB270527724019C9E8732DE1D95E8C8344739B459A616B44CC
tools\Microsoft.Extensions.Logging.Abstractions.dll
md5: 98DFEDBF77E0C9143386FD8D7D42A323 | sha1: A497FE8B43210A58AE75360385F4046D9109A6CC | sha256: 8C7763FCE381531DDA9E9D6B533599E789F705DA613AC711B7C82F8C08185BB4 | sha512: D11FD3DC0423D7A0C76B90AB81DCB63BFD82040D00385E2045DE9FC321C37470ADB7A20F2A25D1B00FED8F5C0D8B6F1883961F31C2865F58F8D07ACEB6115DAE
tools\Microsoft.Extensions.Logging.dll
md5: A430C08BAF4A943F0425F247ECF6CB36 | sha1: 73B81975E970E2A18B17B77B760183843F831F86 | sha256: AA5217FAD65FD54F843C348160E02ABCE8BB321F0714577754A5995D3489896A | sha512: 40E662FC30AEDD50EA0F7E682A70C920B03DF4CEA9B3620FF5E77E14F19A9AECD90BFA2D5D8B49A03DED9ED8628302B8B90CC14115D920BFB73C3308EF10D911
tools\Microsoft.Extensions.Options.dll
md5: FCF6B5811B50BE9631088130CA035AFA | sha1: 516547000F60B6660840F1ABF95CAACB092DA42B | sha256: 1323345E21F12E5C0CD90ED2A96FC497010A94667EA4FDAF4C9BBBDB1610F148 | sha512: BB3610250BEB92700E834FF2BC28C61FAE641F8F2B8C410C51B6F81646870C708CF6755C00D467AA0A886FE23E5F1FED856047273C19FEDCCF5A3F63463028C4
tools\Microsoft.Extensions.Primitives.dll
md5: 33F2319D8E78733838D51BFACC14E5EB | sha1: 0051315B000E8EF6FD1EC8F03F9EB8644925FB56 | sha256: FA58254542604E4C90E9876B5A5C7653D6AC8A3164102E5604981FBA6660F750 | sha512: 7E83EFCCEC749A5671334BB0CCCC6510E4A7DE94050D67167D90FB89A53DF5C9E80552332A1585A1AAA5F78000055349B47B4B75BC5DD6CB78B0BBE6A9D0E03C
tools\Mono.Cecil.dll
md5: 55D9DE2FDB06C0E6EA9B160D5D2FFB6C | sha1: 4E20DDE290EF17D56F296F746CD9D37EF1F6D2EB | sha256: DC30138C3851CB86F6E99022E4073980A60EE940100B6750150243EC0FC6CE17 | sha512: 6B582C86BEF680F069130658F71CBE5AD1C52C4EEB14742B71E0C273BE431359E877D8D926A1CF2CDE30DB056AD10B19A4221D2376470A03C7D2226FAF5A6BEC
tools\Mono.Cecil.Mdb.dll
md5: DB7717F75EC98F5CD7D07453C8428425 | sha1: A1412A215AC45E2A60C45E9F0B2D8B5CD9467CA7 | sha256: 3DA9CB360E52C0C81A4A24C714DE4B3E2205C802D386E01AE08DB897D0B2DDE1 | sha512: 5BA53BD656A026DC2DC8AB0975F6FE048BF9A7DAE71F12562ED69C8F4DF6038BC4416848878BF9AD9CAA730BCA783F61DF45F1DA4C84E71A7BBDE321CC0FD5FA
tools\Mono.Cecil.Pdb.dll
md5: 70BF4E6D7812FEDE872FC5768A0D2917 | sha1: E2B66F24B0273A5A08A6ECB3D9C601049ADC79C0 | sha256: 1E26794F217FC635FE61C8191B588BD7FC47D15770900548DA8044D176F4FB61 | sha512: 9A11E4A13AB2AB83132D13D23390F55D3E804336F065B962CF640C11CAC649F912DD502C88B60C4263172AAAB0DD13BCE55DE9BA6F07B25F779B63584262C156
tools\Mono.Cecil.Rocks.dll
md5: 1CEC1A4CDCE9798F89E01EE1DDAAA9CF | sha1: 7071949D4D1E6DBACFA0631F011901D980FE7BAB | sha256: 130A7CE244AC987F050797301F6313E8947D4C874C709771FDFCC186ECCD8A45 | sha512: 4999AA2688842C57036E30312DFC5C94983AA2C78159DF928D68BAC18F588193FAFBE74CC1860E29CFDAFD016B11AB0750F2E2C1226294D20C4FE4D41B488820
tools\Newtonsoft.Json.dll
md5: 916D32B899F1BC23B209648D007B99FD | sha1: E3673D05D46F29E68241D4536BDDF18CDD0A913D | sha256: 72CF291D4BAB0EDD08A9B07C6173E1E7AD1ABB7AB727FD7044BF6305D7515661 | sha512: 60BD2693DAA42637F8AE6D6460C3013C87F46F28E9B0DBF9D7F6764703B904A7C8C22E30B4BA13F1F23F6CBEE7D9640EE3821C48110E67440F237C2BB2EE5EB6
tools\NuGet.Common.dll
md5: 22D47812D8CEDE4B90A0CC0FFAAAE124 | sha1: F9BF431ED989CD1CDF4F6393AAD0D80D4610ECF8 | sha256: 33C4CF29ECE7F14F8152D6ABFA1F66C2ECEC74C5B804A9439D4A98A9AE8F948C | sha512: 27DA9AD6D73C26FB6C007BAC5AC3BD53DD5A92E8F67EBC0F6F22F297D7BD3CA5F446F29BB2828E85829863FBF34408502E775C5E7EAE7682A2B74FFF9E4E6CB7
tools\NuGet.Configuration.dll
md5: 5BA1279504AB29D19AAD831FA712085F | sha1: 4BB42A0E0D4CEA1C8C0943D2001914371357AA52 | sha256: C578F29243B76943B5F00C55B5F856241E718EC021D404DEA35622FD80A12336 | sha512: C58D465204E2722CCC83FC2CC14F6D8A334EBB77E8CFECB7AFC4235731CF46FCBDAB3C73FE8905C719DB83B5715A3DA2AC852C81818CF683364FE6CE06A972DD
tools\NuGet.Frameworks.dll
md5: 512E43F9429747041BF225E998FF2D59 | sha1: 4B4ACFD1967CD2906B768454B253550417AA9F03 | sha256: 7A71F486ACBE2406AA8BCEA388C58969F5DF53E7977EEC2E029554ED1FC9BE86 | sha512: 21DE5DEE8645A29FA269AD2280A9B5FD407D9E4BBFF6C1F1642A247514ED8F2149F48B66B92DDEDECB0BE9C18FC63BDBD56E99A61D91C1E73D963D5D2CEC1D9B
tools\NuGet.Packaging.dll
md5: 5808841CFCA73156B30EC938FA3F009C | sha1: 36481401F8EDE0716671DD0DE370B64D9DAC2366 | sha256: 417445B040D24B74D65C64E93EA6AF73E085EFDF8BF1E517301A8A7483339A2D | sha512: 646F66D55722E1AB5118353092150CB26EA09BDBBF70572036C063003DB973BFAA975D160693E44A5AF8C4DFA4873A1E17EB3DCF48F7383864717FFA2E7620D6
tools\NuGet.Protocol.dll
md5: 78F12760DA7F8D236777205009E14E3D | sha1: 1E26FC0D2AC69DA64E41C3F6AD92F513769C3CA4 | sha256: 71220C74EF71FC4D0C2B225E993850307AD7BD7F56E60EBAC462DA5C465D8451 | sha512: AB8917CED3466EE1B8129A2EC0681109A48ED5E0FF7BA6E74E0ACC54D12C6F5B19476AB849EB89110E5BACBCD851599EE1F1DE0DFEF525BFEA348AED502D4A78
tools\NuGet.Resolver.dll
md5: 4FFC229A4B85E9C5AD53BC6AB77667AB | sha1: 1A9E15EA59FAEEE5A43253FC41776EF6F7B65305 | sha256: D8392A78CB0B21B8670199216FD605D81FB63F242A7519FD619922F8AFA86B9F | sha512: 6925717A9CC934D6695FC6D6101B353CEE1A42069ED6C8D3BAFCF45A273D71FAE7F6BADDA5734039402DBA7DD0F9CDC3A0B3690C3F4039ADDBEC1CC551573BDD
tools\NuGet.Versioning.dll
md5: 2415A1CADD5CBD05E64AD38939A29759 | sha1: 9D631E02EB825A97AD575A7AF3E8B844C040EF5A | sha256: 79B977239FA0512F91F4B2B8A5F17CA4D25C7DAAA34611052BE3BD9EA44DBF46 | sha512: DE7F2D5CE06CB0AE008CA3A132E82C584648AAEE382E1E9BCB6B49F8604F5133E6EE3DF65E1E978C7F0D3648C2F05D078BBDA2DBF6EBEFBB7A1E86EEB0919826
tools\pl\Microsoft.CodeAnalysis.resources.dll
md5: C6C67AD06B6A710A476A872E60E8A6E4 | sha1: 993F0BD96594F379891D7F3295A4FC4EB00CEF17 | sha256: E66DD1C4ED1A9E42E7C0F36AC6E29244AB0468965525B19D0E2D1BB65CCE8260 | sha512: 89B3901F81088E372A5A5F8355CB9F03D110F6AF87EF60D95623AC59F36B33D1ED1857454E717B0B2715C5995D37D3C9B2CBB9F09559A487E4133801FA751051
tools\pt-BR\Microsoft.CodeAnalysis.resources.dll
md5: 1F147966D928C83770FA1FD878C2E8CB | sha1: E268AE2FA3888AEC2F604F9AB73E5AA4370DD019 | sha256: 00439950C7DB297724EBA0E688C246DF6E4405023F747FC666281FBD5492CBE7 | sha512: 66511CE9462B894D1BD584190B044D0FD0E4EAFFB015D2F1A98AE0F4ED7888485C7470597E16E9E17BFB8EF9CDA7113A41727E1DF184CB92F63876AE87D1C649
tools\ru\Microsoft.CodeAnalysis.resources.dll
md5: F07BA967AD03C1A10E38214732D7B070 | sha1: DEF5DBB33C25568E52D1E0CD461AA25718971ED5 | sha256: 39A6CC83BCCD7F5C51130AE05606DFD850EED4B22FDD3828A7455F69633F00A1 | sha512: 2B12B41ACCA210DEBF49160B4530B4D2372DF70B56FCE31174C3B981C954194984D2AC125FE2C145D9FFB7E7E2497A7980EE85F69C84B30B86572D4B5DE95EED
tools\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll
md5: 0E92C23AB082AE85D899CB156EB95181 | sha1: DBDADB33A03ACC12C06D247FC0A2D24293D258FE | sha256: DCD6223FBBBCA170271F02E8A55B76F5C0E57351B972EE92BC7336D1D3A2EC60 | sha512: 4198DB992B312F1BCAC29854DE216B2F41E22CD29CC5541CE3034BAD684C6414ABD1CD43AE6D72CE753B851749D919C60B333BA5AFAFFD0A366869EAADD3A8DF
tools\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
md5: 91B5141F40E650DF9F24959E002E6C66 | sha1: AC8675F91A4879042ED660C1D800058185552A57 | sha256: 1C73A1B016CFC8D497106EEC08AF07616F2F4C07E4DDC807C9F120CEACD0A53A | sha512: 6E1F88FC7C1ED560C4CA6168FAE9275583C7D664AF1A70F2A0A97A717D4B7E1D40A33F06B2782BB4ADB47AFC8B30B136DC28C0487A9DAEE183D8156DE5E5161B
tools\System.Security.Cryptography.Pkcs.dll
md5: 98D74E9743BFE0F982D151582C4A4F98 | sha1: 9633F9EC761FD6D03446C80A99161E75EDC1FAA7 | sha256: D3A023C0207B32B02ACEC3E5573B8EB3C17A2C5C5BF591BB2335109524DC01B6 | sha512: AD5609902F2C3A1EF0B410F85DDDEDA9BE8AC5A8B825CA4EC8E797B49F03B2658353B3D34CC7B12E2D3D58BA30EA6F7E9B784667D5C39AE442CBB1D77FBD12F9
tools\System.Security.Cryptography.ProtectedData.dll
md5: D3AD09FBF202167B7E6B5F0E1296380B | sha1: 2C099DB9745C21754B03A4C9AF55213A1A4444F5 | sha256: 81A0385CF1FED22F3153789D4AE1FEE75719F23E72CD543EDBA1AF48926FBF24 | sha512: 0B660A4ACB24D382BBD7058E2A3D21CDD741E7ED0A9D60672B0B667A75E145E229A594D302C78AECB5A729830092BA0117187665F8043A6590F8829D86991395
tools\tr\Microsoft.CodeAnalysis.resources.dll
md5: 01F7154837DD7ADE1FE662F60BCE1D78 | sha1: F2A9C2AE4947DD33AAF9E541231DE9407B4C8875 | sha256: E4F0E9E4AA3A76B9679E1AACD405108E86F54687F6A2CF87B2EF9766BF0B1B02 | sha512: A79A775FA16C08CFB0107FC37A1507E021DE97F8B656BDEF9E089378B51D1A539B18C4B662E4FC0A727CA1E58C5B5548745D7B9DA2402F2B297573B9C391F3D5
tools\VERIFICATION.txt
Cake.Bakery is from the Cake Build Project, and we maintain the package.
tools\zh-Hans\Microsoft.CodeAnalysis.resources.dll
md5: 6DFFCB06FCD693BB53BC936B713DCD7D | sha1: 4624153006012D9A057A6E62D509CBF8155314C4 | sha256: 3CED24815D2F5E8ECA1DB4397EF1F0DA3901348D560C3FCD49AA25759E15EA5D | sha512: 3C070AAEE39514097A2256AF92BEA47C916F54AA7E313D92A2A76E9A854D08603F817F39AEF741E682A79A322E0B26814D4C6A6496E9C725701586DB33F48E33
tools\zh-Hant\Microsoft.CodeAnalysis.resources.dll
md5: F99006E932ECD51895B060C99E79E9E4 | sha1: 2842201AD806EE3359F9148720002D315AD979C0 | sha256: B962CDC66A84E8F45AAF24B80364BE87D7CC21B833FD71D328288E5926BE7247 | sha512: F26ECC0E260696C0D05E9A6D7CD2B4E5AF933F1EEC116C9DD239A20B61963953A6573E864DDEFD0F4552B41ED35C092F7D54A2D18DA706A550587FFFAD31CB42

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
Cake-Bakery.Portable 0.15.0 27 Monday, November 13, 2023 Approved
Cake-Bakery.Portable 0.14.0 62 Sunday, July 9, 2023 Approved
Cake-Bakery.Portable 0.13.0 137 Wednesday, November 9, 2022 Approved
Cake-Bakery.Portable 0.12.0 50 Friday, October 14, 2022 Approved
Cake-Bakery.Portable 0.11.0 115 Friday, April 15, 2022 Approved
Cake-Bakery.Portable 0.10.0 58 Tuesday, March 29, 2022 Approved
Cake-Bakery.Portable 0.9.2 87 Sunday, December 12, 2021 Approved
Cake-Bakery.Portable 0.9.1 60 Saturday, December 11, 2021 Approved
Cake-Bakery.Portable 0.9.0 81 Wednesday, December 1, 2021 Approved
Cake-Bakery.Portable 0.9.0-beta0002 47 Saturday, November 27, 2021 Approved
Cake-Bakery.Portable 0.9.0-beta0001 49 Friday, November 26, 2021 Approved
Cake-Bakery.Portable 0.8.1 66 Thursday, November 25, 2021 Approved
Cake-Bakery.Portable 0.8.0 73 Wednesday, November 24, 2021 Approved
Cake-Bakery.Portable 0.7.2 69 Sunday, November 14, 2021 Approved
Cake-Bakery.Portable 0.7.1 42 Saturday, November 13, 2021 Approved
Cake-Bakery.Portable 0.7.0 65 Thursday, November 11, 2021 Approved
Cake-Bakery.Portable 0.6.5 71 Thursday, October 14, 2021 Approved
Cake-Bakery.Portable 0.6.4 121 Friday, April 30, 2021 Approved
Cake-Bakery.Portable 0.6.2 91 Monday, March 8, 2021 Approved
Cake-Bakery.Portable 0.6.1 69 Sunday, March 7, 2021 Approved
Cake-Bakery.Portable 0.6.0 60 Saturday, March 6, 2021 Approved
Cake-Bakery.Portable 0.5.1 131 Thursday, November 19, 2020 Approved
Cake-Bakery.Portable 0.5.0 92 Thursday, November 19, 2020 Approved
Cake-Bakery.Portable 0.4.1 434 Sunday, March 17, 2019 Approved
Cake-Bakery.Portable 0.4.0 145 Saturday, March 16, 2019 Approved

This package has no dependencies.

Discussion for the Cake-Bakery.Portable Package

Ground Rules:

  • This discussion is only about Cake-Bakery.Portable and the Cake-Bakery.Portable 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 Cake-Bakery.Portable, 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