gpt4 book ai didi

c# - Powershell 加载自定义程序集配置文件

转载 作者:太空宇宙 更新时间:2023-11-03 12:28:31 26 4
gpt4 key购买 nike

我有一个 DLL 文件,是在 visual studio 中用我的 c# 代码创建的。我需要从 powershell 运行我的代码,因此我使用 Add-Type 方法加载我的程序集。

我的 Powershell 代码: 添加类型 -Path C:\MyDirectoryWithDllFiles\MyAssembly.dll
[MyAssembly.MyClass]::MyStaticMethod()

当我在 MyStaticMethod 中返回“Hello World”时,一切正常。

当然,我的程序需要一些功能并且需要一个配置文件。我将我的 powershell 代码更新为:

[appdomain]::CurrentDomain.SetData("APP_CONFIG_FILE", "C:\MyDirectoryWithDllFiles\MyAssembly.dll.config")
Add-Type -AssemblyName System.Configuration
Add-Type -Path C:\MyDirectoryWithDllFiles\MyAssembly.dll
[MyAssembly.MyClass]::MyStaticMethod()

使用以下配置文件:(MyAssembly.dll.config)

<?xml version="1.0"?>
<configuration>
<configSections>
<section name="myCustomSection" type="MyAssembly.MyCustomConfigurationSetting, MyAssembly" />
</configSections>

<!--this is the custom config section for myCustomSection-->
<myCustomSection>
<!-- some items -->
</myCustomSection>
</configuration>

在 MyStaticMethod 中,我从我的配置文件中获取项目,当我从 visual studio 运行代码时它工作正常。如上所述,当我运行 powershell 代码时,出现以下错误:

PS C:\MyDirectoryWithDllFiles> [MyAssembly.MyClass]::MyStaticMethod() Errors: [System.Configuration.ConfigurationErrorsException: An error occurred creating the configuration section handler for myCustomSection: Could not load file or assembly 'MyAssembly' or one of its dependencies. The system cannot find the file specified. (C:\Users\MyUserName\AppData\Local\Temp\tmp2EB6.tmp line 4) ---> System.IO.FileNotFoundException: Could not load file or assembly 'MyAssembly' or one of its dependencies. The system cannot find the file specified. at System.Configuration.TypeUtil.GetTypeWithReflectionPermission(IInternalConfigHost host, String typeString, Boolean throwOnError)

它试图找到“MyAssembly”,正如我在配置文件中定义的那样。 MyAssembly.dll 是我创建的一个 dll。但即使我的 powershell 中有这一行,它也不起作用:添加类型 -Path C:\MyDirectoryWithDllFiles\MyAssembly.dll

有什么建议可以使它正常工作吗?

最佳答案

解决方案:

感谢 JayKul 在 https://stackoverflow.com/a/23569983/1408786 的回答

我将它添加到配置部分,现在它工作正常:Version=1.0.0.0,Culture=neutral,PublicKeyToken=null

<section name="myCustomSection" type="MyAssembly.MyCustomConfigurationSetting, MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />

关于c# - Powershell 加载自定义程序集配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43675764/

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