我有两个项目 - 包含 Specflow 功能的“功能”和包含 Specflow 步骤定义的“步骤”。我在“功能”项目 app.config 中有以下设置
<specFlow>
<!-- For additional details on SpecFlow configuration options see https://github.com/techtalk/SpecFlow/wiki/Configuration -->
<stepAssemblies>
<stepAssembly assembly="Steps" />
</stepAssemblies></specFlow>
但是当我尝试调试我的功能文件时出现此错误:无法加载文件或程序集“步骤”或其依赖项之一。该系统找不到指定的文件。
我错过了什么?不能在两个单独的程序集中指定功能和步骤吗?谢谢。