未找到自定义 Powershell 嵌套类
我有 3 个带有自定义 PS 类的文件。
NestedClass.psm1
ChildClass.psm1
ParentClass.psm1
在 ParentClass 中我有以下代码: 使用模块“.\ChildClass.psm1”
我可以看到ChildClass中的类。
在 ChildClass 中我有以下代码: 使用模块“.\NestedClass.psm1”
我可以从ChildClass内部看到NestedClass内部有什么。 问题是我无法从父类文件中看到任何嵌套类。
我尝试了很多方法,包括我定义的清单文件: RequiredModules = @('NestedClass.psd1')
和 ScriptsToProcess = @('NestedClass.ps1')
和 NestedModules = @('NestedClass.psd1')
无论我做什么,我似乎都无法在父类文件中看到嵌套类。
我做错了什么?
I've got 3 files with custom PS classes.
NestedClass.psm1
ChildClass.psm1
ParentClass.psm1
Inside ParentClass I've got the following code:using Module ".\ChildClass.psm1"
And I can see the classes inside ChildClass.
Inside ChildClass I've got the following code:using Module ".\NestedClass.psm1"
And I can see what's inside NestedClass from inside ChildClass.
The problem is I can't see any Nested classes from the Parent class file.
I've tried a number of things including manifest files where I define:RequiredModules = @('NestedClass.psd1')
andScriptsToProcess = @('NestedClass.ps1')
andNestedModules = @('NestedClass.psd1')
No matter what I do I can't seem to get the nested classes to be seen in the parent class file.
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论