Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.
| function Bump-Version | |
| { | |
| param([string]$part = $(throw "Part is a required parameter.")) | |
| $version = Get-AssemblyInfoVersion -Directory ..\Source -GlobalAssemblyInfo $true | |
| $bumpedVersion = Clone-Object -Object $version | |
| switch -wildcard ($part) | |
| { | |
| "ma*" { $bumpedVersion.Major = Bump-NumericVersion -Current $version.Major } |
Awesome PHP has been relocated permanently to its own Github repository. No further updates will made to this gist.
Please open an issue for any new suggestions.