我正在尝试在此处设置 NuGet 提要,并且效果很好。我通过我的提要安装了一个模块
Install-Module -Name MyCmdlets -Repository $RepoName -Scope CurrentUser -Force
Import-Module -Name MyCmdlets
但是,当我运行 Get-Module 时,我没有得到任何功能并且它是一个清单?
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 1.0 MyCmdlets
如果我手动转到安装位置并手动导入
Import-Module <my-path>\1.0\MyCmdlets.psm1
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Script 0.0 MyCmdlets {Create-Project, Get-AuditLogs, Get-..
我的清单文件确实有这些行,所以我不明白为什么Import-Module
不能正常工作。
FunctionsToExport = '*'
CmdletsToExport = '*'