NoUselessTech.PowerShellHelpers.psd1
# Module manifest for module 'PowerShellHelpers' # # Generated by: nouselesstech # # Generated on: 04/17/2024 # @{ # Script module or binary module file associated with this manifest. RootModule = 'NoUselessTech.PowerShellHelpers.psm1' # Version number of this module. ModuleVersion = '0.0.9' # Supported PSEditions # CompatiblePSEditions = @() # ID used to uniquely identify this module GUID = '7fe26259-140d-4da4-be4f-060e146de935' # Author of this module Author = 'nouselesstech' # Company or vendor of this module CompanyName = 'No Useless Tech, LLC' # Copyright statement for this module Copyright = '(c) No Useless Tech, LLC. All rights reserved.' # Description of the functionality provided by this module Description = 'A collection of PowerShellHelpers for various tasks.' # Minimum version of the PowerShell engine required by this module PowerShellVersion = '7.0' # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. FunctionsToExport = @('New-Password', 'New-TeamsChannelCard', 'Add-Signature', 'New-Log') # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = '*' # Variables to export from this module VariablesToExport = '*' # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. AliasesToExport = @() PrivateData = @{ PSData = @{ # Tags applied to this module. These help with module discovery in online galleries. Tags = @('misc', 'helpers') # A URL to the license for this module. LicenseUri = 'https://github.com/NoUselessTech/PowerShellHelpers/LICENSE' # A URL to the main website for this project. ProjectUri = 'https://github.com/NoUselessTech/PowerShellHelpers' } # End of PSData hashtable } # End of PrivateData hashtable } |