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:

699

Downloads of v 1.2.2:

416

Last Update:

16 Jun 2021

Package Maintainer(s):

Software Author(s):

  • inventiv

Tags:

codegen gazel cli backend framework dotnet

Gazel CLI

  • 1
  • 2
  • 3

1.2.2 | Updated: 16 Jun 2021

Downloads:

699

Downloads of v 1.2.2:

416

Maintainer(s):

Software Author(s):

  • inventiv

Gazel CLI 1.2.2

  • 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 Gazel CLI, run the following command from the command line or from PowerShell:

>

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

>

To uninstall Gazel CLI, 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 gazel-cli -y --source="'INTERNAL REPO URL'" [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 gazel-cli -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install gazel-cli
  win_chocolatey:
    name: gazel-cli
    version: '1.2.2'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'gazel-cli' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.2.2'
end

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


cChocoPackageInstaller gazel-cli
{
    Name     = "gazel-cli"
    Version  = "1.2.2"
    Source   = "INTERNAL REPO URL"
}

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


package { 'gazel-cli':
  ensure   => '1.2.2',
  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 mwallner on 13 Jul 2021.

Description

Gazel is a back-end development framework for the .NET framework. This package contains Gazel command line interface to help you generate client code.


tools\Castle.Core.dll
md5: 2FBA45E50A9FB187E9873416BC6B4400 | sha1: DCCC6B85DED3FFD6B1BF5C63F646A91A1DEF795B | sha256: 9964A5C497DCAEA9BC047C719869A1C5483F9F383311A045D320148E0DF13A23 | sha512: 8AFEA051BD8EFC309ECD1FE9F134052C8508BB637B5B82542813F75DD6EE26891FD0B77D99A41A12CC189375B6481310D329C8CA2C644F8AF4B4710933AF87BB
tools\Castle.Facilities.Logging.dll
md5: CDFC20AEC31B9EBFA4DF3C272BAFE2DD | sha1: 78F3DA25A14E01E5893462998CF3FF5C0E1443C2 | sha256: 489404721EF26F169D4D00E055D0ABF7B212ADE71A10391597162D1E42B39F3B | sha512: A60A897D346BF8727DE358B388F20CE8B5B6B6E8CB37EA7151B868C1CC59177BE351AA8ED49680EC2351E407B4F6131FA7A693AD4AAA429BEB73C6E5C46662D6
tools\Castle.Services.Logging.Log4netIntegration.dll
md5: 39B61C59E45944EF411F51F752133EC5 | sha1: 32D7275F91933B2464051A6643CCF1725769A972 | sha256: 6D3FDA1178B44E156A8364FAAE649109C032BB9DD3572E1A5C170F3282B4BE69 | sha512: 65663442FDD17A24CB8E83F4D76C6320D3418B43C8D8A9BFDCF57CB898753213AA09ED47C55051E3093E1A28CDA7F0B1F0EDE2D88BEB98F07B17F2B81CF41912
tools\Castle.Windsor.dll
md5: FEF7BC5E9B8F0C90AD8580C41B784912 | sha1: 6976F709542D4837C68ED3F2FAD39830BF18E4A8 | sha256: A0934C1690577A7E59C170CD82C1FB11B1D1879AE290A139D7661EA3302009A2 | sha512: 2BB493DFC41E1F4C11B6646791BF2A5FE291DFD146E7BE97AD2FB87C604D2CBC80CFC08B35E05817F0F31E8DD9A92D311F47676DDAD75CCE5810B00D3D2F63FC
tools\CommandLine.dll
md5: D788B7DEDB2E07AB596569360FCD3154 | sha1: 3FEE00542701EA636C8A4DB60E96856CFE4DEB39 | sha256: 26AF31165DBF6AF3864609DF7834A06404E6CFBD8905BA202E0A0BB921326D57 | sha512: 1E83C8E64A63046D1C0A620C088CCBA5E7205539B249DC814B59A0360BD06DADD66D6D1E4B0B494C574D311FCA1103011691453D910CF32B6092DD8F492DC8D2
tools\files\templates\client-api.mustache
 
tools\g.exe
md5: 16DF77CECF305E13BB1A2481AE4687F8 | sha1: C5170A1EA3EB1AC7871FFE9526480B7C68CF6F88 | sha256: 9850BBEC1E13082E66593CA6E089096CD57F142D9DE52F315A19AE2BC11D2D4D | sha512: D4E136AFD05A841F735894B002FA5E898068E420AA9489F1303BBBBFFF5073DA152462B39C57ED6A36B828CFF9EC95966335A64F1B07ECAF168757C01C9CA2F1
tools\g.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
  </startup>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.5.0" newVersion="4.0.5.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices.RuntimeInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections.Concurrent" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Collections" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.EventBasedAsync" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Data.Common" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Contracts" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Debug" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.StackTrace" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tools" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Diagnostics.Tracing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Dynamic.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Globalization" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Globalization.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.IO" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Expressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Linq.Queryable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.NetworkInformation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Requests" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Net.Sockets" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.ObjectModel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Reflection.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Resources.ResourceManager" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.InteropServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Numerics" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Json" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Runtime.Serialization.Xml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.3.0" newVersion="4.1.3.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.Principal" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Security.SecureString" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.Encoding.Extensions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Text.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Tasks.Parallel" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Threading.Timer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XmlSerializer" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.0.11.0" newVersion="4.0.11.0" />
      </dependentAssembly>
    </assemblyBinding>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>
tools\Gazel.Configuration.dll
md5: ED4902AF16E9985199E7774234E5CD18 | sha1: D1CD62819F30EFBEC71CCCB36218331D010981D5 | sha256: 5638D4D7DD1F89E0340E4A58E8D9B0A23F30242432121A1E14F96D94F3465006 | sha512: 8780BFE0FE8AC892E6F453E77E8CE351E469552065DA300D70F94F5D46574B6D0252EDB656E7AE36DAAF3F263B59AFF1247A0C895BE9D2F649033F8D9D0DA082
tools\Gazel.dll
md5: B2A8F5233FFB7FE1FAC77A08BE51309A | sha1: 0D7F084259CEAAB0A1FC9BEDA372000509C48457 | sha256: DC6CEF4253334A264765F71B798DE8D8598CC8B409BD32A1ACD486FA07B2B964 | sha512: BCE7E0D5B10001194E2696D7B293F0B7C4E5C18B613917CA1A15F7F8539254513DB12D869C70CC2C88B69AF5F5A377CD0FD85DBB2BC929395A7B44C9A4A7FE77
tools\Gazel.System.dll
md5: D4583C2AED71B6FA202D4514390E0B54 | sha1: E751181443D1B26061FD9704231BCAE7609954EB | sha256: 6BAEF5ACF75E4EEB2D72065DB4179B7B0202E9B1DA4182C8A6EA657821ED7D97 | sha512: E26CF6BA0209F39E9A665447A228975D0BDBEBEE11A9FB7FFCB36A290A0F82A01878975D1E3F8F1BC766932B3D85C31B7722989192D20C740AF5E5C0A437F0E6
tools\LICENSE.md
License Aggrement for Gazel - Terms and conditions
--------------------------------------------------

1.  **Preamble:** This Agreement, signed on Feb 19, 2018 (hereinafter:
    Effective Date) governs the relationship between Multinet Teknoloji,
    a Business Entity, (hereinafter: Licensee) and Multinet Teknoloji, a
    duly registered company in whose principal place of business is
    Dudullu Organize Sanayi Bolgesi - BUDOTEK (hereinafter: Licensor).
    This Agreement sets the terms, rights, restrictions and obligations
    on using License Aggrement for Gazel (hereinafter: The Software)
    created and owned by Licensor, as detailed herein

2.  **License Grant:** Licensor hereby grants Licensee a Personal,
    Non-assignable & non-transferable, Pepetual, Commercial, Royalty
    free, Without the rights to create derivative works, Non-exclusive
    license, all with accordance with the terms set forth and other
    legal restrictions set forth in 3rd party software used while
    running Software.

    1.  **Limited:** Licensee may use Software for the purpose of:

        1.  Running Software on Licensee's Website[s] and Server[s];
        2.  Allowing 3rd Parties to run Software on Licensee's
            Website[s] and Server[s];
        3.  Publishing Software's output to Licensee and 3rd Parties;
        4.  Distribute verbatim copies of Software's output (including
            compiled binaries);
        5.  Modify Software to suit Licensee's needs and specifications.

    2.  This license is granted perpetually, as long as you do not
        materially breach it.
    3.  **Binary Restricted:** Licensee may sublicense Software as a
        part of a larger work containing more than Software, distributed
        solely in Object or Binary form under a personal,
        non-sublicensable, limited license. Such redistribution shall be
        limited to unlimited codebases.
    4.  **Non Assignable & Non-Transferable:** Licensee may not assign
        or transfer his rights and duties under this license.

    5.  **Commercial, Royalty Free:**Licensee may use Software for any
        purpose, including paid-services, without any royalties

3.  **Term & Termination:** The Term of this license shall be until
    terminated. Licensor may terminate this Agreement, including
    Licensee's license in the case where Licensee :
    1.  became insolvent or otherwise entered into any liquidation
        process; or

    2.  exported The Software to any jurisdiction where licensor may not
        enforce his rights under this agreements in; or

    3.  Licensee was in breach of any of this license's terms and
        conditions and such breach was not cured, immediately upon
        notification; or

    4.  Licensee in breach of any of the terms of clause 2 to this
        license; or

    5.  Licensee otherwise entered into any arrangement which caused
        Licensor to be unable to enforce his rights under this License.

4.  **Payment:** In consideration of the License granted under clause 2,
    Licensee shall pay Licensor a fee, via Credit-Card, PayPal or any
    other mean which Licensor may deem adequate. Failure to perform
    payment shall construe as material breach of this Agreement.
5.  **Upgrades, Updates and Fixes:** Licensor may provide Licensee, from
    time to time, with Upgrades, Updates or Fixes, as detailed herein
    and according to his sole discretion. Licensee hereby warrants to
    keep The Software up-to-date and install all relevant updates and
    fixes, and may, at his sole discretion, purchase upgrades, according
    to the rates set by Licensor. Licensor shall provide any update or
    Fix free of charge; however, nothing in this Agreement shall require
    Licensor to provide Updates or Fixes.

    1.  **Upgrades:** for the purpose of this license, an Upgrade shall
        be a material amendment in The Software, which contains new
        features and or major performance improvements and shall be
        marked as a new version number. For example, should Licensee
        purchase The Software under version 1.X.X, an upgrade shall
        commence under number 2.0.0.

    2.  **Updates:** for the purpose of this license, an update shall be
        a minor amendment in The Software, which may contain new
        features or minor improvements and shall be marked as a new
        sub-version number. For example, should Licensee purchase The
        Software under version 1.1.X, an upgrade shall commence under
        number 1.2.0.

    3.  **Fix:** for the purpose of this license, a fix shall be a minor
        amendment in The Software, intended to remove bugs or alter
        minor features which impair the The Software's functionality. A
        fix shall be marked as a new sub-sub-version number. For
        example, should Licensee purchase Software under version 1.1.1,
        an upgrade shall commence under number 1.1.2.

6.  **Support:** Software is provided under an AS-IS basis and without
    any support, updates or maintenance. Nothing in this Agreement shall
    require Licensor to provide Licensee with support or fixes to any
    bug, failure, mis-performance or other defect in The Software.

    1.  **Bug Notification:** Licensee may provide Licensor of details
        regarding any bug, defect or failure in The Software promptly
        and with no delay from such event; Licensee shall comply with
        Licensor's request for information regarding bugs, defects or
        failures and furnish him with information, screenshots and try
        to reproduce such bugs, defects or failures.

    2.  **Feature Request:** Licensee may request additional features in
        Software, provided, however, that (i) Licensee shall waive any
        claim or right in such feature should feature be developed by
        Licensor; (ii) Licensee shall be prohibited from developing the
        feature, or disclose such feature request, or feature, to any
        3rd party directly competing with Licensor or any 3rd party
        which may be, following the development of such feature, in
        direct competition with Licensor; (iii) Licensee warrants that
        feature does not infringe any 3rd party patent, trademark,
        trade-secret or any other intellectual property right; and (iv)
        Licensee developed, envisioned or created the feature solely by
        himself.

7.  **Liability:** To the extent permitted under Law, The Software is
    provided under an AS-IS basis. Licensor shall never, and without any
    limit, be liable for any damage, cost, expense or any other payment
    incurred by Licensee as a result of Software's actions, failure,
    bugs and/or any other interaction between The Software  and
    Licensee's end-equipment, computers, other software or any 3rd
    party, end-equipment, computer or services.  Moreover, Licensor
    shall never be liable for any defect in source code written by
    Licensee when relying on The Software or using The Software's source
    code.

8.  **Warranty:  **

    1.  **Intellectual Property:**Licensor hereby warrants that The
        Software does not violate or infringe any 3rd party claims in
        regards to intellectual property, patents and/or trademarks and
        that to the best of its knowledge no legal action has been taken
        against it for any infringement or violation of any 3rd party
        intellectual property rights.

    2.  **No-Warranty:** The Software is provided without any warranty;
        Licensor hereby disclaims any warranty that The Software shall
        be error free, without defects or code which may cause damage to
        Licensee's computers or to Licensee, and that Software shall be
        functional. Licensee shall be solely liable to any damage,
        defect or loss incurred as a result of operating software and
        undertake the risks contained in running The Software on
        License's Server[s] and Website[s].

    3.  **Prior Inspection:** Licensee hereby states that he inspected
        The Software thoroughly and found it satisfactory and adequate
        to his needs, that it does not interfere with his regular
        operation and that it does meet the standards and scope of his
        computer systems and architecture. Licensee found that The
        Software interacts with his development, website and server
        environment and that it does not infringe any of End User
        License Agreement of any software Licensee may use in performing
        his services. Licensee hereby waives any claims regarding The
        Software's incompatibility, performance, results and features,
        and warrants that he inspected the The Software.

9.  **No Refunds:** Licensee warrants that he inspected The Software
    according to clause 7(c) and that it is adequate to his needs.
    Accordingly, as The Software is intangible goods, Licensee shall not
    be, ever, entitled to any refund, rebate, compensation or
    restitution for any reason whatsoever, even if The Software contains
    material flaws.

10. **Indemnification:** Licensee hereby warrants to hold Licensor
    harmless and indemnify Licensor for any lawsuit brought against it
    in regards to Licensee's use of The Software in means that violate,
    breach or otherwise circumvent this license, Licensor's intellectual
    property rights or Licensor's title in The Software. Licensor shall
    promptly notify Licensee in case of such legal action and request
    Licensee's consent prior to any settlement in relation to such
    lawsuit or claim.

11. **Governing Law, Jurisdiction:**Licensee hereby agrees not to
    initiate class-action lawsuits against Licensor in relation to this
    license and to compensate Licensor for any legal fees, cost or
    attorney fees should any claim brought by Licensee against Licensor
    be denied, in part or in full.
tools\log4net.dll
md5: F64B733EAE44C8C66217386D5A0F2BF0 | sha1: 92683E4FB8D3C7A544DCE21E12F24DCC8B600E9C | sha256: AF5610C515D2244DB98C662636264C8177E89B1AFE407F88FD18A41D66F6E7E2 | sha512: 74AAE11529AB5EFDBE4C6F7232BA4C24EEF570B3BBFEA94657940450B34F61503C36DFC560E252F35352BB3D8F54A7A317C9E52AD0B60B9BB666B0DD4913B40F
tools\Routine.dll
md5: F2D59DD83D9D3AB1EC5A63247197F1C1 | sha1: AB77EDE52D6B8AA59DAA51E635C8C90B0556A418 | sha256: A39123643493369B1422BF78088C66B12D0C64978393FE595AA3607E54314883 | sha512: 8AE2ED0F485B5087D0417E42E675A0202F9D586CDC5D020D5CFDC385B5436647F4962848EF14AD3ED2A5C553972C6E0736A33505FF5B87BA4597DB04CD698700
tools\Stubble.Core.dll
md5: 7C1FE39E7BE08762EB57DF85BF3F708D | sha1: BC028E3CF8072B74DFD23EDAAFE9D644F11E5016 | sha256: 467AFBEC9D010D9CE66722D80AF436DBD141C98D164486932FDEEB304FF63BF6 | sha512: 5FF0639EDDA9CB38ED4C5639B45A10E992B68C97CD5D90A07C2ED033B2E87D79ED7AE2C048726AC03E08743E61AB4FF101E254174ABB26869F7FCAB67E35DAFD
tools\System.Collections.Immutable.dll
md5: D8203AEDAABEAC1E606CD0E2AF397D01 | sha1: EEF943E4369166A039DEE90F2D81504613D49CA0 | sha256: 2F05A2C489C2D30A6CCA346D4CE184323D70EB4F5AFA6BED34D5800274444E57 | sha512: CE09543CBB799DB65C71EA9D050CEF99D702D9AF0CC4C7E346F97F616B091D0AB9A211197CAF7FD5A53AF1BA6CE913B2B121499D36CD43B499FD201376F4F3D6
tools\System.Threading.Tasks.Extensions.dll
md5: E1E9D7D46E5CD9525C5927DC98D9ECC7 | sha1: 2242627282F9E07E37B274EA36FAC2D3CD9C9110 | sha256: 4F81FFD0DC7204DB75AFC35EA4291769B07C440592F28894260EEA76626A23C6 | sha512: DA7AB8C0100E7D074F0E680B28D241940733860DFBDC5B8C78428B76E807F27E44D1C5EC95EE80C0B5098E8C5D5DA4D48BCE86800164F9734A05035220C3FF11
tools\System.Web.Http.dll
md5: 145EB749E3B061DAB3360B142690FFD6 | sha1: F0759599123B46212080FA42E84F23D2EA2D7B0A | sha256: FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02 | sha512: 3DEF8EC69FACD7BE6B0FE0082548DFC46D2853AF721E22014CF1A1C46F7C7D0CE4C32283EB8EA38763B924CEB0DAB1AA24EAD943F93455A59C7028B680A5730E
tools\VERIFICATION.md
# 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 __inventiv__ itself and contains `g.exe` tool.
It also contains several `.dll` libraries to serve `g.exe`. Among those
libraries, __Gazel__ and __Routine__ files are also developed and published
by __inventiv__, while the rest is 3rd party libraries.

## Verification instructions for 3rd party libraries

### Nuget Libraries

These libraries can be accessed through nuget. For each library in below
table;

1. Go to given url to download the `.nupkg` file
2. Unzip package contents to a folder
3. Browse to given path and locate `.dll` file
4. Use one of the following methods to obtain checksum;
   - Use powershell function 'Get-FileHash'
   - Use chocolatey utility 'checksum.exe'
5. Compare obtained checksum value to the provided value
   - ChecksumType is always `sha256`

|File|URL|Path|Checksum|
|-|-|-|-|
|Castle.Core.dll|[Castle.Core](https://www.nuget.org/packages/Castle.Core/4.4.0)|lib/net45|`9964A5C497DCAEA9BC047C719869A1C5483F9F383311A045D320148E0DF13A23`|
|Castle.Facilities.Logging.dll|[Castle.LoggingFacility](https://www.nuget.org/packages/Castle.LoggingFacility/5.0.1)|lib/net45|`489404721EF26F169D4D00E055D0ABF7B212ADE71A10391597162D1E42B39F3B`|
|Castle.Services.Logging.Log4netIntegration.dll|[Castle.Core-log4net](https://www.nuget.org/packages/Castle.Core-log4net/4.4.0)|lib/net45|`6D3FDA1178B44E156A8364FAAE649109C032BB9DD3572E1A5C170F3282B4BE69`|
|Castle.Windsor.dll|[Castle.Windsor](https://www.nuget.org/packages/Castle.Windsor/5.0.1)|lib/net45|`A0934C1690577A7E59C170CD82C1FB11B1D1879AE290A139D7661EA3302009A2`|
|CommandLine.dll|[CommandLineParser](https://www.nuget.org/packages/CommandLineParser/2.8.0)|lib/net461|`26AF31165DBF6AF3864609DF7834A06404E6CFBD8905BA202E0A0BB921326D57`|
|log4net.dll|[log4net](https://www.nuget.org/packages/log4net/2.0.8)|lib/net45-full|`AF5610C515D2244DB98C662636264C8177E89B1AFE407F88FD18A41D66F6E7E2`|
|Stubble.Core.dll|[Stubble.Core](https://www.nuget.org/packages/Stubble.Core/1.9.3)|lib/net45|`467AFBEC9D010D9CE66722D80AF436DBD141C98D164486932FDEEB304FF63BF6`|

### Extra .NET Libraries

These libraries are included because client might not have them even if
it has .NET framework installed. For each library in below table;

1. Use one of the following methods to obtain the checksum;
   - Use powershell function 'Get-FileHash'
   - Use chocolatey utility 'checksum.exe'
2. Compare obtained checksum value to the provided value
   - ChecksumType is always `sha256`

|File|Checksum|
|-|-|
|System.Collections.Immutable.dll|`2F05A2C489C2D30A6CCA346D4CE184323D70EB4F5AFA6BED34D5800274444E57`|
|System.Threading.Tasks.Extensions.dll|`18F733131E14E246D355EEB0F594A255CD07D5643B5A2975801669C52EB3850A`|
|System.Web.Http.dll|`FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02`|

## Verification instructions for developed binaries

These binaries are those developed by inventiv itself.

1. Go to url 'https://www.nuget.org/packages/Gazel.Cli' to download
   the `.nupkg` file.
2. Unzip package contents to a folder
3. For every binary in below table;
   1. Use one of the following methods to obtain the checksum for downloaded
      file;
      - Use powershell function 'Get-FileHash'
      - Use chocolatey utility 'checksum.exe'
   2. Obtain the checksum for the same file in the package
   3. Compare the two obtained checksum values
      - ChecksumType is always `sha256`

   |File|
   |-|
   |g.exe|
   |Gazel.Configuration.dll|
   |Gazel.dll|
   |Gazel.System.dll|
   |Routine.dll|

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
Gazel CLI 1.1.9 107 Wednesday, March 10, 2021 Approved

This package has no dependencies.

Discussion for the Gazel CLI Package

Ground Rules:

  • This discussion is only about Gazel CLI and the Gazel CLI 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 Gazel CLI, 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