PSCompletion.psd1

@{

# Script module or binary module file associated with this manifest.
RootModule = 'PSCompletion.psm1'

# Version number of this module.
ModuleVersion = '1.0'

# ID used to uniquely identify this module
GUID = 'cb172d4b-9329-4065-9d25-b85583a7bc91'

# Author of this module
Author = 'Viktor Sotov'

# Copyright statement for this module
Copyright = '(c) 2017. All rights reserved.'

# Description of the functionality provided by this module
Description = 'PSCompletion helps extend tab completion and Intellisense feature of PowerShell >= v5. Allows easy creation of custom completers. Heavily inspired by TabExpansionPlusPlus.'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.0'

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
CLRVersion = '4.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-CommandTree', 'Get-CommandTreeCompletion')

# 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 = @()

# 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 = @('nct')
}