PSClock.psd1
# # Module manifest for module 'PSClock' @{ RootModule = 'PSClock.psm1' ModuleVersion = '1.1.0' CompatiblePSEditions = @('Desktop', 'Core') GUID = '668afa48-5176-4fd0-bd0f-e414155c6da3' Author = 'Jeff Hicks' CompanyName = 'JDH Information Technology Solutions, Inc.' Copyright = '2021-2022 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', 'WindowsBase', 'System.Drawing') FormatsToProcess = @('formats\psclock.format.ps1xml') FunctionsToExport = 'Start-PSClock', 'Set-PSClock', 'Get-PSClock', 'Stop-PSClock', 'Save-PSClock' VariablesToExport = 'PSClockSettings' AliasesToExport = 'psclock' PrivateData = @{ PSData = @{ Tags = @("clock", "wpf", "windows") 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 # External dependent modules of this module # ExternalModuleDependencies = @() } # End of PSData hashtable } # End of PrivateData hashtable } |