├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── DEVELOPMENT.md ├── Jenkinsfile ├── LICENSE.txt ├── README.md └── Source ├── .bumpyconfig ├── .editorconfig ├── Bumpy.Core.Tests ├── Bumpy.Core.Tests.csproj ├── BumpyVersionTests.cs ├── CommandTests.cs ├── Config │ ├── ConfigIOTests.cs │ └── ConfigProcessorTests.cs ├── FileInfoExtensionTests.cs ├── GlobTests.cs ├── Properties │ └── AssemblyInfo.cs ├── VersionFunctionsTests.cs ├── packages.config └── xunit.runner.json ├── Bumpy.Core ├── Bumpy.Core.csproj ├── BumpyArguments.cs ├── BumpyVersion.cs ├── Command.cs ├── Config │ ├── BumpyConfigEntry.cs │ ├── ConfigException.cs │ ├── ConfigIO.cs │ ├── ConfigProcessor.cs │ ├── LegacyConfigIO.cs │ └── Template.cs ├── FileContent.cs ├── FileInfoExtensions.cs ├── FileUtil.cs ├── Glob.cs ├── IFileUtil.cs ├── ValidationExtensions.cs └── VersionFunctions.cs ├── Bumpy.Tests ├── Bumpy.Tests.csproj ├── CommandParserTests.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── xunit.runner.json ├── Bumpy.ruleset ├── Bumpy.sln ├── Bumpy ├── App.config ├── Bumpy.csproj ├── CommandArguments.cs ├── CommandParser.cs ├── CommandRunner.cs ├── CommandType.cs ├── ParserException.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── NuSpec ├── Chocolatey │ ├── Bumpy.Portable.nuspec │ └── VERIFICATION.txt └── NuGet │ └── Bumpy.nuspec ├── artifact.cake ├── build.cake ├── build.ps1 ├── changelog.cake ├── github.cake └── tools └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/README.md -------------------------------------------------------------------------------- /Source/.bumpyconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/.bumpyconfig -------------------------------------------------------------------------------- /Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/.editorconfig -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/Bumpy.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/Bumpy.Core.Tests.csproj -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/BumpyVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/BumpyVersionTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/CommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/CommandTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/Config/ConfigIOTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/Config/ConfigIOTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/Config/ConfigProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/Config/ConfigProcessorTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/FileInfoExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/FileInfoExtensionTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/GlobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/GlobTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/VersionFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/VersionFunctionsTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/packages.config -------------------------------------------------------------------------------- /Source/Bumpy.Core.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core.Tests/xunit.runner.json -------------------------------------------------------------------------------- /Source/Bumpy.Core/Bumpy.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Bumpy.Core.csproj -------------------------------------------------------------------------------- /Source/Bumpy.Core/BumpyArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/BumpyArguments.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/BumpyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/BumpyVersion.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Command.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/BumpyConfigEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/BumpyConfigEntry.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/ConfigException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/ConfigException.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/ConfigIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/ConfigIO.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/ConfigProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/ConfigProcessor.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/LegacyConfigIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/LegacyConfigIO.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Config/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Config/Template.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/FileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/FileContent.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/FileInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/FileInfoExtensions.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/FileUtil.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/Glob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/Glob.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/IFileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/IFileUtil.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/ValidationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/ValidationExtensions.cs -------------------------------------------------------------------------------- /Source/Bumpy.Core/VersionFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Core/VersionFunctions.cs -------------------------------------------------------------------------------- /Source/Bumpy.Tests/Bumpy.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Tests/Bumpy.Tests.csproj -------------------------------------------------------------------------------- /Source/Bumpy.Tests/CommandParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Tests/CommandParserTests.cs -------------------------------------------------------------------------------- /Source/Bumpy.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Bumpy.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Tests/packages.config -------------------------------------------------------------------------------- /Source/Bumpy.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.Tests/xunit.runner.json -------------------------------------------------------------------------------- /Source/Bumpy.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.ruleset -------------------------------------------------------------------------------- /Source/Bumpy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy.sln -------------------------------------------------------------------------------- /Source/Bumpy/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/App.config -------------------------------------------------------------------------------- /Source/Bumpy/Bumpy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/Bumpy.csproj -------------------------------------------------------------------------------- /Source/Bumpy/CommandArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/CommandArguments.cs -------------------------------------------------------------------------------- /Source/Bumpy/CommandParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/CommandParser.cs -------------------------------------------------------------------------------- /Source/Bumpy/CommandRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/CommandRunner.cs -------------------------------------------------------------------------------- /Source/Bumpy/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/CommandType.cs -------------------------------------------------------------------------------- /Source/Bumpy/ParserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/ParserException.cs -------------------------------------------------------------------------------- /Source/Bumpy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/Program.cs -------------------------------------------------------------------------------- /Source/Bumpy/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Bumpy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/Bumpy/packages.config -------------------------------------------------------------------------------- /Source/NuSpec/Chocolatey/Bumpy.Portable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/NuSpec/Chocolatey/Bumpy.Portable.nuspec -------------------------------------------------------------------------------- /Source/NuSpec/Chocolatey/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/NuSpec/Chocolatey/VERIFICATION.txt -------------------------------------------------------------------------------- /Source/NuSpec/NuGet/Bumpy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/NuSpec/NuGet/Bumpy.nuspec -------------------------------------------------------------------------------- /Source/artifact.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/artifact.cake -------------------------------------------------------------------------------- /Source/build.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/build.cake -------------------------------------------------------------------------------- /Source/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/build.ps1 -------------------------------------------------------------------------------- /Source/changelog.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/changelog.cake -------------------------------------------------------------------------------- /Source/github.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/github.cake -------------------------------------------------------------------------------- /Source/tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwinkelbauer/Bumpy/HEAD/Source/tools/packages.config --------------------------------------------------------------------------------