gpt4 book ai didi

function - 在模块中包含的函数中添加类型

转载 作者:行者123 更新时间:2023-12-02 22:11:02 24 4
gpt4 key购买 nike

我不确定为什么会失败,但如果我从函数添加类型,那么当我需要使用 *.dll api 时,无论出于何种原因,我的代码都会失败。

function Add-References
{
Add-Type -Path "C:\myDllPath.dll"
Add-Type -Path "C:\myDllPath2.dll"
}

我尝试使该函数成为全局函数,即点运算符...请记住,该函数包含在模块中并由脚本调用。我的目标是仅使用该函数来声明我的引用,而不是将这些路径复制粘贴到我的所有脚本中。

最佳答案

如果您包含收到的错误,将会有所帮助。

但我建议另一种选择:use the RequiredAssemblies key in your module manifest :

Specifies the assembly (.dll) files that the module requires. Enter the assembly file names. Windows PowerShell loads the specified assemblies before updating types or formats, importing nested modules, or importing the module file that is specified in the value of the RootModule key.

Use this parameter to list all the assemblies that the module requires. This includes assemblies that must be loaded to update any formatting or type files that are listed in the FormatsToProcess or TypesToProcess keys, even if those assemblies are also listed as binary modules in the NestedModules key.

关于function - 在模块中包含的函数中添加类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38246413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com