PSCalendar.psd1
# Module manifest for module 'PSCalendar' @{ RootModule = 'PSCalendar.psm1' ModuleVersion = '2.10.1' CompatiblePSEditions = @('Desktop', 'Core') GUID = '222beda0-cdb5-464d-bf49-7ab701da86c9' Author = 'Jeff Hicks' CompanyName = 'JDH Information Technology Solutions, Inc.' Copyright = '(c) 2018-2025 JDH Information Technology Solutions, Inc. All rights reserved.' Description = 'A PowerShell module to display a calendar in the console.' PowerShellVersion = '5.1' RequiredModules = @('Microsoft.PowerShell.ThreadJob') # Type files (.ps1xml) to be loaded when importing this module # TypesToProcess = @() FormatsToProcess = @('formats\pscalendarconfiguration.format.ps1xml') FunctionsToExport = @( 'Get-Calendar', 'Show-Calendar', 'Get-NCalendar', 'Show-GuiCalendar', 'Show-PSCalendarHelp', 'Get-PSCalendarConfiguration', 'Set-PSCalendarConfiguration', 'Get-MonthName', 'Export-PSCalendarConfiguration' ) VariablesToExport = @() AliasesToExport = @('ncal', 'cal', 'gcal', 'scal','mon','Save-PSCalendarConfiguration') PrivateData = @{ PSData = @{ Tags = @('calendar', 'reminder', 'wpf', 'ncal') LicenseUri = 'https://github.com/jdhitsolutions/PSCalendar/blob/master/license.txt' ProjectUri = 'https://github.com/jdhitsolutions/PSCalendar' # IconUri = '' ReleaseNotes = 'https://github.com/jdhitsolutions/PSCalendar/blob/master/README.md' } # End of PSData hashtable } # End of PrivateData hashtable } |