├── .github └── workflows │ └── label-sync.yml ├── .gitignore ├── .teamcity └── settings.kts ├── .templates ├── contributors │ ├── contributor-details.sbn │ ├── contributors.sbn │ ├── create │ │ └── footer.sbn │ ├── index.sbn │ ├── issue-details.sbn │ ├── issue-note.sbn │ ├── issues.sbn │ ├── milestone.sbn │ └── release-info.sbn ├── default │ ├── create │ │ └── footer.sbn │ ├── index.sbn │ ├── issue-details.sbn │ ├── issue-note.sbn │ ├── issues.sbn │ ├── milestone.sbn │ └── release-info.sbn └── no │ └── issues │ ├── create │ └── footer.sbn │ ├── index.sbn │ ├── issues.sbn │ ├── milestone.sbn │ └── release-info.sbn ├── CREDITS.md ├── GitReleaseManager.yaml ├── LICENSE ├── README.md ├── cake.config ├── chocolatey.snk ├── nuspec └── chocolatey │ ├── checksum.nuspec │ └── legal │ └── VERIFICATION.txt ├── recipe.cake ├── src ├── checksum.sln └── checksum │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StringExtensions.cs │ ├── checksum.csproj │ └── infrastructure │ ├── commandline │ └── Options.cs │ └── configuration │ └── ConfigurationSettings.cs └── tools └── packages.config /.github/workflows/label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.github/workflows/label-sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.gitignore -------------------------------------------------------------------------------- /.teamcity/settings.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.teamcity/settings.kts -------------------------------------------------------------------------------- /.templates/contributors/contributor-details.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/contributor-details.sbn -------------------------------------------------------------------------------- /.templates/contributors/contributors.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/contributors.sbn -------------------------------------------------------------------------------- /.templates/contributors/create/footer.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/create/footer.sbn -------------------------------------------------------------------------------- /.templates/contributors/index.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/index.sbn -------------------------------------------------------------------------------- /.templates/contributors/issue-details.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/issue-details.sbn -------------------------------------------------------------------------------- /.templates/contributors/issue-note.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/issue-note.sbn -------------------------------------------------------------------------------- /.templates/contributors/issues.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/issues.sbn -------------------------------------------------------------------------------- /.templates/contributors/milestone.sbn: -------------------------------------------------------------------------------- 1 | 2 | {{ milestone.target.description }} 3 | -------------------------------------------------------------------------------- /.templates/contributors/release-info.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/contributors/release-info.sbn -------------------------------------------------------------------------------- /.templates/default/create/footer.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/create/footer.sbn -------------------------------------------------------------------------------- /.templates/default/index.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/index.sbn -------------------------------------------------------------------------------- /.templates/default/issue-details.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/issue-details.sbn -------------------------------------------------------------------------------- /.templates/default/issue-note.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/issue-note.sbn -------------------------------------------------------------------------------- /.templates/default/issues.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/issues.sbn -------------------------------------------------------------------------------- /.templates/default/milestone.sbn: -------------------------------------------------------------------------------- 1 | 2 | {{ milestone.target.description }} 3 | -------------------------------------------------------------------------------- /.templates/default/release-info.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/default/release-info.sbn -------------------------------------------------------------------------------- /.templates/no/issues/create/footer.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/no/issues/create/footer.sbn -------------------------------------------------------------------------------- /.templates/no/issues/index.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/no/issues/index.sbn -------------------------------------------------------------------------------- /.templates/no/issues/issues.sbn: -------------------------------------------------------------------------------- 1 | 2 | This release had no issues associated with it. 3 | -------------------------------------------------------------------------------- /.templates/no/issues/milestone.sbn: -------------------------------------------------------------------------------- 1 | 2 | {{ milestone.target.description }} 3 | -------------------------------------------------------------------------------- /.templates/no/issues/release-info.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/.templates/no/issues/release-info.sbn -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/CREDITS.md -------------------------------------------------------------------------------- /GitReleaseManager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/GitReleaseManager.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/README.md -------------------------------------------------------------------------------- /cake.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/cake.config -------------------------------------------------------------------------------- /chocolatey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/chocolatey.snk -------------------------------------------------------------------------------- /nuspec/chocolatey/checksum.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/nuspec/chocolatey/checksum.nuspec -------------------------------------------------------------------------------- /nuspec/chocolatey/legal/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/nuspec/chocolatey/legal/VERIFICATION.txt -------------------------------------------------------------------------------- /recipe.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/recipe.cake -------------------------------------------------------------------------------- /src/checksum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum.sln -------------------------------------------------------------------------------- /src/checksum/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/Program.cs -------------------------------------------------------------------------------- /src/checksum/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/checksum/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/StringExtensions.cs -------------------------------------------------------------------------------- /src/checksum/checksum.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/checksum.csproj -------------------------------------------------------------------------------- /src/checksum/infrastructure/commandline/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/infrastructure/commandline/Options.cs -------------------------------------------------------------------------------- /src/checksum/infrastructure/configuration/ConfigurationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/src/checksum/infrastructure/configuration/ConfigurationSettings.cs -------------------------------------------------------------------------------- /tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/checksum/HEAD/tools/packages.config --------------------------------------------------------------------------------