PSShortcut.psd1
@{ RootModule = 'PSShortcut.psm1' ModuleVersion = '1.0.4' GUID = '897aef63-e0ad-4cdb-af43-c5cd60a40e9a' Author = 'Adam Bertram' CompanyName = 'Adam the Automator, LLC' Copyright = '(c) 2017 Adam Bertram. All rights reserved.' Description = 'This module eases working with Windows shortcuts (LNK and URL) files.' PowerShellVersion = '4.0' FunctionsToExport = 'Get-Shortcut','Set-Shortcut' CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('PSModule','Shortcuts') # A URL to the license for this module. # LicenseUri = '' # A URL to the main website for this project. ProjectUri = 'https://github.com/adbertram/PSShortcut' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module # ReleaseNotes = '' } # End of PSData hashtable } } |