IntelliSearch.psd1

@{
    RootModule        = 'IntelliSearch.psm1'
    FormatsToProcess  = 'IntelliSearch.format.ps1xml'
    ModuleVersion     = '0.1.2'
    GUID              = '63215824-78be-400c-aac2-8ace716af226'

    Author            = 'Nils Kristian Brekke <nkb@intellisearch.com>'
    CompanyName       = 'IntelliSearch'
    Copyright         = '2018 Copyright IntelliSearch'

    Description       = 'This module exports commands related to managing our search products'

    PowerShellVersion = '4.0'
    NestedModules     = @(
        "powershell-yaml"
    )

    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 = @'
'@

        }
    }
}