PSClock.psd1
# # 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 } } } |