-
Notifications
You must be signed in to change notification settings - Fork 2
/
PSClock.psd1
39 lines (37 loc) · 1.79 KB
/
PSClock.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
#
# Module manifest for module 'PSClock'
@{
RootModule = 'PSClock.psm1'
ModuleVersion = '1.4.0'
CompatiblePSEditions = @('Desktop', 'Core')
GUID = '668afa48-5176-4fd0-bd0f-e414155c6da3'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '2021-2024 JDH Information Technology Solutions, Inc.'
Description = 'A set of PowerShell commands for creating and managing a WPF-based clock that runs on your Windows desktop.'
PowerShellVersion = '5.1'
RequiredModules = @('ThreadJob')
RequiredAssemblies = @('PresentationFramework', 'PresentationCore', 'System.Drawing')
FormatsToProcess = @('formats\psclock.format.ps1xml')
FunctionsToExport = @(
'Start-PSClock',
'Set-PSClock',
'Get-PSClock',
'Stop-PSClock',
'Save-PSClock',
'Show-FontPreview',
'Show-PSClockSettingPreview',
'Get-PrimaryDisplaySize'
)
VariablesToExport = 'PSClockSettings'
AliasesToExport = @('psclock','gpc','spc')
PrivateData = @{
PSData = @{
Tags = @("clock", "wpf", "windows","time")
LicenseUri = 'https://github.com/jdhitsolutions/PSClock/blob/main/LICENSE.txt'
ProjectUri = 'https://github.com/jdhitsolutions/PSClock'
IconUri = 'https://raw.githubusercontent.com/jdhitsolutions/PSClock/master/images/psclock.png'
RequireLicenseAcceptance = $false
}
}
}