scour.psd1
# # Module manifest for module 'scour' # @{ # Version number of this module. ModuleVersion = '1.1' # ID used to uniquely identify this module GUID = '00340957-854d-4183-914d-cdb766b7892b' Author = "Lee Holmes" # Description of the functionality provided by this module Description = 'Module for indexed searching of large text corpuses' RequiredAssemblies = 'lucene\Lucene.Net.dll','lucene\Lucene.Net.Analysis.Common.dll','lucene\System.Collections.Immutable.dll' RootModule = "scour.psm1" FunctionsToExport = "Initialize-ScourIndex", "Search-ScourContent" # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. PrivateData = @{ PSData = @{ # A URL to the main website for this project. ProjectUri = 'https://www.leeholmes.com/blog/2018/08/28/scour-fast-personal-local-content-searches/' } # End of PSData hashtable } # End of PrivateData hashtable } |