Skip to content

Instantly share code, notes, and snippets.

@Jaykul
Jaykul / Test-Help.ps1
Created May 24, 2019 03:40
Just an example of authoring help with parameter help in-line
function Test-Help {
<#
.SYNOPSIS
Test the help
.EXAMPLE
Get-Help Test-Help
Shows the help for this function, which is all this function is good for
#>
[CmdletBinding()]
@Jaykul
Jaykul / About Versioning.md
Last active August 29, 2023 17:48
Versioning

Versioning Software

We need our software builds to label the software with a version number.

We want each build to produce a label that is unique enough that we can track a binary back to it's build and the commit it was based on.

We want to follow "Semantic Versioning" because our industry as a whole has decided it's useful.

We want the version number to be predictable, so that (as developers) we know what version of the software we're working on.