Fitnesse Slim runner 无法加载 .net 5 程序集:从文件中提取清单导入时出错 (hr = 0x80131018)
Fitnesse Slim runner cannot load .net 5 assembly: Error extracting manifest import from file (hr = 0x80131018)
运行 Fitnesse 中的测试给出:
Could not complete testing: fitnesse.slim.SlimError: Error SLiM server
died before Header Message could be read.
使用 Slim RunnerW.exe 调试我的测试时出现异常:
System.BadImageFormatException
: Could not load file or assembly
'file:///c:\path\assemby.exe' or one of its dependencies. The module
was expected to contain an assembly manifest.
我使用 ProcessExplorer 检查,RunnerW.exe 在 64 位模式下是 运行。我的代码是用“Any CPU”编译的,与另一个工作项目的唯一区别是它是一个使用 FitSharp 2.8.2.1 NuGet 包的 .net 5(核心)项目。
启用 FusionLog 后很明显它无法加载我的主要测试程序集。这是日志的一部分:
LOG: This bind starts in LoadFrom load context.
WRN: Native image will not be probed in LoadFrom context. Native image will only be probed in default load context, like with Assembly.Load().
LOG: No application configuration file found.
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Attempting download of new URL file:///C:/path/assembly.exe.
LOG: Assembly download was successful. Attempting setup of file: C:\path\assembly.exe
LOG: Entering run-from-source setup phase.
ERR: Error extracting manifest import from file (hr = 0x80131018).
ERR: Run-from-source setup phase failed with hr = 0x80131018.
ERR: Failed to complete setup of assembly (hr = 0x80131018). Probing terminated.
我认为它正在尝试将 .Net 5 程序集加载到 .Net 4 进程中?
有什么解决办法吗?我想添加一个 app.config 文件并指定一个运行时,但我不确定,它可能只是一个兔子洞,因为我们似乎需要在这里混合框架?
有些事情终于让我振作起来 运行:
1:不引用可执行文件(以.exe
结尾的文件)而是引用.dll
。无论如何编译,尝试将 .exe 文件作为程序集加载总是会抛出 System.BadImageFormatException
.
2:从 NuGet 包中获取 Runner.exe
和 RunnerW.exe
(及其依赖项)的 .Net Core 版本,并使用它们代替旧的 SLIM .Net 运行程序(如果您是迁移)。 FusionLog
对 .Net Core 完全不做任何事情,所以如果有任何日志记录在进行,那么您就知道该进程不是 运行 .Net Core。
3:如果您从 GitHub 获得 FitSharp 项目并且链接到项目而不是使用 NuGet,则删除 post 构建操作以复制文件。而是转到您的测试项目 Dependencies
-> Projects
-> fit
打开属性 (F4) 并设置选项 Reference Output Assembly
、Copy Local
和 Copy Local Sattelite Assemblies
是的。对 FitSharp 和 Runner 项目执行相同的操作。
运行 Fitnesse 中的测试给出:
Could not complete testing: fitnesse.slim.SlimError: Error SLiM server died before Header Message could be read.
使用 Slim RunnerW.exe 调试我的测试时出现异常:
System.BadImageFormatException
: Could not load file or assembly 'file:///c:\path\assemby.exe' or one of its dependencies. The module was expected to contain an assembly manifest.
我使用 ProcessExplorer 检查,RunnerW.exe 在 64 位模式下是 运行。我的代码是用“Any CPU”编译的,与另一个工作项目的唯一区别是它是一个使用 FitSharp 2.8.2.1 NuGet 包的 .net 5(核心)项目。
启用 FusionLog 后很明显它无法加载我的主要测试程序集。这是日志的一部分:
LOG: This bind starts in LoadFrom load context.
WRN: Native image will not be probed in LoadFrom context. Native image will only be probed in default load context, like with Assembly.Load().
LOG: No application configuration file found.
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Attempting download of new URL file:///C:/path/assembly.exe.
LOG: Assembly download was successful. Attempting setup of file: C:\path\assembly.exe
LOG: Entering run-from-source setup phase.
ERR: Error extracting manifest import from file (hr = 0x80131018).
ERR: Run-from-source setup phase failed with hr = 0x80131018.
ERR: Failed to complete setup of assembly (hr = 0x80131018). Probing terminated.
我认为它正在尝试将 .Net 5 程序集加载到 .Net 4 进程中?
有什么解决办法吗?我想添加一个 app.config 文件并指定一个运行时,但我不确定,它可能只是一个兔子洞,因为我们似乎需要在这里混合框架?
有些事情终于让我振作起来 运行:
1:不引用可执行文件(以.exe
结尾的文件)而是引用.dll
。无论如何编译,尝试将 .exe 文件作为程序集加载总是会抛出 System.BadImageFormatException
.
2:从 NuGet 包中获取 Runner.exe
和 RunnerW.exe
(及其依赖项)的 .Net Core 版本,并使用它们代替旧的 SLIM .Net 运行程序(如果您是迁移)。 FusionLog
对 .Net Core 完全不做任何事情,所以如果有任何日志记录在进行,那么您就知道该进程不是 运行 .Net Core。
3:如果您从 GitHub 获得 FitSharp 项目并且链接到项目而不是使用 NuGet,则删除 post 构建操作以复制文件。而是转到您的测试项目 Dependencies
-> Projects
-> fit
打开属性 (F4) 并设置选项 Reference Output Assembly
、Copy Local
和 Copy Local Sattelite Assemblies
是的。对 FitSharp 和 Runner 项目执行相同的操作。