Regex-Finder.psd1
@{ # Script module or binary module file associated with this manifest RootModule = 'Regex-Finder.psm1' # Version number of this module. ModuleVersion = '1.0.2' # ID used to uniquely identify this module GUID = 'd290f1ee-6c54-4b01-90e6-d701748f0851' # Author of this module Author = 'kalichuza' # Company or vendor of this module CompanyName = 'kalichuza' # Description of the functionality provided by this module Description = 'This module recursively searches for files or folders by name using a regex pattern, with advanced search options and logging features.' # PowerShell version the module is compatible with PowerShellVersion = '5.1' # Minimum version of the Windows PowerShell engine required by this module PowerShellHostVersion = '5.1' # Modules that must be imported into the global environment prior to importing this module RequiredModules = @() # Functions to export from this module FunctionsToExport = @('Find-Regex') # Cmdlets to export from this module CmdletsToExport = @() # Variables to export from this module VariablesToExport = @() # Aliases to export from this module AliasesToExport = @() # Private data to pass to the module specified in RootModule PrivateData = @{} # Help info URI HelpInfoURI = 'https://github.com/kalichuza/Regex-Finder' # Compatible Editions CompatiblePSEditions = @('Desktop', 'Core') } |