Private/Get-Copyright.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<# .COPYRIGHT Copyright (c) ECIT Solutions AS. All rights reserved. Licensed under the MIT license. See https://github.com/ecitsolutions/Autotask/blob/master/LICENSE.md for license information. #> Function Get-Copyright { <# .SYNOPSIS This function returns the copyright text for the module. .DESCRIPTION This function returns the copyright text for the module. .INPUTS Nothing. .OUTPUTS Text. .EXAMPLE Get-Copyright Returns the copyright text for the module. .NOTES NAME: Get-Copyright #> [CmdletBinding()] Param() Write-Debug ('{0}: Begin of function' -F $MyInvocation.MyCommand.Name) # Copyright text as here-string @" <# .COPYRIGHT Copyright (c) ECIT Solutions AS. All rights reserved. Licensed under the MIT license. See https://github.com/ecitsolutions/Autotask/blob/master/LICENSE.md for license information. #> "@ } |