IntelliSearch.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
@{ RootModule = 'IntelliSearch.psm1' FormatsToProcess = 'IntelliSearch.format.ps1xml' ModuleVersion = '0.1.14' GUID = '63215824-78be-400c-aac2-8ace716af226' Author = 'Nils Kristian Brekke <nkb@intellisearch.com>' CompanyName = 'IntelliSearch Software AS' Copyright = '2018 Copyright IntelliSearch Software AS' Description = 'This module exports commands related to managing our search products' PowerShellVersion = '4.0' RequiredModules = @( @{ ModuleName = "powershell-yaml" ModuleVersion = "0.3.6" } ) FunctionsToExport = @('Get-ISComponent','Install-ISComponent','Invoke-ISNuGetCommand','New-ISInstance') AliasesToExport = @('') VariablesToExport = @('') PrivateData = @{ PSData = @{ Tags = @('IntelliSearch', 'search', 'tools') LicenseUri = '' ProjectUri = 'https://www.intellisearch.com/' IconUri = 'http://www.intellisearch.com/wp-content/uploads/2017/01/Logo-symbol-name-181x50.jpg' ReleaseNotes = @' '@ } } } |