-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
PSCalendar.psd1
47 lines (36 loc) · 1.94 KB
/
PSCalendar.psd1
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
36
37
38
39
40
41
42
43
44
45
46
# Module manifest for module 'PSCalendar'
@{
RootModule = 'PSCalendar.psm1'
ModuleVersion = '2.9.0'
CompatiblePSEditions = @("Desktop", "Core")
GUID = '222beda0-cdb5-464d-bf49-7ab701da86c9'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2018-2022 JDH Information Technology Solutions, Inc. All rights reserved.'
Description = 'A PowerShell module to display a calendar in the console.'
PowerShellVersion = '5.1'
RequiredModules = @("ThreadJob")
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
FormatsToProcess = @('formats\pscalendarconfiguration.format.ps1xml')
FunctionsToExport = if ($PSEdition -eq 'Desktop') {
"Get-Calendar", "Show-Calendar", "Get-NCalendar", "Show-GuiCalendar", "Show-PSCalendarHelp",
"Get-PSCalendarConfiguration", "Set-PSCalendarConfiguration","Get-MonthName"
}
else {
"Get-Calendar", "Show-Calendar", "Get-NCalendar", "Show-PSCalendarHelp",
"Get-PSCalendarConfiguration", "Set-PSCalendarConfiguration","Get-MonthName"
}
VariablesToExport = @()
AliasesToExport = @('ncal', 'cal', 'gcal', 'scal')
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
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
}