dfinke / ImportExcel

PowerShell module to import/export Excel spreadsheets, without Excel

Home Page:https://www.powershellgallery.com/packages/ImportExcel/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Specify *ToExport in module manifest

powercode opened this issue · comments

Make sure

CmdletsToExport = @()
FunctionsToExport = @()
AliasesToExport = @()

all are specified in the module manifest. Having them empty or as '*' makes forces powershell to load the module when it tries to discover other commands.
This also allows us to not contaminate the global namespace with helper functions.