我对嵌套的 PowerShell 模块有一个小问题。
Get-Module
正确识别ExportedCommands
,但ModuleType
被列为Script
,而不是Manifest
:
PS>get-module
ModuleType Name ExportedCommands
---------- ---- ----------------
Script Bar Get-Bar
Script Foo Get-Foo
目录结构:
|-Modules
|-Foobar
|-Foobar.psd1
|-Bar
|-Bar.psm1
|-Foo
|-Foo.psm1
Foobar.psd1:
...
# Script module or binary module file associated with this manifest
ModuleToProcess = ''
# Modules to import as nested modules of the module specified in ModuleToProcess
NestedModules = 'Foo\Foo.psm1', 'Bar\Bar.psm1'
...
我是否正确构建了 PSD1 文件?在我的情况下,我是否需要一个虚拟/空的 Foobar.psm1 文件(在 PSD1 文件中有相应的条目)?我需要嵌套的目录结构,还是可以只在父目录 (Foobar) 中包含两个 PSM1 文件(bar.psm1 和 foo.psm1)?