KovertKringle.psd1
@{ RootModule = 'KovertKringle.psm1' ModuleVersion = '0.0.1' GUID = 'f518b1c4-67ae-43b3-b759-239b17dd7cb9' Author = 'Joshua (Windos) King' CompanyName = 'king.geek.nz' Copyright = '(c) 2017 Joshua (Windos) King. All rights reserved.' Description = 'PowerShell module for organizing Secret Santa pairings.' PowerShellVersion = '3.0' FunctionsToExport = 'Add-KKParticipant', 'Clear-KKPairing', 'Clear-KKParticipant', 'Get-KKParticipant', 'Remove-KKParticipant', 'Send-KKNotification', 'Start-KKPairing' CmdletsToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('Christmas', 'SecretSanta') LicenseUri = 'https://github.com/Windos/powershell-depot/blob/master/LICENSE.md' ProjectUri = 'https://github.com/Windos/powershell-depot/tree/master/General/KovertKringle' # IconUri = '' ReleaseNotes = ' * 0.0.1 * Initial release ' } } } |